/* ==========================================
   リセット & ベーススタイル
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2A4E7D;
    --accent-color: #4A90E2;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --info-color: #3498DB;
    --bg-color: #F8FAFC;
    --bg-light: #FFFFFF;
    --bg-dark: #1E293B;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-light: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #2A4E7D 0%, #4A90E2 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--bg-color);
    overflow-x: hidden;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   背景装飾 (AI Network & Abstract Shapes)
   ========================================== */
/* ==========================================
   背景装飾 (AI Network & Abstract Shapes)
   ========================================== */
.bg-decoration {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ==========================================
   背景装飾 (Digital Office Environment)
   ========================================== */
.bg-decoration {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Network Grid Pattern (Dots & Lines) & Digital Office Frame */
/* .bg-network removed (merged with section below) */

/* Brand Color Tint Overlay for the Background */
.bg-network::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    mix-blend-mode: overlay;
    opacity: 0.6;
}

/* Tech Grid Overlay (Subtle) */
.bg-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(rgba(42, 78, 125, 0.15) 1.5px, transparent 1.5px),
        linear-gradient(rgba(42, 78, 125, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 78, 125, 0.05) 1px, transparent 1px);
    background-size: 30px 30px, 100px 100px, 100px 100px;
    z-index: 1;
}

/* Floating Nodes (AI Connection) - Enhanced */
.bg-node {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        0 0 10px var(--accent-color),
        0 0 20px var(--accent-color),
        0 0 40px var(--primary-color);
    opacity: 0;
    animation: floatNode 15s infinite ease-in-out;
}

.bg-node-1 {
    width: 4px;
    height: 4px;
    top: 15%;
    left: 10%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.bg-node-2 {
    width: 6px;
    height: 6px;
    top: 45%;
    right: 15%;
    animation-duration: 22s;
    animation-delay: -5s;
}

.bg-node-3 {
    width: 3px;
    height: 3px;
    bottom: 20%;
    left: 25%;
    animation-duration: 15s;
    animation-delay: -8s;
}

/* Additional Nodes for denser network */
.bg-node-4 {
    width: 5px;
    height: 5px;
    top: 70%;
    right: 30%;
    animation-duration: 25s;
    animation-delay: -12s;
}

.bg-node-5 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 60%;
    animation-duration: 20s;
    animation-delay: -3s;
}

@keyframes floatNode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    50% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.6;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
}

/* Connection Lines (Story Flow) */
.connection-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.connection-path {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 2;
    stroke-opacity: 0.3;
    filter: drop-shadow(0 0 5px var(--accent-color));
}

.connection-node {
    fill: #fff;
    stroke: var(--primary-color);
    stroke-width: 3;
    r: 6;
    filter: drop-shadow(0 0 10px var(--accent-color));
}

/* Background image fix */
.bg-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Cyber Office Image */
    background-image: url('edit_folder/images/cyber_office_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Vignette Mask */
    mask-image: radial-gradient(ellipse at center, transparent 30%, black 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, transparent 30%, black 100%);

    opacity: 0.5;
    /* Increased opacity for visibility */
    filter: saturate(0.8) brightness(1.2);
    /* Removed blur for clarity */
}

/* Existing Abstract Shapes (Refined) */
.bg-circle-1 {
    top: -10%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
}

.bg-circle-2 {
    bottom: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 78, 125, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
}

/* Glowing Pulse Animation (Breathing) */
@keyframes breathingGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 15px 0 rgba(74, 144, 226, 0.4);
        border-color: rgba(74, 144, 226, 0.6);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
}

.glow-effect {
    animation: breathingGlow 3s infinite ease-in-out;
}

/* ==========================================
   ボタンスタイル
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

/* Button Shine Effect */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: none;
}

.btn:hover::after {
    animation: shine 1s;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(42, 78, 125, 0.3);
    /* Breathing Glow for Primary Buttons */
    animation: breathingGlow 4s infinite ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 78, 125, 0.5);
    filter: brightness(1.1);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 8px 15px rgba(42, 78, 125, 0.2);
}

.btn-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-light:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================
   ヘッダー
   ========================================== */
.header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 32px;
}

.nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
    margin-right: 32px;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

/* ==========================================
   メインビジュアル (Asymmetric & Floating)
   ========================================== */
.hero {
    padding: 60px 0 40px;
    position: relative;
    overflow: visible;
    /* Allow image to break out */
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    padding-top: 50px;
}

.hero-title {
    font-size: 42px;
    /* Reduced from 56px to fit single line */
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(42, 78, 125, 0.1);
    white-space: nowrap;
    /* Force single line */
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 32px;
        white-space: normal;
        /* Allow wrapping on smaller screens */
    }
}

.hero-title-emphasis {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-job-title {
    font-size: 24px;
    display: block;
    margin-top: 5px;
    margin-bottom: -40px;
    font-weight: 700;
}

.hero-aica-highlight {
    font-size: 1.5em;
    font-weight: 900;
    display: inline-block;
    margin-top: 0px;
    /* Ensure it behaves nicely line-height wise */
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-subtitle-emphasis {
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-highlight {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2em;
    background: linear-gradient(transparent 60%, rgba(74, 144, 226, 0.2) 60%);
}

/* Character Crop Logic - The Simulation */
/* Character Display - Full & Transparent */
.character-crop {
    width: 100%;
    max-width: 380px;
    position: relative;
    /* Check cropping removed */
    overflow: visible;
    /* Allow full display */
    border-radius: 0;
    /* Removed box shape */
    box-shadow: none;
    /* Removed shadow box */
    margin: 0 auto;
    background: transparent;
    /* Transparent background */
}

.character-crop img {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: contain;
    transition: transform 0.5s ease;
    /* Resetting previous zoom/crop styles */
    top: auto;
    left: auto;
    transform: none;
}

/* Specific class resets if any remain */
.character-crop.posing img,
.character-crop.official img {
    top: auto;
    left: auto;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    /* Revert to gradient but keep it subtle */
    background: var(--gradient-primary);
    border-radius: 40px;
    opacity: 0.1;
    z-index: -1;
    transform: rotate(3deg);
}

/* ==========================================
   セクション共通
   ========================================== */
/* ==========================================
   セクション共通 (Glassmorphism Environment)
   ========================================== */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Panel for Content */
section .container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Exceptions for full-width or special sections */
.hero .container {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
    padding: 0 24px;
}

/* .section-label removed */

.section-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* ==========================================
   企業ロゴ
   ========================================== */
.logos-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logos-grid:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item img {
    max-height: 30px;
}

/* ==========================================
   課題提起 (Card Grid Layout)
   ========================================== */
.issues-section {
    background: transparent;
    padding: 80px 0;
}

.issues-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.issue-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    /* Allow height to fit content, or keep 100% if flex stretch is desired but height usually handled by flex items stretch default */
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex: 0 1 100%;
    /* Mobile: full width or flexible */
    max-width: 450px;
    /* Max card width */
    margin: 0 auto;
    /* Center single items if needed */
}

@media (min-width: 960px) {
    .issue-card {
        flex: 0 0 calc((100% - 64px) / 3);
        /* 64px = 32px gap * 2 */
        max-width: none;
        margin: 0;
    }
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.issue-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f0f4f8;
}

.issue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.issue-card:hover .issue-image {
    transform: scale(1.05);
}

.issue-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.issue-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.issue-label {
    font-size: 12px;
    font-weight: 900;
    color: var(--accent-color);
    background: rgba(74, 144, 226, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.issue-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    line-height: 1.4;
}

.issue-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: auto;
    /* Push to bottom if needed, or just fill */
}

/* Color Accents based on data */
.issue-card.color-green .issue-label {
    color: var(--success-color);
    background: rgba(39, 174, 96, 0.1);
}

.issue-card.color-blue .issue-label {
    color: var(--accent-color);
    background: rgba(74, 144, 226, 0.1);
}

.issue-card.color-orange .issue-label {
    color: var(--warning-color);
    background: rgba(243, 156, 18, 0.1);
}


/* ==========================================
   ソリューション (Full Width)
   ========================================== */
.solution-section {
    position: relative;
    padding: 120px 0;
    color: var(--text-primary);
    overflow: hidden;
}

.solution-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F0F4F8;
    transform: skewY(-3deg);
    z-index: 1;
}

.solution-section .container {
    position: relative;
    z-index: 2;
}

.solution-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.solution-media {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 10px;
}

.solution-media img,
.solution-video {
    border-radius: 16px;
    width: 100%;
}

.solution-text {
    text-align: left;
}

.solution-description {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 40px;
}

.solution-description .highlight {
    background: linear-gradient(120deg, rgba(74, 144, 226, 0.2) 0%, rgba(74, 144, 226, 0) 100%);
    padding: 0 4px;
    color: var(--primary-color);
}

/* ==========================================
   導入効果 (Cards)
   ========================================== */
.function-intro-section {
    background: transparent;
}

.function-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.function-intro-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.function-intro-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.5;
    pointer-events: none;
}

.function-intro-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 78, 125, 0.15);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(74, 144, 226, 0.3);
    /* Breathing Glow on Hover */
    animation: breathingGlow 3s infinite ease-in-out;
}

.function-intro-key-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
    line-height: 1;
}

.function-intro-item-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.function-intro-image {
    margin-top: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* ==========================================

/* Add a subtle "window" effect border */
.ai-agent-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    box-shadow: inset 0 0 50px rgba(42, 78, 125, 0.1);
    pointer-events: none;
    z-index: 1;
}

.ai-agent-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 0;
    margin-left: -40px;
    /* Shift image to left */
}

.ai-agent-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    /* Blend with background */
    mix-blend-mode: multiply;
}

.ai-agent-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Mobile responsive */
@media (max-width: 960px) {
    .ai-agent-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.ai-agent-content h2 {
    font-size: 32px;
    /* Reduced for single line fit */
    font-weight: 900;
    margin-bottom: 12px;
    /* Close to description */
}

.ai-agent-content p {
    margin-bottom: 40px;
    /* Far from CTA */
}

/* ==========================================
   選ばれる理由
   ========================================== */
.reasons-section {
    background: transparent;
    /* Changed from primary-color to transparent to fit new theme */
    color: var(--text-primary);
    /* Changed to dark text for visibility on light bg */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Removed the radial gradient overlay since we have a global background now */
/* .reasons-section::before { ... } */

.reasons-section .section-title {
    color: var(--text-primary);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.reason-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 78, 125, 0.1);
}

.reason-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(42, 78, 125, 0.1);
    color: var(--primary-color);
}

.reasons-cta {
    text-align: center;
    margin-top: 60px;
}

/* ==========================================
   お客様の声
   ========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 5px;
    /* Space for the top line */
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 78, 125, 0.12);
    border-color: var(--accent-color);
}

.testimonial-category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background: rgba(42, 78, 125, 0.05);
    padding: 4px 12px;
    border-radius: 100px;
}

.testimonial-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    padding: 40px 30px 30px;
}

.testimonial-company-group {
    margin-bottom: 16px;
}

.testimonial-company {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    display: block;
    line-height: 1.4;
}

.testimonial-business {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
    opacity: 0.8;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.4;
}

.testimonial-result-box {
    background: rgba(248, 250, 252, 0.5);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-flow-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.testimonial-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    color: var(--accent-color);
    font-size: 12px;
    opacity: 0.5;
}

.testimonial-point {
    flex: 1;
}

.testimonial-point-label {
    font-size: 10px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.point-issue .testimonial-point-label {
    background: #fee2e2;
    color: #ef4444;
}

.point-effect .testimonial-point-label {
    background: #e0f2fe;
    color: #0ea5e9;
}

.point-solution .testimonial-point-label {
    background: #dcfce7;
    color: #22c55e;
}

.point-outcome .testimonial-point-label {
    background: var(--primary-color);
    color: #fff;
}

.testimonial-point-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .testimonial-flow-row {
        flex-direction: column;
    }

    .testimonial-flow-arrow {
        transform: rotate(90deg);
        padding: 5px 0;
    }
}

/* ==========================================
   料金プラン
   ========================================== */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
}

.pricing-card {
    /* Layout Shell */
    width: 320px;
    position: relative;
    text-align: center;
    overflow: visible;
    /* Important: Allow badge to overlap */
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.pricing-card-inner {
    /* Visual container with Glassmorphism */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    /* Clip the shine effect */
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover effects apply to inner card */
.pricing-card:hover .pricing-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 78, 125, 0.15);
    border-color: var(--accent-color);
}

/* Shine effect on Inner Card */
.pricing-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.pricing-card:hover .pricing-card-inner::before {
    left: 150%;
    transition: 0.7s;
}

.pricing-card.recommended {
    /* Removed border/scale from outer shell to fix shape mismatch */
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.recommended .pricing-card-inner {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(42, 78, 125, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-primary);
}

/* ==========================================
   お問い合わせ
   ========================================== */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.cta-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.cta-card-description {
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-card.blue {
    background: var(--gradient-primary);
    color: white;
}

.cta-card.blue .cta-card-title,
.cta-card.blue .cta-card-description {
    color: white;
}

.cta-card.blue .btn {
    background: white;
    color: var(--primary-color);
}

/* ==========================================
   Connection Lines (The "Flow")
   ========================================== */
#global-connection-line {
    position: fixed;
    top: 100vh;
    /* Start after the main visual */
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100vh;
    background: rgba(42, 78, 125, 0.1);
    z-index: 0;
    pointer-events: none;
}

#flow-node {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-color), 0 0 30px var(--accent-color);
    z-index: 1;
    animation: flowDown 4s infinite linear;
}

#flow-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    animation: pulseNode 2s infinite;
}

@keyframes flowDown {
    0% {
        top: -5%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 105%;
        opacity: 0;
    }
}

@keyframes pulseNode {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

/* Enhanced Glassmorphism & Hover Glow */
/* Shift visuals to inner/card-specific wrappers if needed. 
   Pricing card is handled separately below. 
   For others, keep as is. */
.function-intro-item,
.reason-item,
.cta-card {
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.function-intro-item:hover,
.reason-item:hover,
.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 78, 125, 0.15);
    border-color: var(--accent-color);
}

/* Subtle inner glow on hover */
.function-intro-item::before,
.reason-item::before,
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.function-intro-item:hover::before,
.reason-item:hover::before,
.cta-card:hover::before {
    left: 150%;
    transition: 0.7s;
}

.hubspot-form-section {
    padding: 100px 0;
    background: #fff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

#hubspot-form-container {
    margin-top: 40px;
    text-align: left;
}

/* ==========================================
   レスポンシブ
   ========================================== */
@media (max-width: 768px) {

    .hero-content,
    .solution-content,
    .ai-agent-wrapper,
    .issue-row,
    .issue-row.reverse {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .character-crop {
        max-width: 300px;
    }

    .nav {
        display: none;
    }

    .solution-text {
        text-align: center;
    }

    .pricing-card {
        width: 100%;
    }
}

/* ==========================================
   Pricing Badge & Initial Fee Styles
   ========================================== */
.pricing-card {
    position: relative;
    /* Ensure overflow is visible for the badge */
    overflow: visible;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: var(--gradient-primary);
    /* Changed from red to brand gradient */
    color: white;
    padding: 6px 18px;
    border-radius: 100px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(42, 78, 125, 0.4);
    /* Matching shadow */
    z-index: 10;
    white-space: nowrap;
    letter-spacing: 0.05em;
    border: 2px solid #fff;
    /* White border to separate from background */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pricing-card:hover .pricing-badge {
    transform: translateX(-50%) translateY(-8px);
}

/* Initial Fee Separate Card */
.initial-fee-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.initial-fee-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(42, 78, 125, 0.2);
    padding-bottom: 15px;
}

.initial-fee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.initial-fee-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.initial-fee-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    white-space: pre-wrap;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .initial-fee-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================
   Solution List Styling
   ========================================== */
.solution-highlights-container {
    margin-bottom: 40px;
    text-align: center;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.solution-list-item {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(42, 78, 125, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(42, 78, 125, 0.1);
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.solution-list-item::before {
    content: '✔';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.solution-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(42, 78, 125, 0.2);
}

/* ==========================================
   Process Diagram Styles
   ========================================== */
.ai-agent-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.process-diagram-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    padding: 20px 0;
    overflow-x: auto;
    /* Allow scroll on very small screens */
}

/* Actors (Seeker / Company) */
.process-actor {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    flex-shrink: 0;
    z-index: 2;
}

.process-actor img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.process-actor-label {
    writing-mode: vertical-rl;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 10px 4px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 4px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Funnel Groups */
.process-funnel-group {
    display: flex;
    align-items: center;
    height: 180px;
    position: relative;
}

.process-step {
    background: radial-gradient(circle at center, #2A4E7D, #1a365d);
    /* Blue gradient */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    position: relative;
    margin-right: 2px;
}

/* Left Funnel Shapes */
.process-funnel-group.left .step-large {
    width: 100px;
    clip-path: polygon(0% 0%, 100% 10%, 100% 90%, 0% 100%);
    margin-right: -10px;
    /* Overlap slightly */
    z-index: 3;
    padding-left: 10px;
    /* Offset text */
}

.process-funnel-group.left .step-medium {
    width: 90px;
    clip-path: polygon(10% 10%, 100% 20%, 100% 80%, 10% 90%);
    margin-right: -10px;
    z-index: 2;
}

.process-funnel-group.left .step-small {
    width: 80px;
    clip-path: polygon(10% 20%, 100% 30%, 100% 70%, 10% 80%);
    z-index: 1;
}

/* Right Funnel Shapes */
.process-funnel-group.right .step-small {
    width: 80px;
    clip-path: polygon(0% 30%, 90% 20%, 90% 80%, 0% 70%);
    margin-right: -10px;
    z-index: 1;
}

.process-funnel-group.right .step-medium {
    width: 90px;
    clip-path: polygon(0% 20%, 90% 10%, 90% 90%, 0% 80%);
    margin-right: -10px;
    z-index: 2;
}

.process-funnel-group.right .step-large {
    width: 100px;
    clip-path: polygon(0% 10%, 100% 0%, 100% 100%, 0% 90%);
    z-index: 3;
    padding-right: 10px;
}

/* Center Block */
.process-center-block {
    background: #5076a8;
    /* Lighter blue */
    color: white;
    width: 140px;
    height: 80px;
    /* Smaller height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 0;
    margin: 0 -5px;
}

/* Text Styling */
.step-main-text {
    font-size: 18px;
    font-weight: 900;
    writing-mode: vertical-rl;
    /* Vertical Text */
    line-height: 1;
}

.step-sub-text,
.step-sub-text-top {
    font-size: 10px;
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
}

.step-sub-text {
    bottom: 10px;
    /* For large steps */
    writing-mode: horizontal-tb;
    /* Reset writing mode */
}

.step-sub-text-top {
    top: 10px;
    writing-mode: horizontal-tb;
}

/* Arrows (Simplified) */
.process-arrow-overlay {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    z-index: 10;
    pointer-events: none;
}

.curved-arrow {
    display: block;
    width: 100%;
    height: 100%;
    border-top: 2px solid white;
    border-radius: 50%;
    position: relative;
}

.process-funnel-group.left .process-arrow-overlay:nth-child(2) {
    top: 15%;
    left: 70px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-diagram-container {
        flex-direction: column;
        gap: 20px;
    }

    .process-funnel-group {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .process-step {
        width: 100% !important;
        height: 60px;
        clip-path: none !important;
        /* Reset shapes for stacked view */
        margin: 5px 0;
        border-radius: 8px;
        writing-mode: horizontal-tb;
    }

    .step-main-text {
        writing-mode: horizontal-tb;
    }

    .process-center-block {
        width: 100%;
        height: 60px;
    }

    .process-actor-label {
        writing-mode: horizontal-tb;
        height: auto;
        width: 100%;
    }
}

/* ==========================================
   New Sections & Image Handling
   ========================================== */

/* Full width image fix */
.full-width-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Optional: if you want rounded corners like other elements */
    box-shadow: var(--shadow-md);
}

/* Specific Section Adjustments */
.aica-intro-section,
.aica-capabilities-section {
    padding: 60px 0;
}

#aica-capabilities-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Reasons Section Update */
.reasons-grid.single-image-mode {
    display: block;
    /* Override flex/grid */
    text-align: center;
}

/* CTA Grid - Three Columns Support */
.cta-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .cta-grid.three-columns {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

/* AIRA Card Specifics */
.aira-card {
    border: 2px solid var(--accent-color);
    /* Highlight AIRA card */
    background: linear-gradient(to bottom right, #f0f8ff, #ffffff);
}

.aira-action-area {
    margin-top: auto;
    text-align: center;
    width: 100%;
}

.aira-note {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ==========================================
   AICA Intro Section Styles
   ========================================== */
.aica-intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.aica-intro-visual {
    flex: 0 0 40%;
    text-align: center;
}

.intro-character-card {
    background: #e6f0fa;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    max-width: 320px;
    /* Card size constraint */
    margin: 0 auto;
}

.intro-character-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto 0;
}

.character-name {
    font-size: 14px;
    color: var(--primary-color);
    letter-spacing: 0.1em;
}

.character-name-en {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 10px;
}

.aica-intro-text {
    flex: 1;
}

.intro-concept {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.triangle-icon {
    color: var(--primary-color);
    font-size: 1.5em;
}

.intro-concept h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-color);
    margin: 0;
}

.intro-description {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--text-primary);
}

.highlight-blue {
    background: linear-gradient(transparent 60%, rgba(74, 144, 226, 0.3) 60%);
    padding: 0 4px;
}

.aica-intro-tools {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.intro-tool-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid #e0e0e0;
}

.tool-label {
    background: var(--warning-color);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.intro-tool-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.intro-tool-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ==========================================
   AICA Capabilities Styles
   ========================================== */
.capabilities-header {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    border-left: 5px solid #fff;
    /* Design accent */
}

.capabilities-header .section-title {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.capabilities-content {
    background: #eef6fc;
    border-radius: 20px;
    padding: 40px;
    margin-top: 20px;
    display: flex;
    gap: 40px;
}

.capabilities-visual {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: right;
    /* To align tools visually if needed */
}

.cap-character {
    max-width: 180px;
    margin-bottom: 20px;
}

.cap-tools-list {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.cap-tool-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.capabilities-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cap-step-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.step-badge {
    background: #fff;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 900;
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px 0 0 20px;
    /* Pop out effect */
    position: relative;
    z-index: 2;
    background: #fff;
}

.step-content {
    padding: 20px 30px;
    border-top: 3px solid var(--primary-color);
    /* The line effect */
    margin-top: 25px;
    /* Offset for badge */
}

.step-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.step-items {
    list-style: none;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Automation Flow */
.capabilities-automation {
    margin-top: 40px;
    text-align: center;
}

.auto-scout-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #dbeafe;
    padding: 10px 30px;
    border-radius: 40px;
    display: inline-flex;
    margin-bottom: 30px;
}

.mini-char {
    height: 60px;
    width: auto;
}

.auto-scout-header h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
}

.auto-flow-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.auto-flow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--text-primary);
}

.flow-arrow {
    color: var(--primary-color);
}

/* ==========================================
   Reasons Transformation Styles
   ========================================== */
.reasons-transformation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.reasons-card-char {
    background: #dbeafe;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    width: 200px;
}

.reasons-card-char img {
    margin-top: 10px;
    border-radius: 10px;
}

.reasons-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    max-width: 600px;
}

.flow-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flow-icon-user {
    font-weight: 700;
    width: 80px;
    text-align: center;
    font-size: 14px;
}

/* Use a Pseudo element or simple icon logic if needed later, simplistic for now */

.flow-text {
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================================
   AIRA Section Styles
   ========================================== */
.aira-card {
    border: none;
    background: #e0f2fe;
    /* Light Cyan */
    position: relative;
    overflow: hidden;
}

.aira-content {
    text-align: center;
    padding-bottom: 20px;
}

.aira-concept {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.aira-name-group {
    margin-bottom: 20px;
}

.aira-name {
    font-size: 16px;
    color: #475569;
}

.aira-name-en {
    font-size: 40px;
    font-weight: 900;
    color: #33a1a1;
    /* Teal */
    line-height: 1;
}

.aira-series-label {
    font-size: 20px;
    color: #33a1a1;
}

.aira-description {
    white-space: pre-wrap;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.8;
}

/* Reponsive tweaks */
@media (max-width: 768px) {

    .aica-intro-content,
    .capabilities-content,
    .reasons-transformation {
        flex-direction: column;
        text-align: center;
    }

    .aica-intro-visual,
    .capabilities-visual {
        width: 100%;
    }

    .reasons-transformation {
        gap: 30px;
    }

    .flow-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ==========================================
   Refined Design Styles
   ========================================== */

/* AICA Intro Refined */
.aica-intro-content.refined-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.aica-intro-visual.small-visual {
    flex: 0 0 250px;
    /* Smaller width */
}

.intro-character-card.small-card {
    background: transparent;
    padding: 0;
    max-width: 200px;
    /* Reduced visual size */
}

.intro-character-card.small-card img {
    width: 100%;
    margin: 0;
}

.character-name-group {
    text-align: center;
    margin-top: 10px;
}

.intro-concept-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.intro-concept-highlight h3 {
    font-size: 32px;
    /* Prominent concept */
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
    background: linear-gradient(120deg, transparent 60%, rgba(243, 156, 18, 0.3) 60%);
}

.intro-description.large-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
}

.refined-tools {
    gap: 15px;
}

.refined-tool-card {
    background: #f8fbff;
    border: 1px solid #dbeafe;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.refined-tool-card h4 {
    font-size: 18px;
    color: var(--primary-color);
}

/* AICA Capabilities Refined */
.capabilities-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.capabilities-top-banner {
    background: #eef6fc;
    border-radius: 20px;
    padding: 30px;
}

.cap-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.cap-banner-visual img {
    height: 100px;
    width: auto;
}

.cap-banner-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cap-tool-row {
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
}

.cap-tag {
    background: var(--warning-color);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 12px;
}

.cap-text {
    font-weight: 700;
    color: var(--primary-color);
}

.capabilities-steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cap-step-card-refined {
    background: #fff;
    border: 2px solid #eef6fc;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.step-number {
    font-size: 32px;
    font-weight: 900;
    color: #eef6fc;
    -webkit-text-stroke: 1px var(--primary-color);
    line-height: 1;
}

.step-title {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
}

.step-list-refined li {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.capabilities-automation-refined {
    margin-top: 30px;
    background: #fdfdfd;
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.auto-header-refined {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cap-tag-yellow {
    background: var(--warning-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 900;
}

.auto-header-refined h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 0;
}

.auto-flow-refined {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    font-weight: 700;
    font-size: 18px;
}

/* Reasons Refined */
.reasons-split-layout {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.reasons-column {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.seeker-col {
    background: #f0f7ff;
}

.recruiter-col {
    background: #fff;
}

.reasons-role-label {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 900;
    margin-bottom: 20px;
    display: inline-block;
}

.reasons-main-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
}

.reasons-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    width: 2px;
    height: 80%;
    background: #cbd5e1;
}

/* AIRA Refined */
.aira-card-refined {
    border: 2px solid #33a1a1;
    /* Teal border */
    background: #f0fdfa;
    /* Minty */
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.aira-header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.aira-char-img {
    height: 80px;
    width: auto;
}

.aira-title-wrapper {
    text-align: left;
}

.aira-concept-small {
    font-size: 11px;
    color: #64748b;
}

.aira-main-name {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.name-en {
    font-size: 32px;
    font-weight: 900;
    color: #33a1a1;
}

.name-series {
    font-size: 18px;
    color: #33a1a1;
}

.aira-tools-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.aira-tool-badge {
    background: #fff;
    border: 1px solid #ccfbf1;
    color: #0f766e;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .aica-intro-content.refined-layout {
        flex-direction: column;
    }

    .capabilities-steps-container {
        grid-template-columns: 1fr;
    }

    .reasons-split-layout {
        grid-template-columns: 1fr;
    }

    .reasons-divider {
        display: none;
    }

    .cap-banner-content {
        flex-direction: column;
        gap: 20px;
    }

    .auto-flow-refined {
        flex-direction: column;
    }
}

/* ==========================================
   Final Design Adjustments
   ========================================== */

/* Intro: Centered, Smaller Image */
.aica-intro-content.refined-layout-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 30px;
}

.aica-intro-visual.mini-visual {
    flex: 0 0 auto;
}

.intro-character-card.mini-card {
    max-width: 120px;
    /* Much smaller */
}

.intro-concept-wrapper h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
    /* No underline/background as requested */
    background: none;
}

.intro-description.text-center {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
}

/* Capabilities: Top Refined */
.capabilities-top-refined {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    background: #fdfdfd;
    border: 2px dashed #cbd5e1;
    /* Same as auto-scout */
    border-radius: 20px;
    padding: 30px;
}

.cap-top-char img {
    height: 100px;
    width: auto;
}

.cap-top-tools-grid {
    display: flex;
    gap: 20px;
}

.tool-card-style {
    /* Matches auto-header-refined */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
}

.tool-card-style h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

/* Reasons: Clean Split */
.reasons-split-layout-clean {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 300px;
    /* Ensure height */
}

.reasons-col-clean {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.seeker-side {
    background: #f0f7ff;
}

.recruiter-side {
    background: #fff;
}

/* Center background fix (if interpreted as content centering) */
.reasons-content-wrapper {
    max-width: 400px;
    text-align: center;
}

/* AIRA: Image Crop Fix */
.aira-char-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid #33a1a1;
}

.aira-char-img {
    width: 200%;
    /* Zoom in */
    height: auto;
    position: absolute;
    /* Attempt to center on a male character roughly */
    top: 10%;
    left: -50%;
    object-fit: cover;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .capabilities-top-refined {
        flex-direction: column;
    }

    .cap-top-tools-grid {
        flex-direction: column;
    }

    .reasons-split-layout-clean {
        flex-direction: column;
    }
}

/* ==========================================
   Round 3 Design Adjustments
   ========================================== */

/* Intro: Row Layout (Side-by-side) */
.aica-intro-content.refined-layout-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.intro-concept-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.intro-concept-text h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
}

.intro-character-card.mini-card-inline {
    background: transparent;
    max-width: 100px;
}

.intro-character-card.mini-card-inline img {
    width: 100%;
}

.character-name-group-inline {
    text-align: center;
    font-size: 11px;
    color: var(--primary-color);
}


/* Features: Text Only Grid */
.issue-card.text-only-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: auto;
    min-height: 180px;
}

.issue-number {
    font-size: 40px;
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
}

/* Solution: Centered Video */
.solution-video-centered {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.solution-video-player {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* Capabilities: Merged & Dotted */
.capabilities-merged-container {
    background: #fdfdfd;
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cap-tools-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.capabilities-steps-container-merged {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 2px dashed #cbd5e1;
    padding-top: 30px;
}

.cap-step-card-merged {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.step-header-merged {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.step-badge-merged {
    background: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-title-merged {
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
}

/* CTA: Compact & Balanced */
.cta-grid.three-columns-refined {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.compact-card {
    padding: 25px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.compact-desc {
    font-size: 13px;
    margin-bottom: 15px;
    flex-grow: 1;
    /* Pushes button down but keeps alignment */
}

.compact-img {
    height: 100px;
    margin-top: 15px;
}

.aira-char-wrapper-reset {
    width: 80px;
    height: 80px;
    /* No cropping/border radius as requested in strict sense or slight rounded */
    border-radius: 10px;
}

.aira-char-img-reset {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .cta-grid.three-columns-refined {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Final Polish Layouts
   ========================================== */

/* Intro: Left (Image) | Right (Text) */
.refined-layout-left-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.intro-left-col {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
}

.intro-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    text-align: left;
    /* Explicitly Left */
}

/* Features: Horizontal Issue Card */
.horizontal-issue-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
}

.issue-left-label {
    background: #f1f5f9;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    border-right: 1px solid #e2e8f0;
}

.issue-label-text {
    font-size: 12px;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 5px;
}

.issue-label-num {
    font-size: 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    /* Light/Thin */
    color: var(--primary-color);
    line-height: 1;
}

.issue-right-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.issue-title-bold {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.issue-desc-text {
    font-size: 16px;
    color: #334155;
    line-height: 1.6;
}

/* Solution: Strict Center */
.solution-container-final {
    display: flex;
    justify-content: center;
    width: 100%;
}

.solution-video-wrapper {
    width: 100%;
    max-width: 900px;
}

/* Capabilities: Block Structure */
.capabilities-main-structure {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cap-section-block {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 30px;
}

.cap-tools-grid-separated {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.tool-card-simple {
    background: #eef6fc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    color: var(--primary-color);
    width: 300px;
}

.cap-steps-flow-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.step-card-visual {
    flex: 1;
    background: #f8fbff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #dbeafe;
}

.step-badge-visual {
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.step-arrow-right {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #cbd5e1;
}

.automation-block {
    background: #f0fdfa;
    /* Minty for Auto */
    border: 2px dashed #33a1a1;
    text-align: center;
}

/* CTA: Vertical Stack */
.cta-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-card-horizontal {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 180px;
    border: 1px solid #e2e8f0;
}

.cta-card-horizontal.blue {
    background: #f0f7ff;
    border-color: #dbeafe;
}

.cta-h-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-h-action {
    width: 300px;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-wide {
    width: 100%;
    max-width: 200px;
}

.cta-h-img {
    height: 80px;
    width: auto;
}

/* AIRA Special */
.aira-h-card {
    border: 2px solid #33a1a1;
    background: linear-gradient(to right, #f0fdfa, #ffffff);
}

.aira-label-badge {
    background: #33a1a1;
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
}

.aira-name-lg {
    font-size: 24px;
    font-weight: 900;
    color: #33a1a1;
    margin-right: 10px;
}

.aira-name-en-lg {
    font-size: 16px;
    color: #64748b;
}

.aira-tools-row {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
}

.aira-h-char-img {
    height: 140px;
    /* Big character */
    width: auto;
    object-fit: contain;
}

/* Response */
@media (max-width: 768px) {

    .refined-layout-left-right,
    .horizontal-issue-card,
    .cap-tools-grid-separated,
    .cap-steps-flow-visual,
    .cta-card-horizontal {
        flex-direction: column;
    }

    .intro-left-col,
    .issue-left-label,
    .cta-h-action {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .issue-label-num {
        font-size: 30px;
    }
}

/* ==========================================
   Solution Center Fix
   ========================================== */
#solution-media {
    width: 100%;
    display: flex;
    justify-content: center;
}

.solution-container-final {
    width: 100%;
    display: flex;
    justify-content: center;
}

.solution-video-wrapper {
    max-width: 900px;
    width: 100%;
}

.solution-video-player {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   Restored Solution Highlights
   ========================================== */
.solution-highlight-list-restored {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.solution-highlight-list-restored li {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    background: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

/* ==========================================
   Round 4 Refinements
   ========================================== */

/* Intro: Name Row */
.character-name-group-row {
    margin-top: 10px;
    background: #000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.character-name-reading {
    font-size: 12px;
    opacity: 0.8;
}

.character-name-main {
    font-size: 16px;
    font-weight: 700;
}

/* CTA: Unified Card Styles */
.cta-unified-card {
    min-height: auto;
    /* Let content dictate height */
}

.cta-left-label {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    flex-shrink: 0;
}

.blue-label {
    background: var(--primary-color);
}

.green-label {
    background: #10b981;
}

.teal-label {
    background: #33a1a1;
}

.cta-label-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
}

.cta-left-icon {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}

.cta-right-content {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-desc-sm {
    font-size: 14px;
    margin-bottom: 15px;
    color: #64748b;
}

.cta-unified-btn {
    padding: 10px 30px;
    font-size: 14px;
}

/* AIRA Unified */
.aira-right-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.aira-text-area {
    flex: 1;
}

.aira-header-row-unified {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
}

.aira-reading {
    font-size: 14px;
    color: #33a1a1;
    font-weight: 700;
}

.aira-main-name-unified {
    font-size: 28px;
    font-weight: 900;
    color: #33a1a1;
}

.aira-desc-text {
    font-weight: 700;
    color: #475569;
    margin-bottom: 10px;
}

.aira-tools-list-unified {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.aira-img-area {
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aira-unified-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Gap Adjustment */
.cta-vertical-stack.refined-gap {
    gap: 15px;
    /* Reduce gap */
}

/* Responsive */
@media (max-width: 768px) {
    .aira-right-layout {
        flex-direction: column-reverse;
        /* Image on top on mobile? or bottom? */
        align-items: flex-start;
    }

    .aira-img-area {
        width: 120px;
        margin-bottom: 20px;
        align-self: center;
    }
}

/* ==========================================
   Round 5 Refinements
   ========================================== */

/* Intro: Simple Stacked Name (No Black Bg) */
.character-name-group-stacked {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    /* Default text color, no white */
}

.character-name-reading-simple {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.character-name-main-simple {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
}

/* ==========================================
   Tool Images & New Layouts
   ========================================== */

/* Tool Card with Image */
.tool-card-with-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    /* White bg for image contrast */
    border: 1px solid #e2e8f0;
    overflow: hidden;
    padding: 20px;
    height: 100%;
}

.tool-card-title-sm {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.tool-card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    max-height: 250px;
}

/* Auto Scout Image */
.auto-scout-img-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
}

.auto-scout-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Response for Intro Title Move */
@media (max-width: 768px) {
    .intro-right-col .section-title {
        text-align: center;
    }
}

/* Tool Image Container */
.tool-card-img-container {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: center;
}

/* Intro Tool Images */
.intro-tool-img-container {
    width: 100%;
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

.intro-tool-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
}

/* ==========================================
   User Requested Updates (Step 513)
   ========================================== */

/* 1. Intro Section: Blend White BG & Fix Auto Scout Align */
.intro-tool-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes content apart */
    height: 100%;
    background: #f8fafc;
    /* Ensure it matches common light bg if not white */
}

/* Make white bg of images transparent via mix-blend-mode */
.intro-tool-img {
    mix-blend-mode: multiply;
}

/* Ensure images have consistent container size for alignment */
.intro-tool-img-container {
    height: 180px;
    /* Fixed height for image area */
    display: flex;
    align-items: flex-end;
    /* Align bottom */
    justify-content: center;
    background: transparent;
    margin-bottom: 10px;
}

/* 2. Features Section: Smaller ISSUE & Number */
.horizontal-issue-card .issue-label-text {
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.horizontal-issue-card .issue-label-num {
    font-size: 18px !important;
    /* Reduced from likely 30+ */
    line-height: 1;
}

/* Make Title More Prominent */
.issue-title-bold {
    font-size: 18px;
    font-weight: 900;
}

/* 3. AICA Capabilities: Text Only, Description */
.tool-card-desc-sm {
    font-size: 13px;
    color: #64748b;
    margin-top: 8px;
    line-height: 1.5;
}

/* 4. Reasons: Card Design */
.reasons-card-layout {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.reason-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.reason-card-header {
    background: #f1f5f9;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.reason-role-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 30px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 18px;
    display: inline-block;
}

.reason-card-body {
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 250px;
}

.reason-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--text-primary);
    word-break: break-word;
}



/* 5. CTA: New Grid & AIRA Layout */
.cta-new-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.cta-top-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.cta-unified-card.half-width {
    flex: 1;
    display: flex;
    flex-direction: row;
    /* Horizontal layout like Contact/Seminar */
    align-items: center;
}

.cta-unified-card.aira-wide-card {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.aira-right-layout-flex {
    display: flex;
    flex-direction: row;
    /* Horizontal flex for AIRA internal */
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
    padding: 20px;
}

.aira-char-name-group {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid #cbd5e1;
    /* Separator */
    padding-right: 30px;
}

.aira-mini-img {
    width: 80px;
    height: auto;
    border-radius: 50%;
    /* Circle? Or rounded square */
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.aira-name-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aira-info-block {
    text-align: left;
    flex: 1;
}

.aira-tools-list-inline {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 700;
    margin-top: 5px;
    color: #475569;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .cta-top-row {
        flex-direction: column;
    }

    .reasons-card-layout {
        flex-direction: column;
    }

    .aira-right-layout-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .aira-char-name-group {
        border-right: none;
        border-bottom: 1px solid #cbd5e1;
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
    }
}

/* ==========================================
   User Requested Updates (Step 535)
   ========================================== */

/* 1. Intro Section: Fix Text-Image Overlap */
.intro-tool-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Alignment from top */
    height: auto;
    /* Allow flexible height */
    min-height: 350px;
    /* Ensure minimum height */
    position: relative;
    padding-bottom: 20px;
}

.intro-tool-card h4 {
    margin-bottom: 15px;
    height: 50px;
    /* Fixed height for title to align */
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-tool-img-container {
    height: 140px;
    /* Reduced height to prevent pushing text too far or overlapping */
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.intro-tool-card p {
    margin-top: auto;
    /* Push description to bottom area if space */
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    /* Slightly opaque bg if overlap happens */
    padding: 5px;
    border-radius: 4px;
}

/* 2. Features/Issues Section Redesign */
.horizontal-issue-card {
    /* Change to Vertical Clean Card */
    flex-direction: column !important;
    align-items: flex-start;
    padding: 30px !important;
    gap: 15px;
    border-left: 5px solid var(--primary-color) !important;
}

.issue-left-label {
    /* Transform to top label */
    background: transparent !important;
    color: var(--primary-color) !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.issue-label-text {
    font-size: 14px !important;
    color: var(--text-secondary);
    font-weight: 700;
}

.issue-label-num {
    font-size: 32px !important;
    color: var(--primary-color);
    font-weight: 900;
}

.issue-right-content {
    padding: 0 !important;
    width: 100%;
}

.issue-title-bold {
    font-size: 20px !important;
    margin-bottom: 10px !important;
    color: var(--text-primary);
}

.issue-desc-text {
    font-size: 14px !important;
    color: #64748b;
}

/* 3. AICA Capabilities Section Redesign (Header Bar Style) */
.capabilities-main-structure {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cap-blue-header-bar {
    background: #e0f2fe;
    /* Light Blue */
    border-radius: 20px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    min-height: 100px;
}

.cap-header-char-container {
    margin-left: -10px;
    /* Slight offset */
    display: flex;
    align-items: center;
}

.cap-header-char {
    height: 100px;
    /* Mini char size */
    width: auto;
}

.cap-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cap-tools-title-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cap-tool-title-row {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.cap-auto-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    width: 100%;
}

/* Steps Flow */
.cap-steps-flow-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Auto Scout Flow */
.auto-scout-flow-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.auto-main-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.auto-flow-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.auto-flow-step {
    font-size: 18px;
    font-weight: 700;
    color: #334155;
}

.auto-flow-arrow {
    color: var(--primary-color);
    font-size: 24px;
}

/* 4. Reasons Section Updates */
.reasons-card-layout {
    gap: 20px;
    max-width: 100%;
    /* Use full container width */
}

.reason-card {
    max-width: none;
    /* Let flex expand it */
    min-height: 250px;
    /* Larger card */
}

.reasons-content {
    /* Reduce padding/margins if needed */
    padding: 20px 0 !important;
}

/* 5. CTA Updates */

.cta-left-icon {
    display: none !important;
    /* Force hide any icons */
}

.cta-bottom-row {
    display: flex;
    justify-content: center;
    /* Center AIRA card */
}

.cta-unified-card.aira-wide-card {
    max-width: 800px;
    /* Limit width for centering */
}

/* ==========================================
   User Requested Updates (Step 561) - Round 8
   ========================================== */

/* 1. Intro Section Titles */
/* Ensure H4 is prominent and above image */
.intro-tool-card h4 {
    order: -1;
    /* Move to top of flex container */
    margin-bottom: 20px !important;
    font-size: 18px !important;
    line-height: 1.4;
    color: var(--primary-color);
    font-weight: 700;
    min-height: 54px;
    /* Ensure 2 lines fit */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
    background: transparent;
}

.intro-tool-card {
    padding-top: 30px !important;
    /* Space for title */
}

/* 2. Features Section: ISSUE adjacent to Number */
.horizontal-issue-card {
    padding: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
}

.issue-header-row {
    display: flex;
    align-items: center;
    /* Vertical center alignment */
    gap: 15px;
    /* Space between ISSUE and Number */
}

.issue-label-text {
    font-size: 16px !important;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.issue-label-num {
    font-size: 40px !important;
    line-height: 1;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    /* If avail, else inherit */
    color: var(--primary-color);
}

.issue-main-content {
    padding-left: 0;
}

.issue-title-bold {
    font-size: 22px !important;
    margin-bottom: 12px !important;
    border-bottom: 2px solid #efefef;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

/* 3. AICA Capabilities Updates */
/* Horizontal Header Title Group */
.cap-tools-title-group-horizontal {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.cap-tool-title-item {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.cap-title-divider {
    font-size: 24px;
    color: #94a3b8;
    font-weight: 300;
}

/* Steps: Horizontal Layout */
.cap-steps-flow-visual-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.refined-step-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.step-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.step-badge-visual {
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}

.step-title-visual {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.step-body-content {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

/* Auto Scout Steps Steps 1-3 */
.auto-steps-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
}

.auto-step-card {
    background: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    /* Pill shape */
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.auto-step-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.auto-step-arrow-down {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 18px;
    z-index: 2;
}

.auto-step-card:last-child .auto-step-arrow-down {
    display: none;
}

/* 4. Reasons Card Enforce */
.reasons-card-layout {
    display: flex !important;
    gap: 40px !important;
    width: 100%;
}

.reason-card {
    flex: 1;
    min-height: 300px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

/* 5. CTA Card Styling */
.cta-unified-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .issue-header-row {
        flex-direction: row;
    }

    .cap-steps-flow-visual-horizontal {
        flex-direction: column;
    }

    .cap-tools-title-group-horizontal {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================
   User Requested Updates (Step 579) - Round 9 (Fix Overlaps & Margins)
   ========================================== */

/* 1. Intro Section: Fix Overlap by Removing Order Hack */
.intro-tool-card h4 {
    order: unset !important;
    /* Remove the hack */
    position: relative !important;
    margin-bottom: 20px !important;
    height: auto !important;
    /* Let content dictate height */
    min-height: 50px !important;
    z-index: 5;
}

.intro-tool-card {
    padding-top: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

/* 2. Reasons Section: Reduce Margins */
.reasons-section {
    padding: 40px 0 !important;
    /* Reduced vertical padding */
}

.reasons-card-layout {
    gap: 20px !important;
    /* Smaller gap between cards */
    max-width: 900px !important;
    /* Constrain width to prev excessive stretch */
    margin: 0 auto !important;
}

.reason-card-body {
    padding: 20px !important;
    /* Reduce inner padding */
    min-height: auto !important;
    /* Allow shrink */
}

/* 3. Capabilities: Fix Arrow Position */
.step-arrow-right-large {
    font-size: 30px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

/* 4. CTA: Ensure Card Format Persists */
.cta-unified-card {
    /* Re-affirm styles */
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border: 1px solid #eee;
}

/* ==========================================
   FINAL FORCE OVERRIDES (Step 595+)
   ========================================== */

/* 1. Intro Section Fix - Ensure Title above Image */
.intro-tool-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 25px 15px !important;
    /* Ensure content flows naturally */
    justify-content: flex-start !important;
    height: 100% !important;
}

.intro-tool-card h4 {
    /* Reset any previous positioning */
    position: static !important;
    order: 0 !important;
    /* Force first visual order */
    margin-bottom: 15px !important;
    height: auto !important;
    min-height: 48px !important;
    /* 2 lines space */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.intro-tool-img-container {
    order: 1 !important;
    /* Force second */
    margin-bottom: 15px !important;
    height: 150px !important;
    /* Fixed height for consistency */
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
}

.intro-tool-card p {
    order: 2 !important;
    /* Force last */
}

/* 2. Capabilities Section - Balance & Horizontal */
.cap-steps-flow-visual-horizontal {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 1000px !important;
    margin: 30px auto 0 auto !important;
}

.refined-step-card {
    flex: 1 !important;
    /* Equal width */
    max-width: 48% !important;
    /* Prevent too wide */
    display: flex !important;
    flex-direction: column !important;
}

.step-arrow-right-large {
    align-self: center !important;
    font-size: 24px !important;
    color: var(--primary-color) !important;
}


/* Reasons Section Update - Matching Function Intro style */
.reasons-section {
    padding: 100px 0 !important;
    /* Standard padding matching other sections */
    background: transparent;
}

.reasons-card-layout {
    display: flex !important;
    gap: 40px !important;
    max-width: 1000px !important;
    margin: 40px auto 0 !important;
    width: 95% !important;
    align-items: stretch;
}

.reason-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: none !important;
    height: auto !important;
    border: 1px solid #eee;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 78, 125, 0.15);
    background: rgba(255, 255, 255, 0.8);
}

.reasons-cta {
    margin-top: 60px;
    text-align: center;
}

/* Auto Scout V3 Layout (3 columns based on image) */
.auto-scout-container-v3 {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* Consistent gap */
    margin-top: 40px;
    flex-wrap: wrap;
}

.auto-scout-card-v3 {
    flex: 1;
    background: #f8f9fa;
    border-radius: 24px;
    padding: 40px 20px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #ffffff;
    position: relative;
    max-width: 350px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.auto-scout-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 78, 125, 0.15);
    background: #fff;
    border-color: var(--accent-color);
}

.auto-scout-step-num {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #333;
    z-index: 2;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.auto-scout-step-title {
    font-size: 24px;
    font-weight: 900;
    color: #2A4E7D;
    margin-bottom: 5px;
    text-align: center;
}

.auto-scout-step-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #2A4E7D;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.4;
    border-top: 2px solid #2A4E7D;
    /* Simple line as requested */
    padding-top: 8px;
}

.auto-scout-step-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auto-scout-step-items li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #444;
    line-height: 1.5;
    text-align: left;
}

.auto-scout-step-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0px;
    width: 20px;
    height: 20px;
    background: #2A4E7D;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* 4. CTA Section - Card Format */
.cta-unified-card {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
    display: flex !important;
    overflow: hidden !important;
    align-items: stretch !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-unified-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.cta-top-row {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

.half-width {
    width: 48% !important;
    /* Ensure side-by-side */
    flex: 1 !important;
}

@media (max-width: 768px) {

    .cap-steps-flow-visual-horizontal,
    .reasons-card-layout,
    .cta-top-row {
        flex-direction: column !important;
    }

    .half-width {
        width: 100% !important;
    }
}

/* ==========================================
   FRESH STYLES V2 (To ensure clean layout)
   ========================================== */

/* 1. Intro V2 */
.intro-tool-card-v2 {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 400px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.intro-tool-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 78, 125, 0.15);
    background: #fff;
    border-color: var(--accent-color);
}

.intro-card-title-v2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    min-height: 54px;
    /* 2 lines */
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-card-img-v2 {
    height: 180px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 20px;
}

.intro-card-img-v2 img {
    max-height: 100%;
    max-width: 100%;
    mix-blend-mode: multiply;
}

.intro-card-desc-v2 {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* 2. Capabilities V2 */
.cap-header-blue-v2 {
    background: #e0f2fe;
    border-radius: 20px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cap-header-char-v2 {
    height: 80px;
    width: auto;
    margin-left: -5px;
}

.cap-header-titles-v2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    gap: 20px;
}

.cap-header-titles-v2 .divider {
    color: #94a3b8;
}

.cap-header-titles-v2.center-title {
    width: 100%;
    justify-content: center;
    font-size: 24px;
}

.cap-steps-container-v2 {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.step-card-v2 {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-header-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0f2fe;
    padding-bottom: 10px;
}

.step-badge-v2 {
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 900;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 14px;
}

.step-arrow-v2 {
    align-self: center;
    font-size: 24px;
    color: #94a3b8;
}

.auto-steps-list-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.auto-step-pill-v2 {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 90%;
    max-width: 400px;
}

.step-badge-mini-v2 {
    background: var(--primary-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.auto-arrow-down-v2 {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    z-index: 5;
}

.auto-subtitle-v2 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
}

/* 3. Reasons V2 (Tight Layout) */
.reasons-layout-v2 {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.reason-card-v2 {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-height: 250px;
}

.reason-header-v2 {
    background: #f1f5f9;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    color: #475569;
}

.reason-body-v2 {
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 41px);
}

/* 4. CTA V2 */
.cta-row-v2 {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-card-v2 {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cta-card-v2.half {
    flex: 1;
}

.cta-card-v2.full {
    width: 100%;
    max-width: 800px;
}

.cta-label-v2 {
    display: inline-block;
    padding: 5px 15px;
    color: #fff;
    font-weight: 900;
    border-radius: 4px;
    margin-bottom: 15px;
}

.cta-label-v2.blue {
    background: #3b82f6;
}

.cta-label-v2.green {
    background: #10b981;
}

.aira-flex-v2 {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.aira-img-v2 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #e0f2fe;
}

.aira-name-v2 {
    font-size: 24px;
    font-weight: 900;
    color: #0d9488;
}

/* Mobile */
@media (max-width: 768px) {

    .cap-steps-container-v2,
    .reasons-layout-v2,
    .cta-row-v2,
    .aira-flex-v2 {
        flex-direction: column;
    }
}

/* ==========================================
   ROUND 12: CAPABILITIES ALIGNMENT FIXES
   ========================================== */

/* Capabilities Container & Groups */
.capabilities-wrapper-v2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    width: 95%;
}

.cap-group-v2 {
    width: 100%;
}

/* Header Adjustments */
.cap-header-blue-v2 {
    justify-content: center;
    /* Center the content */
    padding: 20px;
}

.cap-header-titles-v2 {
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.4;
}

/* Step Cards Alignment */
.step-card-v2 {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Fill flex height */
}

.step-header-v2 {
    justify-content: center;
    /* Center header items */
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0f2fe;
}

.step-header-v2 h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.step-body-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    /* Ensure text is readable */
    padding: 0 10px;
}

.step-body-v2 ul {
    margin: 0;
    padding-left: 20px;
    /* Standard bullet indentation */
    list-style-type: disc;
}

.step-body-v2 li {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 5px;
}

.step-body-v2 p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Auto Scout Alignment */
.auto-step-pill-v2 {
    justify-content: flex-start;
    /* Align start to keep text orderly */
    padding: 15px 25px;
}

.auto-step-text-v2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    flex: 1;
    text-align: center;
    /* Center the text within remaining space */
}

.auto-subtitle-v2 {
    margin-bottom: 25px;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
}

/* ==========================================
   ROUND 13: FIXED BADGES & TITLE MATCH
   ========================================== */

/* 1. Circle Badge for Steps */
.step-badge-circle-v2 {
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.step-badge-circle-v2 .step-label {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 2px;
}

.step-badge-circle-v2 .step-num {
    font-size: 20px;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    /* Try consistent font */
}

/* 2. Title Matching */
.cap-header-titles-v2.center-title.matched-size {
    font-size: 20px !important;
    /* Force match with other titles */
    width: auto !important;
    /* Allow natural flow inside flex */
    flex: 1;
    justify-content: center;
}

/* End of styles */
/* ==========================================
   Footer Styles (Single Line)
   ========================================== */
.footer {
    padding: 60px 0;
    color: var(--text-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    text-align: center;
}

.footer-main-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* Spacious gap as requested */
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-company-name {
    font-weight: 900;
    color: var(--primary-color);
}

.footer-links-inline {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links-inline a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-inline a:hover {
    color: var(--primary-color);
}

.footer-divider {
    color: #e2e8f0;
    font-size: 12px;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-main-info {
        flex-direction: column;
        gap: 10px;
    }
}