@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600&family=Poppins:wght@500;600;700;800&family=Roboto+Condensed:wght@900&family=Roboto:wght@900&display=swap');

/* Reset and Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Premium B2B Corporate Blue/White Palette (No Red) */
    --bg-main: #f8fafc;       /* Cool icy-gray background */
    --bg-alt: #f1f5f9;        /* Slightly darker cool gray */
    --bg-card: #ffffff;       /* Pure white card */
    
    --primary: #2563eb;       /* Electric Cobalt Blue */
    --primary-hover: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.05);
    
    --secondary: #0b1120;     /* Deep Midnight Navy (Headers and dark sections) */
    --secondary-light: #1e293b;
    
    --border-color: #e2e8f0;  /* Thin slate border */
    --border-hover: #cbd5e1;
    
    --text-main: #0b1120;     /* Midnight Navy primary body text */
    --text-muted: #475569;    /* Muted Slate secondary text */
    --text-light: #94a3b8;    /* Light Editorial Slate */
    
    --max-width: 1200px;
    --border-radius-lg: 8px;  /* Sharp yet clean B2B curves */
    
    /* Soft shadows with a subtle navy tint */
    --shadow-sm: 0 1px 3px rgba(11, 17, 32, 0.02);
    --shadow-md: 0 20px 40px rgba(11, 17, 32, 0.06);
    --shadow-lg: 0 30px 60px rgba(11, 17, 32, 0.08);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.75;
    background-color: var(--bg-main);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: var(--border-radius-lg);
}

/* Typography (Magazine Effect) */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;          /* Massive dominant heading */
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -0.04em;    /* Tight tracking */
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;          /* Strong section header */
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;         /* Card header */
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Header & Navbar */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 2.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* Close gap for single-word feel */
    background: transparent;
    padding: 0.3rem 0;
    border: none;
    box-shadow: none;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-switch-container {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-switch-toggle {
    width: 56px; /* Wider switch track to fit "AI" */
    height: 28px; /* Slightly taller track to match condensed font */
    display: inline-block;
    position: relative;
}

.logo-switch-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    z-index: 1;
    /* Shared 10s infinite loop to toggle background color synchronously with text change */
    animation: logo-toggle-track-loop 10s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-switch-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 24px; /* Capsule-shaped knob to cover "AI" completely */
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 22px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 2; /* Sits above the "AI" text inside the track */
    /* Shared 10s infinite loop to toggle position (uncovering/covering AI) */
    animation: logo-toggle-knob-loop 10s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

/* The letters "AI" rendered inside the switch track, revealed only when active */
.logo-switch-slider::after {
    content: "AI";
    position: absolute;
    left: 9px; /* Centered in the left half of the track */
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-family: 'Roboto Condensed', 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    /* Shared 10s infinite loop to fade in/out synchronously with knob movement */
    animation: logo-toggle-text-loop 10s infinite ease;
}

@keyframes logo-toggle-knob-loop {
    0% {
        transform: translateX(26px); /* Start active */
    }
    1% {
        transform: translateX(0px); /* Flip to left (off) on transition back to SEATEXT */
    }
    6% {
        transform: translateX(26px); /* Slide back to right (on) */
    }
    6%, 49% {
        transform: translateX(26px); /* Active during SEATEXT */
    }
    51% {
        transform: translateX(0px); /* Flip to left (off) on transition to ACTIVATE */
    }
    56%, 99% {
        transform: translateX(26px); /* Slide back to right (on) */
    }
    100% {
        transform: translateX(26px);
    }
}

@keyframes logo-toggle-track-loop {
    0% {
        background-color: var(--primary);
    }
    1% {
        background-color: #cbd5e1; /* Grey track during transition back to SEATEXT */
    }
    6% {
        background-color: var(--primary);
    }
    6%, 49% {
        background-color: var(--primary);
    }
    51% {
        background-color: #cbd5e1; /* Grey track during transition to ACTIVATE */
    }
    56%, 99% {
        background-color: var(--primary);
    }
    100% {
        background-color: var(--primary);
    }
}

@keyframes logo-toggle-text-loop {
    0% {
        opacity: 1;
    }
    1% {
        opacity: 0;
    }
    6% {
        opacity: 1;
    }
    6%, 49% {
        opacity: 1;
    }
    51% {
        opacity: 0;
    }
    56%, 99% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.logo-seatext {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end; /* Right-align to lock the last letter in place */
    width: 145px; /* Stable width to give room for the letters */
    height: 34px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900; /* Extra bold */
    font-size: 2.1rem; /* Sized up to look bigger and bolder */
    font-style: italic; /* Added italic style */
    letter-spacing: -0.025em; /* Negative letter-spacing for condensed punchy appearance */
    color: var(--primary); /* Made blue (Electric Cobalt Blue) */
    line-height: 1;
}

.word-seatext, .word-activate {
    position: absolute;
    right: 0; /* Align flush right next to the switch */
    top: 50%;
    transform: translateY(-50%);
    backface-visibility: hidden;
}

.word-seatext {
    animation: fade-seatext 10s infinite ease-in-out;
}

.word-activate {
    animation: fade-activate 10s infinite ease-in-out;
}

@keyframes fade-seatext {
    0%, 49% {
        opacity: 1;
        visibility: visible;
    }
    50%, 99% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fade-activate {
    0%, 49% {
        opacity: 0;
        visibility: hidden;
    }
    50%, 99% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.nav-links {
    display: flex;
    gap: 1.65rem;
    list-style: none;
    align-items: center;
}

.nav-item-has-menu {
    position: relative;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
}

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

.nav-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0;
}

.nav-menu-trigger::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
}

.nav-item-has-menu:hover .nav-menu-trigger::after,
.nav-item-has-menu:focus-within .nav-menu-trigger::after {
    transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    width: min(760px, calc(100vw - 2rem));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translate(-50%, 8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1rem;
    height: 1rem;
}

.nav-item-has-menu:hover .mega-menu,
.nav-item-has-menu:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-menu a {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    padding: 0.78rem 0.85rem;
    border: 1px solid transparent;
    border-radius: var(--border-radius-lg);
    background: #ffffff;
}

.mega-menu a:hover,
.mega-menu a:focus {
    border-color: var(--border-color);
    background: var(--bg-main);
    color: var(--secondary);
}

.ai-menu-icon {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    background: var(--primary-glow);
    border: 1px solid #dbeafe;
    color: var(--primary);
    line-height: 1;
}

.ai-menu-icon svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
}

.ai-menu-copy {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.mega-menu strong {
    font-size: 0.84rem;
    color: var(--secondary);
    line-height: 1.25;
}

.mega-menu .ai-menu-copy span {
    font-size: 0.73rem;
    line-height: 1.45;
    color: var(--text-muted);
}

/* Hero Eyebrow Label */
.hero-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0;
}

/* Sections Layout */
section {
    padding: 6.5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1; /* Establish stacking context so z-index: -1 child stays above body background */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden; /* Prevent background 3D canvas overflow */
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.hero-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Send to back layer behind text and visual elements */
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.hero h1 span.blue {
    color: var(--primary);
}

.hero-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding-top: 0.4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    letter-spacing: 0.01em;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background: var(--bg-alt);
}

/* KPI Stats */
.hero-stats-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hero-stat-box:hover {
    border-color: var(--border-hover);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 0.15rem;
}

.stat-description {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 0.1rem;
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
}

.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.visual-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.agent-live-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: agent-pulse 1.5s infinite ease-in-out;
}

@keyframes agent-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.variant-editor-mock {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: var(--bg-alt);
    padding: 1.2rem;
    border-radius: var(--border-radius-lg);
}

.editor-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
}

.editor-text {
    font-size: 0.88rem;
    color: var(--text-main);
    font-weight: 500;
    background: #ffffff;
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    border: 1px dashed var(--primary);
    position: relative;
}

.editor-text::after {
    content: 'Agent Writing...';
    position: absolute;
    right: 0.6rem;
    bottom: -1.2rem;
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-val {
    color: var(--primary);
}

/* Partner Logos Ticker */
.ticker-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.2rem 2rem;
}

.ticker-title {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.logo-ticker-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

/* Subtle fading masks on left and right for premium aesthetics */
.logo-ticker-container::before,
.logo-ticker-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-ticker-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-ticker-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-ticker-track {
    display: inline-flex;
    width: max-content;
    animation: logo-ticker-scroll 35s linear infinite;
}

/* Pause scroll on hover */
.logo-ticker-container:hover .logo-ticker-track {
    animation-play-state: paused;
}

.logo-ticker-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3.5rem;
    padding-right: 3.5rem;
}

.logo-ticker-group img {
    height: 25px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.25s ease;
}

/* Individual logo hover styles */
.logo-ticker-group img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

@keyframes logo-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Positioning Section (24/7 Agent Core) */
.core-positioning {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-header h2 {
    margin-top: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    background: #ffffff;
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-lg);
    background: var(--primary-glow);
    border: 1px solid rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.icon-box svg {
    width: 22px;
    height: 22px;
}

/* Agent Scenarios (Problem & Solution Carousel/List) */
.scenarios {
    background: var(--bg-main);
}

.scenarios-list {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.scenario-item {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.scenario-item:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.scenario-item:nth-child(even) .scenario-copy {
    order: 2;
}

.scenario-item:nth-child(even) .scenario-view {
    order: 1;
}

.scenario-copy {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.scenario-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scenario-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.comparison-box {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.comparison-box.active {
    border-color: var(--primary);
    background: var(--primary-glow);
}

.comp-header {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
}

.comp-header.active {
    color: var(--primary);
}

.comp-text {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.5;
}

.comp-metric {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 0.5rem;
}

/* Integrations Stack Section */
.integrations {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.integrations-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.integrations-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    width: 100%;
    padding: 1.5rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.integrations-carousel::-webkit-scrollbar {
    display: none;
}

.integration-card {
    flex: 0 0 160px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    scroll-snap-align: start;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.integration-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: #ffffff;
}

.integration-card img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.integration-card span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Performance & Security Core Benefits */
.benefits {
    background: var(--bg-main);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.benefit-metric {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

/* CTA Footer Block */
.cta-block {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #ffffff;
    text-align: center;
    padding: 5.5rem 2rem;
    border-radius: var(--border-radius-lg);
    max-width: var(--max-width);
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.cta-block h2 {
    color: #ffffff;
    font-size: 2.5rem;
    max-width: 650px;
}

.cta-block p {
    color: #dbeafe;
    font-size: 1.05rem;
    max-width: 500px;
}

/* Footer styling */
footer {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 4.5rem 2rem 2.5rem 2rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 2.4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 3.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-brand p {
    font-size: 0.88rem;
    max-width: 250px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 2rem auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Agent Command Center Layout & Aesthetics --- */
.agent-center {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 6.5rem 2rem;
}
.agent-index-bar {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 4.5rem;
    flex-wrap: wrap;
    position: sticky;
    top: 75px; /* sits right under sticky nav header */
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}
.agent-index-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.agent-index-link:hover {
    color: var(--primary);
    background: var(--bg-alt);
}
.agent-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.agent-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4.5rem;
    align-items: center;
    padding: 5.5rem 0;
    border-bottom: 1px solid var(--border-color);
    scroll-margin-top: 150px; /* offset for sticky navbar + index menu when scrolling */
}
.agent-showcase-row:last-child {
    border-bottom: none;
}
.agent-showcase-row:nth-child(even) {
    grid-template-columns: 1.25fr 1fr;
}
.agent-showcase-row:nth-child(even) .agent-showcase-copy {
    order: 2;
}
.agent-showcase-row:nth-child(even) .agent-showcase-visual {
    order: 1;
}
.agent-showcase-copy {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.agent-showcase-status {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    align-self: flex-start;
}
.agent-showcase-status .agent-live-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: agent-pulse 1.5s infinite ease-in-out;
}
.agent-showcase-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}
.agent-showcase-benefits li {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.agent-showcase-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 800;
}
.agent-showcase-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    border-top: 1px dashed var(--border-color);
    padding-top: 1.5rem;
    margin-top: 0.8rem;
}
.agent-showcase-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.agent-report-card {
    background: #ffffff;
    color: var(--text-main);
    border-radius: var(--border-radius-lg);
    padding: 1.2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid #dbeafe;
    position: relative;
    overflow: hidden;
}
.agent-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}
.agent-report-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex-grow: 1;
}
.agent-report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.agent-report-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}
.agent-report-action {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.agent-report-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
}
.agent-report-text i {
    color: var(--primary);
    font-style: normal;
    font-weight: 700;
}
.browser-mockup {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.browser-header {
    background: var(--bg-alt);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.browser-dots {
    display: flex;
    gap: 0.35rem;
}
.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}
.browser-address {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.75rem;
    padding: 0.2rem 1rem;
    color: var(--text-muted);
    flex-grow: 1;
    max-width: 400px;
    font-family: monospace;
}
.browser-body {
    padding: 1.8rem;
    background: #ffffff;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.preview-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}
.preview-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 0.4s ease;
}
.preview-content img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.preview-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.25;
    max-width: 500px;
    margin: 0 auto;
}
.preview-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 420px;
    margin: 0 auto;
}
.preview-cta {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    align-self: center;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

/* Translation Demo Specifics */
.lang-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.lang-btn {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}
.lang-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.trans-preview-container {
    position: relative;
    width: 100%;
    max-width: 367px;
    margin: 0 auto;
}
.trans-text {
    position: absolute;
    left: 12.5%;
    top: 27.7%;
    width: 60.7%;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.55rem, 2.2vw, 0.95rem);
    font-weight: 700;
    color: #0b1120;
    line-height: 1.25;
    text-align: left;
    transition: opacity 0.3s ease;
}
.trans-flag {
    position: absolute;
    left: 1.9%;
    top: 4.5%;
    width: 9.5%;
    height: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: opacity 0.3s ease;
}

/* Keyword Demo Specifics */
.keyword-search-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.keyword-input-wrapper {
    position: relative;
    flex-grow: 1;
}
.keyword-input {
    width: 100%;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    font-size: 0.8rem;
    outline: none;
    font-family: inherit;
}
.keyword-input:focus {
    border-color: var(--primary);
}
.keyword-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: background 0.2s;
}
.keyword-btn:hover {
    background: var(--primary-hover);
}
.keyword-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-items: center;
}
.preset-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
}
.preset-btn {
    background: var(--bg-alt);
    border: 1px dashed var(--border-color);
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}
.preset-btn:hover {
    background: var(--primary-glow);
    border-color: var(--primary);
    color: var(--primary);
}

/* Bot Refund Click Fraud Block Specifcs */
.traffic-log-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.traffic-row {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 0.6rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    transition: all 0.3s;
}
.traffic-ip {
    font-family: monospace;
    font-weight: 700;
    color: var(--secondary);
}
.traffic-status {
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.68rem;
    text-transform: uppercase;
}
.traffic-status.bot {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}
.traffic-status.human {
    background: var(--primary-glow);
    color: var(--primary);
}
.traffic-refund {
    font-weight: 850;
    color: var(--primary);
}
.refund-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}
.refund-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
    width: 100%;
}
.refund-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}
.refund-btn:active {
    transform: translateY(0);
}
.refund-report-box {
    background: #eff6ff;
    color: var(--text-muted);
    font-family: monospace;
    font-size: 0.75rem;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #bfdbfe;
    white-space: pre-wrap;
    display: none;
    max-height: 120px;
    overflow-y: auto;
    text-align: left;
    line-height: 1.4;
}

/* A/B Test Demo Specifics */
.ab-test-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.variant-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.variant-card.winner {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}
.variant-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 1;
}
.variant-name {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
}
.variant-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}
.variant-card.winner .variant-text {
    color: var(--secondary);
}
.variant-stats {
    text-align: right;
    z-index: 1;
}
.variant-cr {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
}
.variant-card.winner .variant-cr {
    color: var(--primary);
}
.variant-diff {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-light);
}
.variant-card.winner .variant-diff {
    color: var(--primary);
}
.variant-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--border-hover);
    transition: width 1.5s ease-out;
}
.variant-card.winner .variant-progress {
    background: var(--primary);
}

/* SEO / AI Crawler Demo Specifics */
.crawler-demo {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.85rem;
}
.crawler-user-query {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}
.crawler-query-bubble {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-lg);
    color: var(--secondary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}
.crawler-ai-response {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}
.crawler-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.crawler-response-bubble {
    background: #ffffff;
    border: 1px solid var(--primary);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-lg);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    position: relative;
    flex-grow: 1;
}
.crawler-response-bubble i {
    color: var(--primary);
    font-weight: 700;
    font-style: normal;
}
.crawler-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 0.3rem;
    display: block;
}

/* Responsive styles */
@media (max-width: 980px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.85rem 1.2rem;
    }
    .mega-menu {
        position: absolute;
        width: 100%;
        grid-template-columns: 1fr;
        transform: translate(-50%, 8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: none;
        margin-top: 0.5rem;
        padding: 0.7rem;
    }
    .mega-menu::before {
        display: none;
    }
    .agent-showcase-row, .agent-showcase-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 0;
    }
    .agent-showcase-row:nth-child(even) .agent-showcase-copy {
        order: 1;
    }
    .agent-showcase-row:nth-child(even) .agent-showcase-visual {
        order: 2;
    }
    .agent-index-bar {
        position: static;
        margin-bottom: 2rem;
    }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 1.8rem; }
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-copy {
        align-items: center;
    }
    .hero-actions {
        width: 100%;
        justify-content: center;
    }
    .hero-stats-column {
        width: 100%;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .scenario-item, .scenario-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .scenario-item:nth-child(even) .scenario-copy {
        order: 1;
    }
    .scenario-item:nth-child(even) .scenario-view {
        order: 2;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    .features-grid, .benefits-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links > li {
        width: 100%;
    }
    .nav-links a {
        display: inline-flex;
    }
    .nav-links a.btn {
        justify-content: center;
        width: 100%;
    }
    .hero-stat-box {
        text-align: left;
    }
    .scenario-comparison {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   Visual Assets & Animation Layers Design System
   ========================================================================== */

/* Hero Redesign Styles */
.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    perspective: 1000px; /* Gives a slight modern 3D depth */
}

.hero-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: rotateY(-3deg) rotateX(1deg); /* Subtle B2B tilt angle */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-dashboard:hover {
    transform: rotateY(0deg) rotateX(0deg);
    box-shadow: 0 40px 80px rgba(11, 17, 32, 0.12);
}

.dashboard-img {
    width: 100%;
    display: block;
    height: auto;
    border-top: 1px solid var(--border-color);
}

/* Horizontal Hero Stats Bar */
.hero-stats-section {
    width: 100%;
    margin-top: -2rem;
}

.hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-stats-bar .hero-stat-box {
    text-align: left;
    height: 100%;
}

/* Floating Animation Widgets (Removed old slideshow styles to prevent conflicts) */

@keyframes float-widget-y {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Widget Typography & Details */
.widget-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.widget-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.widget-value {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary);
}

.widget-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.widget-status-text {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.widget-icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulsing Status Dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(37, 99, 235, 0.4);
    animation: dot-pulse 1.8s infinite ease-in-out;
}

.pulse-dot.status-purple {
    background: #a855f7;
    box-shadow: 0 0 0 rgba(168, 85, 247, 0.4);
}

@keyframes dot-pulse {
    0% { box-shadow: 0 0 0 0px rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0px rgba(37, 99, 235, 0); }
}

/* Translation Showcase Styling */
.trans-preview-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

/* Wrapper container to crop translated screenshots nicely in browser body */
.agent-showcase-visual .browser-body {
    max-height: 380px;
    overflow-y: auto;
    position: relative;
}

/* Scrollbar styling for browser mockup bodies */
.agent-showcase-visual .browser-body::-webkit-scrollbar {
    width: 6px;
}
.agent-showcase-visual .browser-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

/* Inline SVG Flag Positioning */
.trans-flag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(11, 17, 32, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 10;
    transition: opacity 0.3s ease;
}

/* Google Ads Intent Rewrite Highlighter */
.ads-highlight-box {
    position: absolute;
    top: 25.5%; /* Positioned directly over the mockup headline "Find the perfect office space" */
    left: 8%;
    width: 84%;
    height: 27%;
    border: 1.5px dashed var(--primary);
    background: rgba(37, 99, 235, 0.02);
    border-radius: 6px;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ads-highlight-box.active {
    opacity: 1;
    transform: scale(1);
    animation: highlight-glow-pulse 1.8s ease-in-out infinite alternate;
}

.highlight-tag {
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary);
    color: #ffffff;
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    box-shadow: var(--shadow-sm);
}

.highlight-cursor {
    position: absolute;
    bottom: -8px;
    right: 12%;
    width: 1.5px;
    height: 15px;
    background: var(--primary);
    display: inline-block;
    animation: cursor-blink 0.9s steps(2, start) infinite;
}

@keyframes highlight-glow-pulse {
    0% { border-color: rgba(37, 99, 235, 0.4); box-shadow: 0 0 5px rgba(37, 99, 235, 0.1); background: rgba(37, 99, 235, 0.01); }
    100% { border-color: var(--primary); box-shadow: 0 0 15px rgba(37, 99, 235, 0.3); background: rgba(37, 99, 235, 0.03); }
}

@keyframes cursor-blink {
    to { visibility: hidden; }
}

/* A/B Test Variant Editor Mockup Overlays */
.ab-test-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 17, 32, 0.05);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    z-index: 3;
}

.ab-test-bg-img {
    max-height: 380px;
    object-fit: cover;
    object-position: top;
}

.overlay-dashboard {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 85% !important;
    max-width: 440px !important;
    z-index: 5 !important;
    box-shadow: 0 20px 50px rgba(11, 17, 32, 0.15) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: var(--border-radius-lg) !important;
    padding: 1.2rem !important;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(11, 17, 32, 0.06);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.chatgpt-badge {
    bottom: 15%;
    right: 8%;
    border-color: rgba(168, 85, 247, 0.15);
    animation: float-widget-y 4.5s ease-in-out infinite alternate;
}

/* Responsiveness for visual assets */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-bottom: 2rem;
    }
    
    .hero-copy {
        align-items: center;
    }
    
    .hero-stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stats-section {
        margin-top: 0;
    }
    
    .floating-widget {
        display: none; /* Hide floating widgets on tablets/mobiles to preserve layout */
    }
}

/* ==========================================================================
   Hero Agent Dashboard Console Styles (Three Stacked Widgets)
   ========================================================================== */

.hero-agents-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 0.2rem;
}

.dashboard-header .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: relative;
    animation: dashboard-pulse 1.8s infinite ease-in-out;
}

@keyframes dashboard-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.dashboard-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.agent-widget {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.agent-widget:hover {
    border-color: var(--border-hover);
    box-shadow: 0 6px 16px rgba(11, 17, 32, 0.04);
}

/* Accent Borders on the left */
.widget-translation {
    border-left: 4px solid var(--border-hover); /* Slate Grey */
}

.widget-cro {
    border-left: 4px solid var(--primary); /* Cobalt Blue */
}

.widget-bot {
    border-left: 4px solid var(--text-muted); /* Dark Slate Grey */
}

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

.widget-title-group {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.widget-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
}

.widget-status {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.widget-translation .widget-status {
    background: rgba(71, 85, 105, 0.08);
    color: var(--text-muted);
}

.widget-cro .widget-status {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}

.widget-bot .widget-status {
    background: rgba(71, 85, 105, 0.08);
    color: var(--text-muted);
}

.widget-body {
    display: flex;
    flex-direction: column;
}

/* Feed Text Styles */
.feed-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.4;
    transition: opacity 0.25s ease-in-out;
}

#hero-live-trans-text {
    /* Ensures smooth transitioning */
    min-height: 1.4rem;
}

/* CRO Metric Styling */
.cro-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 0.2rem;
}

.cro-metric-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cro-metric-box .metric-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.widget-cro .cro-metric-box:first-of-type .metric-val {
    color: var(--primary); /* Highlighting in blue for growth */
}

.cro-metric-box .metric-lbl {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Bot Protection feed */
.bot-feed {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bot-feed .feed-subtext {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.bot-feed .highlight-num {
    color: var(--secondary);
    font-weight: 800;
}

.bot-feed .highlight-blue {
    color: var(--primary);
    font-weight: 800;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .hero-agents-dashboard {
        padding: 1rem;
    }
    
    .agent-widget {
        padding: 0.8rem 1rem;
    }
    
    .cro-metrics {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Results Table Styling (Hero Widgets) */
.widget-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
    font-size: 0.76rem;
}

.widget-table th {
    text-align: left;
    padding: 0.4rem 0.5rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.62rem;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0.02em;
}

.widget-table td {
    padding: 0.45rem 0.5rem;
    color: var(--text-main);
    font-weight: 600;
    border-bottom: 1px solid rgba(11, 17, 32, 0.03);
}

.widget-table tr:last-child td {
    border-bottom: none;
}

.widget-table .text-green {
    color: var(--primary);
    font-weight: 800;
}

.widget-table .text-blue {
    color: var(--primary);
    font-weight: 800;
}

/* Results Table Styling (Showcases) */
.showcase-results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    font-size: 0.8rem;
    background: var(--bg-alt);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.showcase-results-table th {
    background: var(--secondary);
    color: #ffffff;
    text-align: left;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.showcase-results-table td {
    padding: 0.55rem 0.75rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.showcase-results-table tr:last-child td {
    border-bottom: none;
}

.showcase-results-table .text-green {
    color: var(--primary);
    font-weight: 800;
}

.showcase-results-table .text-blue {
    color: var(--primary);
    font-weight: 800;
}

/* Centered Hero & Benefits Grid Layout */
.hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding-top: 5rem !important;
    padding-bottom: 2rem !important;
    gap: 1.8rem !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1;
    background-image: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.05), transparent 60%) !important;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border-color) 1.2px, transparent 1.2px);
    background-size: 18px 18px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}

.hero-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
}

.hero h1.hero-headline-centered {
    font-size: 3.8rem !important;
    max-width: 850px !important;
    line-height: 1.15 !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.hero-actions {
    justify-content: center !important;
    padding-top: 0.2rem !important;
}.hero-benefits-grid {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.hero-benefit-card {
    flex: 1; /* equal width distribution */
    min-width: 0; /* allow flex items to shrink below content size */
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* smooth flex expansion transition */
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    box-shadow: var(--shadow-sm);
    position: relative; /* Anchor for absolute child elements */
}

/* Flexbox card expansion on hover (stretches hovered, compresses siblings) */
.hero-benefits-grid:hover .hero-benefit-card:not(:hover) {
    opacity: 0.65; /* dim other cards slightly for focus */
    transform: scale(0.96); /* shrink other cards slightly */
}

.hero-benefit-card:hover {
    flex: 1.45; /* expands card width by ~30% */
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    padding: 2.0rem 1.25rem; /* grows vertically by increasing padding */
    margin-top: -0.5rem; /* shifts upward */
    margin-bottom: -0.5rem; /* balances vertical margins */
}

/* Benefit Card Toggle Switch Animation (only visible on hover, slides to active slowly) */
.hero-benefit-card .switch-toggle {
    position: absolute;
    top: 1.5rem;
    right: 1.25rem;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.hero-benefit-card:hover .switch-toggle {
    opacity: 1;
    transform: scale(1);
}

/* Slow down the internal switch transitions for smoother visibility */
.hero-benefit-card .switch-slider,
.hero-benefit-card .switch-slider:before {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.hero-benefit-card:hover .switch-toggle .switch-slider {
    background-color: var(--primary) !important;
}

.hero-benefit-card:hover .switch-toggle .switch-slider:before {
    transform: translateX(16px) !important;
}

.hero-benefit-card .benefit-stat {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.hero-benefit-card .benefit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
}

.hero-benefit-card .benefit-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsiveness for benefits grid */
@media (max-width: 1024px) {
    .hero-benefits-grid {
        flex-wrap: wrap;
    }
    .hero-benefit-card {
        flex: 1 1 calc(50% - 1rem); /* 2 per row */
    }
}

@media (max-width: 768px) {
    .hero-benefits-grid {
        flex-wrap: wrap;
    }
    .hero-benefit-card {
        flex: 1 1 calc(50% - 1rem); /* 2 per row */
    }
    .hero h1.hero-headline-centered {
        font-size: 3rem !important;
    }
}

@media (max-width: 480px) {
    .hero-benefits-grid {
        flex-direction: column;
    }
    .hero-benefit-card {
        flex: 1 1 100%; /* 1 per row */
    }
    .hero h1.hero-headline-centered {
        font-size: 2.2rem !important;
    }
}

/* Specificity fix for Get Seatext AI button in navigation menu */
.nav-links a.btn-primary {
    color: #ffffff !important;
}
.nav-links a.btn-primary:hover {
    color: #ffffff !important;
}

/* Pricing Section Styles */
.pricing {
    background: var(--bg-main);
    padding: 6.5rem 2rem;
}

.pricing-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
}

/* Left Card - Free Plan */
.free-plan-card {
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.free-plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(11, 17, 32, 0.08);
}

/* Right Card - Paid Plan */
.paid-plan-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
    border: none;
    box-shadow: 0 8px 32px rgba(29, 78, 216, 0.28);
}

.paid-plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(29, 78, 216, 0.4);
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-plan-card .icon-circle {
    background: #e5e7eb;
    color: #6b7280;
}

.paid-plan-card .icon-circle {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

.pricing-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.free-plan-card .pricing-tag {
    background: #e5e7eb;
    color: #374151;
    border: none;
}

.paid-plan-card .pricing-tag {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
}

.pricing-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.free-plan-card .card-title {
    color: #111827;
}

.paid-plan-card .card-title {
    color: #ffffff;
}

.pricing-card .card-body-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.free-plan-card .card-body-text {
    color: #6b7280;
}

.paid-plan-card .card-body-text {
    color: rgba(255,255,255,0.8);
}

.pricing-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
}

.pricing-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.free-plan-card .pricing-bullets li {
    color: #374151;
}

.paid-plan-card .pricing-bullets li {
    color: rgba(255,255,255,0.9);
}

.pricing-bullets li svg {
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-action {
    margin-top: auto;
    padding-top: 8px;
    width: 100%;
}

.pricing-btn {
    width: 100%;
    text-align: center;
}

.paid-plan-card .white-btn {
    background: #ffffff;
    color: #1d4ed8;
    border: 1px solid #ffffff;
}

.paid-plan-card .white-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #111827;
    border-color: rgba(255,255,255,0.9);
}

/* Responsiveness for pricing grid */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Agent grid section header */
.section-header-compact {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.section-header-compact h2 {
    margin-top: 0.2rem;
}

/* Agents Grid Section Divider Title */
.agents-section-header {
    text-align: center;
    max-width: 800px;
    margin: 4.5rem auto 3.5rem auto;
    padding: 0 1.5rem;
}

.agents-section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.agents-section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

/* Agent Grid Layout */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

/* Agent Card Styles */
.agent-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 1.8rem;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 1.5rem;
    align-items: stretch;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border-color);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
}

@media (min-width: 681px) {
    .agent-card.expanded {
        width: calc(200% + 2rem);
        z-index: 50;
        grid-template-columns: 1.1fr 1.3fr;
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
        border-color: var(--primary);
    }
    
    .agent-card:nth-child(even).expanded {
        transform: translateX(calc(-50% - 1rem)) translateY(-4px);
    }
    
    .agent-card:nth-child(odd).expanded {
        transform: translateY(-4px);
    }
}

.agent-card:not(.expanded):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-visual-wrapper {
    background: var(--bg-alt);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    min-height: 240px;
    position: relative;
}

.card-visual-wrapper img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.4s ease;
}

.card-visual-wrapper video,
.card-visual-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    background: var(--bg-alt);
    border: none;
}

.agent-card.expanded .card-visual-wrapper img {
    opacity: 0;
}

.agent-card.expanded .card-visual-wrapper video,
.agent-card.expanded .card-visual-wrapper iframe {
    opacity: 1;
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    justify-content: flex-start;
}

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

.agent-card .card-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.agent-card .live-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: agent-pulse 1.5s infinite ease-in-out;
}

.agent-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
    margin: 0;
}

/* Description transitions */
.desc-container {
    position: relative;
    min-height: 4.5rem;
    width: 100%;
}

.agent-card .card-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.desc-short {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.desc-long {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.agent-card.expanded .desc-short {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.agent-card.expanded .desc-long {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Traffic Promise Telemetry Badge */
.card-promise-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.8rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.agent-card.expanded .card-promise-badge {
    opacity: 1;
    transform: translateY(0);
}

.promise-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: promise-pulse 1.8s infinite ease-in-out;
}

.promise-text {
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

@keyframes promise-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px #10b981;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
        box-shadow: 0 0 12px #10b981, 0 0 4px #10b981;
    }
}

/* Sound Toggle Button overlay */
.sound-toggle-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
    padding: 0;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.agent-card.expanded .sound-toggle-btn {
    opacity: 1;
    transform: scale(1);
}

.sound-toggle-btn:hover {
    background: rgba(37, 99, 235, 0.9);
    border-color: var(--primary);
}

.sound-toggle-btn svg {
    display: block;
}

/* Expanded claims container */
.expanded-claims {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, visibility 0.4s ease;
    border-top: 1px dashed var(--border-color);
    padding-top: 0.8rem;
}

.agent-card.expanded .expanded-claims {
    opacity: 1;
    visibility: visible;
    max-height: 120px;
}

.claim-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.claim-check {
    color: #10b981;
    flex-shrink: 0;
}

/* iOS-style slide toggle switch */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 20px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.switch-toggle input:checked + .switch-slider {
    background-color: var(--primary); /* Blue active */
}

.switch-toggle input:checked + .switch-slider:before {
    transform: translateX(16px);
}

/* 1. Google Ads Intent Adaptation visual helpers */
.mini-browser {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.35rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
}

.browser-header-dots {
    display: flex;
    gap: 3px;
}

.browser-header-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-light);
}

.keyword-pill {
    font-weight: 700;
    color: var(--text-muted);
}

.keyword-pill span {
    color: var(--primary);
    background: var(--primary-glow);
    padding: 1px 4px;
    border-radius: 2px;
}

.cvr-pill {
    font-weight: 800;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 1px 4px;
    border-radius: 2px;
}

/* 2. Bot Protection visual helpers */
.mini-traffic-log {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mini-traffic-log .log-entry {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.4rem 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.mini-traffic-log .log-entry .ip {
    font-family: monospace;
    color: var(--secondary);
}

.mini-traffic-log .log-entry .badge-status {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.6rem;
    text-transform: uppercase;
}

.mini-traffic-log .log-entry .refund-amt {
    color: var(--primary);
    font-weight: 800;
}

.mini-traffic-log .dispute-box {
    text-align: center;
    background: var(--primary-glow);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.35rem;
    border-radius: 4px;
    border: 1px dashed rgba(37, 99, 235, 0.3);
}

/* 3. Translation visual helpers */
.lang-selector-mini {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.lang-selector-mini span {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
    color: var(--text-muted);
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.lang-selector-mini span.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* 4. A/B testing visual helpers */
.mini-ab-test {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mini-ab-test .ab-row {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.mini-ab-test .ab-row .lbl {
    width: 60px;
    z-index: 1;
}

.mini-ab-test .ab-row .bar-fill {
    height: 100%;
    position: absolute;
    left: 68px;
    top: 0;
    background: var(--bg-alt);
    z-index: 0;
    border-radius: 0 4px 4px 0;
}

.mini-ab-test .ab-row.winner .bar-fill {
    background: rgba(37, 99, 235, 0.08);
}

.mini-ab-test .ab-row .val {
    margin-left: auto;
    z-index: 1;
}

.mini-ab-test .ab-row.winner .val {
    color: var(--primary);
    font-weight: 800;
}

/* 5. ChatGPT AISO visual helpers */
.mini-chatgpt {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.72rem;
    text-align: left;
}

.mini-chatgpt .query {
    align-self: flex-end;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.6rem;
    border-radius: 8px 8px 0 8px;
    font-weight: 600;
    color: var(--secondary);
}

.mini-chatgpt .reply {
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid var(--primary);
    padding: 0.35rem 0.6rem;
    border-radius: 8px 8px 8px 0;
    color: var(--secondary);
}

.mini-chatgpt .reply i {
    color: var(--primary);
    font-style: normal;
    font-weight: 700;
}

/* 6. CTA Card visual helpers */
.cta-card {
    border: 1.5px solid var(--primary);
    background: var(--primary-glow);
    justify-content: center;
}

.cta-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    height: 100%;
    justify-content: center;
}

.icon-circle-large {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cta-card .card-title {
    font-size: 1.25rem !important;
}

.cta-card .card-desc {
    max-width: 280px;
}

.cta-action {
    width: 100%;
    margin-top: 0.4rem;
}

.cta-action .btn {
    width: 100%;
}

/* Responsive grid adjustments */
@media (max-width: 860px) {
    .agent-card {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .card-visual-wrapper {
        min-height: 220px;
    }
}

@media (max-width: 680px) {
    .agent-grid {
        grid-template-columns: 1fr;
    }
    .pricing {
        padding: 4rem 1.5rem;
    }
}

/* 6. AI SEO Schema visual helper */
.mini-schema-snippet {
    background: #0f172a;
    color: #38bdf8;
    font-family: monospace;
    font-size: 0.65rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 0.4rem;
    text-align: left;
    overflow-x: auto;
    white-space: nowrap;
}

/* 8. Pixel blocking visual helper */
.mini-shield-alert {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
    box-shadow: var(--shadow-sm);
}

/* 9. Server Shield form input lock visual helper */
.mini-form-lock {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
}

.form-input-lock {
    background: #ffffff;
    border: 1px solid var(--border-color);
    width: 100%;
    height: 32px;
    border-radius: 4px;
    padding: 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-input-lock .dot {
    width: 25%;
    height: 4px;
    background: var(--bg-alt);
    border-radius: 2px;
}

.form-input-lock .lock-icon {
    font-size: 0.75rem;
}

.mini-form-lock .txt {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 2px 6px;
    border-radius: 3px;
}

/* 11. Smart Routing visual helper */
.mini-routing-map {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.mini-routing-map .node {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--text-muted);
}

.mini-routing-map .node.primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mini-routing-map .arrow {
    color: var(--primary);
    font-weight: 850;
}/* --- Explanatory Onboarding Step Banner Styles --- */
.onboarding-steps {
    display: flex;
    align-items: stretch; /* Make all cards same height */
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto 4.5rem auto;
    width: 100%;
    max-width: var(--max-width);
}

.onboarding-step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem;
    flex: 1 1 0px; /* Equal weight & width for all cards */
    width: 0;      /* Enforce strict equal flex division */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    min-height: 384px; /* Increased 20% from 320px */
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.onboarding-step-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.35);
}

.step-visual {
    width: 100%;
    height: 216px; /* Increased 20% from 180px */
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.06) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    box-shadow: inset 0 2px 4px rgba(11, 17, 32, 0.01);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.step-text {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.3rem;
    padding: 0 0.5rem;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500; /* Medium font weight */
    color: var(--text-muted); /* Muted label look */
    line-height: 1.25;
    margin-bottom: 0.1rem;
}

.step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem; /* 3 points bigger than step-title */
    font-weight: 500; /* Medium font weight */
    color: #0b1120; /* Black */
    line-height: 1.45;
}

.onboarding-logos-row {
    position: relative;
    width: 100%;
    height: 100%;
}

.onboard-logo-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(11, 17, 32, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 105px;
    height: 42px;
}

/* Staggered placements for 5 logos: WordPress (center), Shopify (top-right), Wix (bottom-right), Webflow (top-left), Magento (bottom-left) */
.onboard-logo-card:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.onboard-logo-card:nth-child(2) {
    top: 15px;
    right: 15px;
    z-index: 1;
}

.onboard-logo-card:nth-child(3) {
    bottom: 15px;
    right: 15px;
    z-index: 1;
}

.onboard-logo-card:nth-child(4) {
    top: 15px;
    left: 15px;
    z-index: 1;
}

.onboard-logo-card:nth-child(5) {
    bottom: 15px;
    left: 15px;
    z-index: 1;
}

/* Staggered hover animations */
.onboard-logo-card:nth-child(1):hover {
    transform: translate(-50%, -50%) translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(11, 17, 32, 0.06);
    border-color: var(--border-hover);
    z-index: 3;
}

.onboard-logo-card:nth-child(2):hover,
.onboard-logo-card:nth-child(3):hover,
.onboard-logo-card:nth-child(4):hover,
.onboard-logo-card:nth-child(5):hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(11, 17, 32, 0.06);
    border-color: var(--border-hover);
    z-index: 3;
}

.onboard-logo-img {
    height: 20px !important;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    object-fit: contain;
}

.logo-wordpress {
    height: 27px !important; /* +35% scale increase */
}

.logo-webflow {
    height: 15px !important; /* -25% scale reduction */
}

.onboard-logo-card:hover .onboard-logo-img {
    opacity: 1;
}

.onboarding-arrow-container {
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 0.5rem;
}

.onboarding-arrow-container svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5px;
}

.agent-activation-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.85rem;
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: 0 4px 16px rgba(11, 17, 32, 0.04);
    transition: all 0.25s ease;
}

.agent-activation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 17, 32, 0.08);
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.agent-avatar {
    width: 32px;
    height: 32px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.agent-label {
    font-size: 0.6rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.agent-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.onboarding-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: indicator-pulse 1.8s infinite ease-in-out;
}

@keyframes indicator-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.indicator-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

.onboarding-metrics-row {
    display: flex;
    gap: 0.8rem;
    width: 100%;
}

.onboard-metric-card {
    flex: 1;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.6rem 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    box-shadow: var(--shadow-sm);
}

.onboard-metric-card.highlight-blue {
    border-color: rgba(37, 99, 235, 0.2);
    background: rgba(37, 99, 235, 0.02);
}

.onboard-metric-card.highlight-green {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.02);
}

.onboard-metric-card .metric-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.onboard-metric-card.highlight-blue .metric-val {
    color: var(--primary);
}

.onboard-metric-card.highlight-green .metric-val {
    color: #10b981;
}

.onboard-metric-card .metric-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
}

/* Sparkline visualization styles */
.sparkline-container {
    width: 100%;
    height: 40px;
    margin-bottom: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.metric-sparkline {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.sparkline-path {
    transition: none;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

@media (max-width: 980px) {
    .onboarding-steps {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .onboarding-step-card {
        width: 100%;
        max-width: 420px;
        min-height: auto;
        flex: none; /* override desktop flex properties */
    }
}

.cta-switch-visual {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.cta-switch-visual .switch-toggle {
    transform: scale(1.5);
}

.cta-switch-visual .switch-slider {
    background-color: rgba(255, 255, 255, 0.35);
}

.cta-switch-visual .switch-toggle input:checked + .switch-slider {
    background-color: #ffffff;
}

.cta-switch-visual .switch-slider:before {
    background-color: var(--secondary);
}

/* Agent Card Slideshow wrapper styles */
.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-wrapper .slideshow-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

.slideshow-wrapper .slideshow-img.active {
    opacity: 1;
}

/* Mobile homepage repair pass: keep the static site readable before fixing every page. */
.mobile-nav-toggle,
.mobile-nav-button {
    display: none;
}

@media (max-width: 980px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    section {
        width: 100%;
        padding: 3.5rem 1.25rem;
    }

    header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar {
        position: relative;
        flex-direction: row;
        align-items: center;
        gap: 0;
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .logo {
        max-width: calc(100% - 56px);
        transform: scale(0.78);
        transform-origin: left center;
        margin-left: -0.35rem;
    }

    .logo:hover {
        transform: scale(0.78);
    }

    .mobile-nav-toggle {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .mobile-nav-button {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        margin-left: auto !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: #ffffff;
        cursor: pointer;
    }

    .mobile-nav-button span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--secondary);
        transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: absolute !important;
        top: calc(100% + 1px) !important;
        left: 0 !important;
        right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 1rem !important;
        background: #ffffff;
        border-bottom: 1px solid transparent;
        box-shadow: none;
        transition: max-height 0.22s ease, padding 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .mobile-nav-toggle:checked ~ .nav-links {
        max-height: calc(100dvh - 70px) !important;
        overflow-y: auto !important;
        padding: 0.65rem 1rem 1rem !important;
        border-bottom-color: var(--border-color);
        box-shadow: var(--shadow-md);
    }

    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links > li:last-child {
        border-bottom: 0;
    }

    .nav-links a {
        display: flex !important;
        width: 100% !important;
        min-height: 46px !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 0.75rem 0 !important;
        font-size: 0.92rem !important;
    }

    .nav-links a.btn {
        justify-content: center;
        min-height: 44px;
        margin-top: 0.75rem;
        padding: 0.72rem 1rem !important;
        font-size: 0.88rem !important;
    }

    .nav-item-has-menu .mega-menu {
        display: none !important;
    }

    .nav-menu-trigger::after {
        display: none;
    }

    .hero {
        display: flex !important;
        min-height: auto;
        padding: 3rem 1.25rem 2rem !important;
        gap: 1.35rem !important;
        overflow: hidden;
    }

    .hero::before,
    .hero-3d-bg {
        opacity: 0.35;
    }

    .hero-copy {
        width: 100%;
        gap: 0.85rem !important;
    }

    .hero-eyebrow {
        font-size: 0.68rem;
        line-height: 1.4;
    }

    .hero h1.hero-headline-centered {
        width: 100%;
        max-width: 22rem !important;
        font-size: clamp(2rem, 10vw, 2.55rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.035em !important;
        text-wrap: balance;
    }

    .hero h1.hero-headline-centered .switch-toggle {
        display: block !important;
        margin: 0 auto 0.75rem !important;
        transform: scale(0.95) !important;
        top: 0 !important;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.7rem;
        padding-top: 0 !important;
    }

    .hero-actions .btn {
        width: min(100%, 21rem);
        min-height: 46px;
        padding: 0.78rem 1rem;
        white-space: normal;
        text-align: center;
        line-height: 1.25;
    }

    .hero-benefits-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-top: 0.75rem;
    }

    .hero-benefit-card,
    .hero-benefit-card:hover {
        flex: none;
        transform: none;
        margin: 0;
        padding: 1rem;
    }

    .hero-benefit-card .switch-toggle {
        display: none;
    }

    .hero-benefit-card .benefit-stat {
        font-size: 1.9rem;
    }

    .hero-benefit-card .benefit-desc {
        font-size: 0.82rem;
    }

    .subpage-hero,
    .ab-hero,
    .personalization-hero-inner,
    .source-hero-inner,
    .chatgpt-hero-inner {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
        padding: 2rem 1.25rem 2rem !important;
        text-align: left !important;
    }

    .subpage-hero .hero-copy,
    .ab-hero-copy,
    .personalization-hero-copy,
    .source-hero-copy,
    .chatgpt-hero-copy {
        width: 100% !important;
        max-width: 100% !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .subpage-hero h1,
    .ab-hero-copy h1,
    .personalization-hero h1,
    .source-hero-copy h1,
    .chatgpt-hero h1 {
        width: 100% !important;
        max-width: 100% !important;
        font-size: clamp(1.85rem, 8vw, 2.25rem) !important;
        line-height: 1.12 !important;
        letter-spacing: -0.035em !important;
        text-align: left !important;
        margin: 0.65rem 0 0.85rem !important;
        text-wrap: balance;
    }

    .subpage-hero p,
    .ab-hero-copy p,
    .personalization-hero p,
    .source-hero-copy p,
    .chatgpt-hero p {
        max-width: 100% !important;
        font-size: 0.98rem !important;
        line-height: 1.65 !important;
    }

    .subpage-hero .hero-actions,
    .ab-hero .hero-actions,
    .personalization-hero .hero-actions,
    .source-hero .hero-actions,
    .chatgpt-hero .hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        width: 100% !important;
        gap: 0.7rem !important;
    }

    .subpage-hero .hero-actions .btn,
    .ab-hero .hero-actions .btn,
    .personalization-hero .hero-actions .btn,
    .source-hero .hero-actions .btn,
    .chatgpt-hero .hero-actions .btn {
        width: 100% !important;
        min-height: 46px !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.25 !important;
    }

    .solution-hero-card,
    .ab-hero-panel,
    .hero-proof,
    .hero-proof-row,
    .source-hero-visual,
    .chatgpt-hero-visual,
    .simple-benefit-grid,
    .premium-ab-hero,
    .premium-hero-variants,
    .hero-stats {
        width: 100% !important;
        max-width: 100% !important;
    }

    .solution-hero-card,
    .ab-hero-panel,
    .hero-proof,
    .hero-proof-card,
    .simple-benefit-card {
        padding: 1rem !important;
        border-radius: 8px !important;
    }

    .ab-proof-row,
    .hero-proof-row,
    .hero-stats,
    .premium-hero-variants {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .inline-ai-switch {
        width: 46px !important;
        height: 24px !important;
        vertical-align: -0.18rem !important;
    }

    .inline-ai-switch::before {
        width: 18px !important;
        height: 18px !important;
    }

    .ticker-section {
        padding: 2rem 1rem !important;
    }

    .logo-ticker-container::before,
    .logo-ticker-container::after {
        width: 34px;
    }

    .agent-center,
    .pricing,
    .integrations,
    .benefits {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}
