/* ============================================
   FLUEN AI - B2B ENTERPRISE REDESIGN PROTOTYPE
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
    --navy: #3d405b;
    --navy-light: #4a4d6a;
    --charcoal: #2d3748;
    --teal: #81B29A;
    --teal-light: #ade1c7;
    --teal-dark: #6f9e87;
    --bg-light: #f7f8fa;
    --bg-white: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

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

.desktop-only { display: inline; }

/* --- HEADER --- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    transition: all 0.3s ease;
}

#header .logo-dark { display: none; }
#header .logo-light { display: block; height: 32px; }

#header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

#header.scrolled .logo-dark { display: block; }
#header.scrolled .logo-light { display: none; }

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img { height: 32px; }

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-nav a {
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #fff;
}

#header.scrolled .header-nav a {
    color: var(--text-secondary);
}

#header.scrolled .header-nav a:hover {
    color: var(--text-primary);
}

.nav-login {
    font-weight: 500;
}

.header-nav .btn-primary-cta {
    color: #fff !important;
}

#header.scrolled .header-nav .btn-primary-cta {
    color: #fff !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

#header.scrolled .mobile-menu-toggle {
    color: var(--text-primary);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 99;
    padding: 5rem 2rem 2rem;
}

body.menu-open .mobile-menu {
    display: block;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 1.1rem;
}

.mobile-menu-inner a {
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* --- MEGA MENU --- */

/* Trigger wrapper — sits in the nav flow */
.nav-mega-trigger {
    position: static;
    display: flex;
    align-items: center;
}

.nav-mega-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.mega-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.nav-mega-trigger.open .mega-chevron {
    transform: rotate(180deg);
}

/* Panel — constrained-width, centered dropdown */
.mega-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    width: max-content;
    max-width: min(960px, calc(100vw - 2rem));
    background: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 101;
    border-top: 3px solid var(--teal);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
}

.nav-mega-trigger.open .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-panel-inner {
    display: grid;
    gap: 0;
}

.mega-panel--features .mega-panel-inner {
    grid-template-columns: repeat(3, 1fr);
}

.mega-panel--usecases .mega-panel-inner {
    grid-template-columns: repeat(2, 1fr);
}

/* Columns — alternating tinted backgrounds with left accent */
.mega-col {
    padding: 1.5rem 1.25rem;
    border-left: 2px solid var(--teal);
}

.mega-col:first-child {
    border-left: none;
}

/* Alternating backgrounds — odd = light teal, even = light navy */
.mega-col:nth-child(odd) {
    background: rgba(129,178,154,0.04);
}

.mega-col:nth-child(even) {
    background: rgba(61,64,91,0.03);
    border-left-color: var(--navy);
}

/* Navy-tinted icons + header for even columns */
.mega-col:nth-child(even) .mega-item-icon {
    background: rgba(61,64,91,0.10);
    color: var(--navy);
}

.mega-col:nth-child(even) .mega-col-header {
    color: var(--navy);
}

/* Column headers */
.mega-col-header {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

/* Individual items — compact card feel */
.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.6rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    color: var(--text-primary) !important;
}

.mega-item:hover {
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
    color: var(--text-primary) !important;
}

.mega-item-icon {
    width: 32px;
    height: 32px;
    padding: 7px;
    background: rgba(129,178,154,0.12);
    border-radius: 50%;
    color: var(--teal);
    flex-shrink: 0;
}

.mega-item-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mega-item-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

.mega-item-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 0.1rem;
}

/* Backdrop */
.mega-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.08);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
    pointer-events: none;
}

.mega-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Color overrides — mega panel always white/dark text regardless of header state */
#header .nav-mega-trigger .mega-item,
#header.scrolled .nav-mega-trigger .mega-item {
    color: var(--text-primary) !important;
}

#header .nav-mega-trigger .mega-item:hover,
#header.scrolled .nav-mega-trigger .mega-item:hover {
    color: var(--text-primary) !important;
}

#header .nav-mega-trigger .mega-item-title,
#header.scrolled .nav-mega-trigger .mega-item-title {
    color: var(--text-primary);
}

#header .nav-mega-trigger .mega-item-sub,
#header.scrolled .nav-mega-trigger .mega-item-sub {
    color: var(--text-muted);
}

#header .nav-mega-trigger .mega-col-header,
#header.scrolled .nav-mega-trigger .mega-col-header {
    color: var(--teal);
}

/* Navy header for even columns */
#header .mega-col:nth-child(even) .mega-col-header,
#header.scrolled .mega-col:nth-child(even) .mega-col-header {
    color: var(--navy);
}

/* Mobile accordion */
.mobile-accordion {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-family: var(--font-sans);
    padding: 0.5rem 0;
    cursor: pointer;
}

.mobile-accordion-chevron {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.mobile-accordion-toggle.open .mobile-accordion-chevron {
    transform: rotate(180deg);
}

.mobile-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0.25rem;
}

.mobile-accordion-body.open {
    max-height: 800px;
}

.mobile-acc-header {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-light);
    margin-top: 0.75rem;
    margin-bottom: 0.35rem;
    padding: 0;
}

.mobile-accordion-body a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding: 0.4rem 0 !important;
    border-bottom: none !important;
}

.mobile-accordion-body a svg {
    width: 16px;
    height: 16px;
    color: var(--teal-light);
    flex-shrink: 0;
}

/* Mega menu responsive — tablet */
@media (max-width: 1200px) and (min-width: 769px) {
    .mega-panel--features .mega-panel-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .mega-panel--usecases .mega-panel-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mega menu responsive — mobile: hide desktop panels */
@media (max-width: 768px) {
    .mega-panel {
        display: none !important;
    }
    .mega-backdrop {
        display: none !important;
    }
    .nav-mega-trigger {
        display: none;
    }
}

/* --- BUTTONS --- */
.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    border: 2px solid var(--teal);
}

.btn-primary-cta svg {
    width: 16px;
    height: 16px;
}

.btn-primary-cta:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(129,178,154,0.3);
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgba(255,255,255,0.9);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.25s ease;
}

.btn-secondary-cta:hover {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.text-link {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    transition: all 0.2s;
}

.text-link svg {
    width: 16px;
    height: 16px;
}

.text-link:hover {
    color: var(--teal-dark);
}

/* --- HERO --- */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

/* Subtle geometric grid overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    color: var(--teal-light);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Locale badge */
@keyframes locale-badge-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.locale-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 0.45rem 1.1rem;
    margin: 0 auto 1.5rem;
    animation: locale-badge-in 0.5s ease-out both;
}

.locale-badge-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.locale-badge-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-partners {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: -2rem;
}

.partners-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.8rem;
}

.partner-logos img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.2s;
}

.partner-logos img.logo-heavy {
    height: 15px;
}

.partner-logos img.logo-tall {
    height: 22px;
}

.partner-logos img.logo-slim {
    height: 17px;
}

.partner-logos img.logo-bumped {
    height: 23px;
}

.partner-logos img:hover {
    opacity: 0.65;
}

/* Hero visual with glow and float */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0.5rem auto 0;
    aspect-ratio: 2.2 / 1;
    overflow: visible;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(129,178,154,0.35) 0%, rgba(129,178,154,0.12) 35%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Screenshot frame */
.screenshot-frame {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.screenshot-frame.subtle {
    box-shadow: var(--shadow-md);
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-visual .screenshot-frame {
    position: absolute;
    width: 58%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
}

/* Hero side videos */
.hero-side-vid {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    top: 50%;
    transition: transform 0.05s linear;
    will-change: transform;
}

.hero-side-vid video {
    display: block;
    width: 100%;
    height: auto;
}

/* Outer left (vid04) — background, partially obscured */
.hero-side-vid--top-left {
    width: 24%;
    left: -10%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Inner left (vid02) — foreground, bigger */
.hero-side-vid--bottom-left {
    width: 30%;
    left: -2%;
    transform: translateY(-50%);
    z-index: 4;
}

/* Outer right (vid05) — background, partially obscured */
.hero-side-vid--top-right {
    width: 23%;
    right: -10%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Inner right (vid01) — foreground, bigger */
.hero-side-vid--bottom-right {
    width: 30%;
    right: -4%;
    transform: translateY(-50%);
    z-index: 4;
}

/* --- STATS STRIP --- */
.stats-strip {
    background: #f0f4f8;
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 0.5rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* --- SECTION SHARED --- */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--teal);
    text-align: center;
    margin-bottom: 0.5rem;
}

/* --- ENGINE TRUST STRIP --- */
.engine-strip {
    background: var(--bg-white);
    padding: 3.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.engine-strip-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.engine-strip-heading {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
}

.engine-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.engine-logos img {
    height: 24px;
    max-width: 140px;
    width: auto;
    opacity: 0.45;
    transition: opacity 0.2s;
}

.engine-logos img:hover {
    opacity: 0.75;
}

.engine-strip-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* --- WORKFLOW --- */
.workflow {
    background: var(--bg-light);
    padding: 5rem 2rem;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.workflow-title-block {
    text-align: center;
    margin-bottom: 3rem;
}

.workflow-title-block h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    transition: background 0.25s, color 0.25s;
}

.step-card:hover .step-icon {
    background: var(--navy);
    color: #fff;
}

.step-card:hover .step-icon.accent {
    background: var(--teal);
    color: #fff;
}

.step-card:hover .step-icon.green {
    background: var(--teal-dark);
    color: #fff;
}

.step-icon.accent { color: var(--teal); }
.step-icon.green { color: var(--teal-dark); }

.step-card h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- FEATURES --- */
.features {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
}

.features .section-label {
    margin-bottom: 3rem;
    color: var(--teal-light);
}

.features .feature-text h3 {
    color: #fff;
}

.features .feature-text p {
    color: rgba(255,255,255,0.7);
}

/* Cue mock — dark theme overrides */
.features .cue-mock {
    color: rgba(255,255,255,0.85);
}

.features .cue-mock-source {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    border-right-color: var(--teal);
}

.features .cue-mock-source-text {
    color: rgba(255,255,255,0.6);
}

.features .cue-mock-cue {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 1px 1px 4px rgba(0,0,0,0.25);
}

.features .cue-mock-ts,
.features .cue-mock-ts-bottom {
    color: rgba(255,255,255,0.4);
}

.features .cue-mock-info {
    color: rgba(255,255,255,0.35);
}

.features .cue-mock-index {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

.features .cue-mock-cpl {
    color: rgba(255,255,255,0.35);
}

.features .cue-mock-text {
    color: rgba(255,255,255,0.9);
}

.features .cue-mock-badge {
    background: rgba(129,178,154,0.15);
    color: var(--teal-light);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

/* Alternating feature row backgrounds */
.feature-row:nth-child(odd) {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-text h3 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-text-inner.bordered {
    border-left: 3px solid var(--teal);
    padding-left: 1.5rem;
}

/* --- CUE MOCK (inline editor replica — matches Fluen Studio styles) --- */
.cue-mock {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: transparent;
    overflow: hidden;
    font-size: 13px;
    color: #333;
}

.cue-mock-par {
    display: flex;
    align-items: stretch;
    padding: 0;
    gap: 4px;
    margin-bottom: 4px;
}

.cue-mock-source {
    width: 30%;
    padding: 10px;
    margin: 3px;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #E7ECF0;
    border-right: 2px solid #81b29a;
    border-radius: 5px;
}

.cue-mock-source-text {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: #5f5f5f;
    text-align: left;
}

.cue-mock-targets {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.cue-mock-cue {
    background: #fff;
    border: 1px solid #E7ECF0;
    border-radius: 5px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
    margin: 2px;
    padding: 4px 6px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.cue-mock-ts,
.cue-mock-ts-bottom {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    line-height: 1;
    color: #888;
    padding: 2px 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cue-mock-body {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

.cue-mock-info {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    flex-shrink: 0;
    font-size: 10px;
    color: #bbb;
    white-space: nowrap;
    text-align: left;
}

.cue-mock-index {
    background: #f4f1de;
    padding: 1px 4px;
    border-radius: 4px;
    color: #333;
    font-weight: 500;
    font-size: 10px;
}

.cue-mock-cpl {
    font-size: 10px;
    color: #bbb;
    line-height: 1.35;
}

.cue-mock-text {
    flex: 1;
    text-align: center;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 500;
    color: #333;
    padding: 2px 0;
    line-height: 1.5;
    min-width: 0;
}

.cue-mock-text p {
    margin: 0;
}

.cue-mock-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.65rem 0;
}

.cue-mock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(129,178,154,0.08);
    padding: 0.25rem 0.55rem;
    border-radius: 20px;
}

.cue-mock-badge i {
    font-size: 0.6rem;
}

/* --- API SECTION --- */
.api-section {
    background: var(--bg-white);
    padding: 5rem 2rem;
    border-top: 1px solid var(--border-light);
}

.api-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.api-label {
    text-align: left;
}

.api-text h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.api-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.api-code {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    overflow-x: auto;
    box-shadow: var(--shadow-lg);
}

.api-code pre {
    margin: 0;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    white-space: pre;
}

.api-code code {
    font-family: inherit;
}

.code-keyword {
    color: var(--teal-light);
    font-weight: 600;
}

.code-string {
    color: #f6c177;
}

/* --- TESTIMONIAL --- */
.testimonial {
    padding: 1rem 2rem 4rem;
    background: var(--bg-white);
}

.testimonial-block {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 6rem;
    color: var(--teal);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -2rem;
}

.testimonial-block blockquote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-attribution {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- APPLICATIONS --- */
.applications {
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.applications-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3rem;
}

/* Gradient highlight text */
.highlight {
    background: linear-gradient(135deg, var(--teal) 0%, #4a90d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.app-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: left;
    transition: all 0.25s ease;
    border-bottom: 3px solid transparent;
}

.app-card:hover {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--teal);
    transform: translateY(-3px);
}

.app-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    transition: color 0.25s;
}

.app-card:hover .app-card-icon {
    color: var(--teal);
}

.app-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

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

.app-more {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* --- LANGUAGES --- */
.languages {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.languages-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3rem;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.lang-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.25s, transform 0.25s;
}

.lang-card:hover {
    box-shadow: var(--shadow-sm);
    transform: scale(1.03);
}

.lang-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.lang-flags {
    display: flex;
    gap: 0.4rem;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.lang-more {
    color: var(--teal);
    font-weight: 600;
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-hero .section-inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- FEATURED LANGUAGES GRID --- */
.lang-featured-section {
    padding: 3rem 2rem 1rem;
}

.lang-featured-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.lang-featured-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-featured-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.lang-featured-chip .flag-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

/* --- LANGUAGE TABLE --- */
.lang-table-section {
    padding: 2rem 2rem 5rem;
}

.lang-table-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.lang-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.lang-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--text-muted);
    padding: 0.65rem 1rem;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-light);
    text-align: left;
}

.lang-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background 0.15s;
}

.lang-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.lang-table tbody tr:hover {
    background: #eef2f7;
}

.lang-table td {
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.lang-table td:first-child {
    font-weight: 600;
    color: var(--navy);
}

.lang-table td:last-child {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- BOTTOM CTA --- */
.bottom-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    position: relative;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.bottom-cta .section-inner {
    position: relative;
    z-index: 1;
}

.bottom-cta h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.cta-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-cta .text-link {
    display: flex;
    justify-content: center;
    color: rgba(255,255,255,0.7);
}

.bottom-cta .text-link:hover {
    color: #fff;
}

/* --- FOOTER --- */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.footer-col b {
    color: rgba(255,255,255,0.95);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.footer-col a {
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
    font-size: 0.83rem;
}

.footer-col a:hover {
    color: rgba(255,255,255,0.9);
}

.footer-cta-col {
    gap: 0;
}

.footer-cta-box {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.footer-cta-box span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-cta-box .btn-primary-cta,
.footer-cta-box .btn-secondary-cta {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
}

.footer-cta-box .btn-secondary-cta {
    border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
}

.footer-cta-box .btn-secondary-cta:hover {
    border-color: rgba(255,255,255,0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-bottom-left img {
    display: block;
    position: relative;
    top: -5px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.footer-bottom-right a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom-right a:hover {
    color: rgba(255,255,255,0.8);
}

.footer-bottom-right span {
    opacity: 0.3;
}

/* --- PRICING --- */
.pricing-section {
    padding: 4rem 2rem 2rem;
    background: var(--bg-white);
}

.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}

.toggle-label.active {
    color: var(--text-primary);
}

.pricing-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--border-medium);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.25s;
    padding: 0;
}

.pricing-toggle.active {
    background: var(--teal);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: transform 0.25s;
}

.pricing-toggle.active .toggle-knob {
    transform: translateX(24px);
}

.toggle-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal);
    background: rgba(129,178,154,0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Pricing cards grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1050px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pricing-card.muted {
    background: var(--bg-light);
    border-color: var(--border-light);
}

.pricing-card.muted .pricing-card-header h3 {
    color: var(--text-secondary);
}

.pricing-card.muted .pricing-price {
    color: var(--text-secondary);
}

.pricing-card.featured {
    border-top: 3px solid var(--teal);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.9rem;
    border-radius: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pricing-card-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.pricing-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.instant-access-note {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-price-wrap {
    margin-bottom: 1rem;
}

.pricing-price {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
}

.pricing-price .currency-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
    margin-right: 0.1rem;
}

.pricing-price .pricing-cents {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
}

.pricing-period {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-term {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    min-height: 1.3em;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1rem;
}

.pricing-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    line-height: 1.4;
}

.pricing-features li i {
    color: var(--teal);
    font-size: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-topup {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-light);
}

.pricing-topup + .btn-pricing {
    border-top: none;
    padding-top: 0.75rem;
}

.btn-pricing {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    font-weight: 500;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Seat selector */
.seat-selector {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
    padding: 0.4rem 0;
}

.seat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.seat-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    line-height: 1;
}

.seat-btn:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.seat-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    min-width: 24px;
    text-align: center;
}

/* Enterprise banner */
.enterprise-banner {
    background: var(--navy);
    padding: 3rem 2rem;
}

.enterprise-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.enterprise-text h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.enterprise-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 600px;
}

.enterprise-banner .btn-secondary-cta {
    flex-shrink: 0;
}

/* Capabilities strip */
.capabilities-strip {
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.capability-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--teal);
    flex-shrink: 0;
}

.capability-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.15rem;
}

.capability-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Compare plans table */
.compare-section {
    padding: 5rem 2rem;
}

.compare-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2.5rem;
}

.compare-table-wrap {
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.compare-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--border-light);
    text-align: center;
    position: sticky;
    top: 70px;
    background: var(--bg-white);
    z-index: 2;
}

.compare-table thead th:first-child {
    text-align: left;
}

.compare-table thead th.featured-col {
    color: var(--teal);
}

.compare-table td:nth-child(3),
.compare-table td:nth-child(4) {
    background: rgba(129,178,154,0.04);
}

.compare-table tbody tr {
    transition: background 0.15s;
}

.compare-table tbody td {
    border-bottom: 1px solid var(--border-light);
}

.compare-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.compare-table tbody tr:nth-child(even) td:nth-child(3),
.compare-table tbody tr:nth-child(even) td:nth-child(4) {
    background: rgba(129,178,154,0.06);
}

.compare-table tbody tr:hover {
    background: #eef2f7;
}

.compare-table tbody tr:hover td:nth-child(3),
.compare-table tbody tr:hover td:nth-child(4) {
    background: rgba(129,178,154,0.08);
}

.compare-table td {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-align: center;
    vertical-align: middle;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--navy);
    min-width: 250px;
}

.compare-table .check {
    color: var(--teal);
    font-size: 0.95rem;
}

.compare-table .dash {
    color: var(--border-medium);
    font-size: 1.1rem;
}

.compare-languages-link {
    text-align: center;
    margin-top: 2rem;
}

.compare-languages-link a {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.compare-languages-link a:hover {
    color: var(--teal-dark);
}

/* --- FAQ --- */
.faq-section {
    padding: 4rem 2rem 2rem;
}

.faq-category {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-category-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--teal);
    margin-bottom: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item summary:hover {
    color: var(--teal);
}

.faq-answer {
    padding: 0 0 1.25rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-answer ul:last-child {
    margin-bottom: 0;
}

.faq-answer li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.35rem;
}

/* --- LEGAL (privacy, terms) --- */
.legal-section {
    padding: 3rem 2rem 5rem;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-effective {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.legal-content a {
    color: var(--teal);
    font-weight: 500;
}

.legal-content a:hover {
    color: var(--teal-dark);
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.4rem;
}

/* --- CONTACT --- */
.contact-section {
    padding: 4rem 2rem 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 950px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.contact-info > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-channel-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--teal);
    flex-shrink: 0;
}

.contact-channel strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.1rem;
}

.contact-channel span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-channel a {
    color: var(--teal);
    font-weight: 600;
}

.contact-channel a:hover {
    color: var(--teal-dark);
}

.contact-form-wrap {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(129,178,154,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
}

.form-disclaimer a {
    color: var(--teal);
    font-weight: 500;
}

.form-disclaimer a:hover {
    color: var(--teal-dark);
}

/* Honeypot field — visually hidden but accessible to bots */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* Form error message */
.form-error {
    display: none;
    color: #e53e3e;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.75rem;
}

/* Form success state */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    min-height: 300px;
}

.form-success-icon {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Additional questions */
.questions-section {
    padding: 5rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.questions-section h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.questions-section p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark variant for pricing page */
.questions-section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    border-top: none;
    margin-bottom: 0;
    position: relative;
}

.questions-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.questions-section-dark .section-inner {
    position: relative;
    z-index: 1;
}

.questions-section-dark h2 {
    color: #fff;
}

.questions-section-dark p {
    color: rgba(255,255,255,0.7);
}

/* --- "FOR BUSINESS" HEADER BUTTON --- */
.btn-business {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy);
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.25s ease;
}

.btn-business:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61,64,91,0.25);
    color: #fff !important;
}

#header.scrolled .btn-business {
    background: var(--navy);
    color: #fff !important;
    border-color: var(--navy);
}

#header.scrolled .btn-business:hover {
    border-color: var(--teal);
}

/* Mobile menu btn-business */
.mobile-menu-inner .btn-business {
    background: var(--navy-light);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.15);
}

/* --- ENTERPRISE PAGE --- */

/* Enterprise hero extensions */
.ent-hero {
    padding-bottom: 5rem;
}

.ent-hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
}

.ent-hero .ent-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 740px;
    margin: 0 auto 1.5rem;
}

.ent-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ent-btn-demo {
    padding: 1rem 2.8rem;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.ent-hero-sub-cta {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
    line-height: 1.6;
}

.ent-hero-sub-cta strong {
    color: rgba(255,255,255,0.85);
}

.ent-hero-partners {
    margin-top: 2.5rem;
}

/* Enterprise light section */
.ent-section-light {
    padding: 5rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.ent-section-light .section-label {
    margin-bottom: 0.5rem;
}

.ent-section-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto 0.75rem;
}

.ent-section-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.ent-section-sub-dark {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Enterprise feature row (2-column text + screenshot) */
.ent-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Icon bullet list (replaces checkmarks) */
.ent-icon-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ent-icon-bullet {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ent-icon-bullet-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--teal);
    flex-shrink: 0;
}

.ent-icon-bullet-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 0.15rem;
}

.ent-icon-bullet-text strong {
    color: var(--navy);
}

.ent-icon-bullets.dark .ent-icon-bullet-text {
    color: rgba(255,255,255,0.75);
}

.ent-icon-bullets.dark .ent-icon-bullet-text strong {
    color: #fff;
}

.ent-icon-bullets.dark .ent-icon-bullet-icon {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
    color: var(--teal-light);
}

/* Checkmark feature list (reused in HITL) */
.ent-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ent-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0.5rem 0;
}

.ent-feature-list li i {
    color: var(--teal);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.ent-feature-list.dark li {
    color: rgba(255,255,255,0.8);
}

.ent-feature-list.dark li i {
    color: var(--teal-light);
}

/* Enterprise dark sections */
.ent-section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.ent-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.ent-section-dark .section-inner {
    position: relative;
    z-index: 1;
}

.ent-dark-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.ent-dark-label {
    color: var(--teal-light) !important;
}

/* Who It's For — visual separator from previous dark section */
.ent-whosfor {
    background: linear-gradient(135deg, var(--charcoal) 0%, #242a38 100%);
}

/* 3x2 icon card grid */
.ent-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ent-icon-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    transition: all 0.25s ease;
}

.ent-icon-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.ent-icon-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(129,178,154,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--teal-light);
    margin-bottom: 1rem;
}

.ent-icon-card h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.ent-icon-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Audience rows (horizontal stacked cards on dark bg) */
.ent-audience-rows {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem auto 0;
}

.ent-audience-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: stretch;
    gap: 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--accent, var(--teal));
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.25s ease;
    overflow: hidden;
}

.ent-audience-row:hover {
    background: rgba(255,255,255,0.08);
}

.ent-audience-row-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.ent-audience-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.ent-audience-row-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent, var(--teal-light));
    flex-shrink: 0;
}

.ent-audience-row-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ent-audience-row-content h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.ent-audience-row-content h4 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent, var(--teal-light));
    margin-bottom: 0.6rem;
}

.ent-audience-row-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

.ent-audience-bullets {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.ent-audience-bullets li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.ent-audience-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent, var(--teal));
    opacity: 0.7;
}

/* Collaboration section (2-column layout) */
.ent-collab-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.ent-collab-text h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.ent-collab-text > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.ent-collab-visual {
    max-width: 100%;
}

/* Human in the loop */
.ent-hitl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.ent-hitl-text > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.ent-text-link {
    color: var(--teal-light) !important;
    margin-top: 1.5rem;
}

.ent-text-link:hover {
    color: #fff !important;
}

/* Compliance badges */
.ent-compliance-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.ent-compliance-row img {
    height: 112px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.ent-compliance-row img:hover {
    opacity: 1;
}

/* Testimonials */
.ent-testimonials-section {
    background: linear-gradient(135deg, #2a2d44 0%, var(--charcoal) 100%);
}

.ent-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ent-testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 3px solid var(--card-accent, var(--teal));
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.ent-testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.ent-testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.ent-testimonial-attr {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
}

.ent-testimonial-attr strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.ent-testimonial-attr span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Enterprise bottom CTA */
.ent-bottom-cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ent-bottom-cta .ent-hero-actions {
    margin-bottom: 0.75rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .desktop-br { display: none; }
    .hero-content h1 { font-size: 3rem; }

    /* Enterprise 1024px */
    .ent-hero h1 { font-size: 2.8rem; }
    .ent-feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ent-section-heading { font-size: 1.9rem; }
    .ent-dark-heading { font-size: 1.9rem; }
    .ent-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .ent-hitl-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ent-collab-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ent-collab-text { text-align: center; }
    .ent-collab-text .section-label { text-align: center !important; }
    .ent-collab-visual { max-width: 700px; margin: 0 auto; }
    .hero-visual .screenshot-frame { width: 58%; }
    .hero-side-vid--top-left { width: 22%; left: -8%; }
    .hero-side-vid--bottom-left { width: 28%; left: -1%; }
    .hero-side-vid--top-right { width: 21%; right: -8%; }
    .hero-side-vid--bottom-right { width: 28%; right: -3%; }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .feature-row:nth-child(odd) {
        margin-left: 0;
        margin-right: 0;
        padding: 2rem 1rem;
    }

    .feature-text { text-align: center; }
    .cue-mock-par { display: none; }
    .cue-mock-badges { justify-content: center; }
    .feature-text-inner.bordered {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--teal);
        padding-top: 1.5rem;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .capabilities-grid {
        gap: 1.5rem;
    }

    .api-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .api-label {
        text-align: center !important;
    }

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

    .api-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .desktop-only { display: none; }
    .header-nav { display: none; }
    .mobile-menu-toggle { display: block; }

    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-side-vid { display: none; }
    .hero-visual {
        aspect-ratio: auto;
        margin-top: 2rem;
    }
    .hero-visual .screenshot-frame {
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        transform: none;
    }

    .locale-badge-text { font-size: 0.8rem; }

    .page-hero { padding: 7rem 1.5rem 3rem; }
    .page-hero h1 { font-size: 2rem; }
    .page-hero p { font-size: 1rem; }

    /* Enterprise 768px */
    .ent-hero { padding-bottom: 3rem; }
    .ent-hero h1 { font-size: 2rem; }
    .ent-hero-sub { font-size: 0.95rem; }
    .ent-grid-6 { grid-template-columns: 1fr; }
    .ent-audience-row { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
    .ent-audience-row-img { max-height: 280px; }
    .ent-collab-text h2 { font-size: 1.5rem; }
    .ent-dark-heading { font-size: 1.6rem; }
    .ent-section-heading { font-size: 1.6rem; }
    .ent-testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .ent-compliance-row { gap: 1.5rem; }
    .ent-compliance-row img { height: 88px; }

    .lang-featured-section { padding: 0 1rem 0.5rem; }
    .lang-featured-chip { padding: 0.45rem 0.75rem; font-size: 0.8rem; }
    .lang-featured-chip .flag-icon { width: 18px; height: 18px; }
    .lang-table-section { padding: 1.5rem 1rem 3rem; }
    .lang-table-heading { font-size: 1.25rem; margin-bottom: 1rem; }
    .lang-table td,
    .lang-table thead th { padding: 0.5rem 0.75rem; font-size: 0.85rem; }
    .lang-table td:last-child { font-size: 0.8rem; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number { font-size: 1.8rem; }

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

    .workflow-title-block h2 {
        font-size: 2rem;
    }

    .testimonial-block blockquote {
        font-size: 1.15rem;
    }

    .testimonial-quote {
        font-size: 4rem;
    }

    .app-grid {
        grid-template-columns: 1fr;
    }

    .lang-grid {
        grid-template-columns: 1fr 1fr;
    }

    .engine-logos {
        gap: 2rem;
    }

    .engine-logos img {
        height: 20px;
    }

    .engine-strip-heading {
        font-size: 1.4rem;
    }

    .api-code pre {
        font-size: 0.75rem;
    }

    .bottom-cta h2 { font-size: 1.8rem; }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        order: -1;
    }

    .enterprise-inner {
        flex-direction: column;
        text-align: center;
    }

    .enterprise-text p {
        max-width: none;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .compare-heading {
        font-size: 1.8rem;
    }

    .compare-table-wrap {
        overflow-x: auto;
    }

    .compare-table {
        min-width: 700px;
    }

    .compare-table thead th {
        position: static;
    }

    .compare-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--bg-white);
        z-index: 1;
    }

    .compare-table tbody tr:nth-child(even) td:first-child {
        background: var(--bg-light);
    }

    .compare-table tbody tr:hover td:first-child {
        background: #eef2f7;
    }

    .questions-section h2 {
        font-size: 1.6rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info > p {
        margin-bottom: 1.5rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.7rem; }
    .hero-actions { flex-direction: column; }
    .locale-badge-text { font-size: 0.75rem; }
    .locale-badge-flag { width: 18px; height: 18px; }
    .locale-badge { padding: 0.35rem 0.9rem; gap: 0.5rem; }
    .lang-grid { grid-template-columns: 1fr; }

    /* Enterprise 480px */
    .ent-hero h1 { font-size: 1.7rem; }
    .ent-hero-actions { flex-direction: column; }
    .ent-section-heading { font-size: 1.4rem; }
    .ent-dark-heading { font-size: 1.4rem; }
    .ent-audience-row-content h3 { font-size: 1.05rem; }
    .ent-compliance-row img { height: 72px; }
    .ent-compliance-row { gap: 1rem; }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.75rem; }

    .pricing-price {
        font-size: 2.5rem;
    }

    .toggle-badge {
        font-size: 0.7rem;
    }
}

/* =====================================================
   BLOG
   ===================================================== */

/* Blog Listing */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-card {
    display: block;
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
    text-decoration: none;
}

.blog-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.blog-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card:hover .blog-card-link {
    color: var(--teal-dark);
}

.blog-listing {
    padding: 3rem 2rem 5rem;
}

/* Blog Post Hero */
.blog-post-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 3rem;
    color: #fff;
}

.blog-post-hero .section-inner {
    max-width: 1100px;
    padding: 0;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal-light);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.blog-back-link:hover {
    color: #fff;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-post-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-light);
}

.blog-post-readtime {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.blog-post-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Blog Article Layout (sidebar + content) */
.blog-article {
    padding: 0 2rem;
}

.blog-article-layout {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem;
}

/* Sidebar */
.blog-sidebar {
    flex: 0 0 260px;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Sticky wrapper for CTA only */
.blog-sidebar-cta-wrap {
    position: sticky;
    top: 100px;
}

/* Sidebar CTA card — FreePlanWidget-inspired */
.blog-sidebar-cta {
    position: relative;
    background: linear-gradient(135deg, #e8e9f3 0%, #f5f0e8 100%);
    border: 1px solid rgba(129, 140, 180, 0.2);
    border-radius: 12px;
    overflow: hidden;
    padding: 1.6rem;
}

.blog-sidebar-cta::before,
.blog-sidebar-cta::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    pointer-events: none;
}

.blog-sidebar-cta::before {
    border: 2px solid rgba(129, 140, 180, 0.35);
    bottom: -110px;
    right: -50px;
}

.blog-sidebar-cta::after {
    border: 2px solid rgba(129, 140, 180, 0.2);
    bottom: -50px;
    right: -110px;
}

.blog-sidebar-cta-content {
    position: relative;
    z-index: 1;
}

.blog-sidebar-cta-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.blog-sidebar-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-sidebar-cta-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin-bottom: 1.1rem;
}

.blog-sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.blog-sidebar-cta-btn:hover {
    background: var(--navy-light);
    color: #fff;
    text-decoration: none;
}

/* Share icons */
.blog-share {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.blog-share-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.blog-share-icons {
    display: flex;
    gap: 0.5rem;
}

.blog-share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: var(--bg-white);
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-share-icon:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.blog-share-copied {
    font-size: 0.75rem;
    color: var(--teal);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.blog-share-copied.show {
    opacity: 1;
}

/* Article Content */
.blog-article-inner {
    flex: 1;
    max-width: 720px;
    padding: 3rem 0 4rem;
    min-width: 0;
}

.blog-article-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-article-inner h2:first-child {
    margin-top: 0;
}

.blog-article-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-article-inner p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.blog-article-inner a {
    color: var(--teal-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.blog-article-inner a:hover {
    color: var(--navy);
}

.blog-article-inner ul,
.blog-article-inner ol {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-article-inner li {
    margin-bottom: 0.4rem;
}

.blog-article-inner ul {
    list-style: disc;
}

.blog-article-inner ol {
    list-style: decimal;
}

.blog-article-inner hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 2.5rem 0;
}

.blog-article-inner blockquote {
    border-left: 3px solid var(--navy);
    margin: 1.5rem 0;
    padding: 1.2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 0 6px 6px 0;
}

.blog-article-inner blockquote p {
    margin: 0;
}

.blog-article-inner blockquote p + p {
    margin-top: 0.8rem;
}

.blog-article-inner pre {
    background: var(--navy);
    color: #e2e8f0;
    border-radius: 6px;
    padding: 1.5rem 1.8rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.88rem;
    line-height: 1.7;
    box-shadow: var(--shadow-md);
}

.blog-article-inner pre code {
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.blog-article-inner code {
    background: var(--bg-light);
    color: var(--navy);
    padding: 0.15em 0.4em;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

.blog-article-inner strong {
    font-weight: 600;
}

.blog-article-inner em {
    font-style: italic;
}

/* Style guide: highlighted key rules */
.sg-highlight {
    background: rgba(129, 178, 154, 0.15);
    border-bottom: 2px solid var(--teal);
    padding: 0.1em 0.25em;
    border-radius: 2px;
}

/* Style guide: incorrect example (red) */
.sg-incorrect {
    display: inline;
    background: #a03838;
    color: #fff;
    padding: 0.15em 0.4em;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

/* Style guide: correct example (green) */
.sg-correct {
    display: inline;
    background: #22712d;
    color: #fff;
    padding: 0.15em 0.4em;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

/* Style guide: subtitle simulation (dark bg) */
.sg-example {
    display: inline;
    background: var(--navy);
    color: #fff;
    padding: 0.15em 0.4em;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

/* Style guide: CORRECT/INCORRECT labels and "Example:" */
.sg-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.3rem !important;
}

.sg-label em {
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 0.9rem;
}

/* Center paragraphs containing example spans */
.blog-article-inner p:has(.sg-incorrect),
.blog-article-inner p:has(.sg-correct),
.blog-article-inner p:has(.sg-example) {
    text-align: center;
    margin-bottom: 0.2rem;
}

/* Add breathing room after example groups */
.blog-article-inner p:has(.sg-example) + p:not(:has(.sg-example)):not(.sg-label),
.blog-article-inner p:has(.sg-correct) + p:not(:has(.sg-correct)):not(.sg-label),
.blog-article-inner p:has(.sg-incorrect) + p:not(:has(.sg-incorrect)):not(.sg-label) {
    margin-top: 1.2rem;
}

/* Also add top margin on sg-label when following example blocks */
.blog-article-inner p:has(.sg-example) + .sg-label,
.blog-article-inner p:has(.sg-correct) + .sg-label,
.blog-article-inner p:has(.sg-incorrect) + .sg-label {
    margin-top: 1rem;
}

.blog-article-inner small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Provider logo in h3 headings */
.blog-article-inner h3 .provider-logo {
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 0.4rem;
}

/* Blog Table */
.blog-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    -webkit-overflow-scrolling: touch;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    line-height: 1.45;
    min-width: 680px;
}

.blog-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    padding: 0.6rem 0.7rem;
    text-align: center;
    font-size: 0.78rem;
    white-space: nowrap;
}

.blog-table thead th:first-child {
    text-align: left;
}

.blog-table tbody td {
    padding: 0.6rem 0.7rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    vertical-align: top;
}

.blog-table tbody td:first-child {
    text-align: left;
    font-size: 0.8rem;
    white-space: normal;
    min-width: 180px;
}

.blog-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.blog-star-rating {
    color: #d59900;
    font-weight: 700;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-sidebar {
        flex: 0 0 190px;
    }

    .blog-article-layout {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-hero {
        padding: 7rem 1.5rem 2.5rem;
    }

    .blog-post-hero h1 {
        font-size: 1.8rem;
    }

    .blog-article {
        padding: 0 1rem;
    }

    .blog-article-layout {
        flex-direction: column;
    }

    .blog-sidebar {
        flex: none;
        padding-top: 0;
        order: 1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .blog-sidebar-cta-wrap {
        position: static;
        flex: 1;
        min-width: 200px;
    }

    .blog-share {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .blog-article-inner {
        padding: 2rem 0 3rem;
        order: 0;
    }

    .blog-article-inner h2 {
        font-size: 1.5rem;
    }

    .blog-article-inner h3 {
        font-size: 1.2rem;
    }

    .blog-table {
        font-size: 0.8rem;
    }

    .blog-table thead th,
    .blog-table tbody td {
        padding: 0.5rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .blog-post-hero h1 {
        font-size: 1.5rem;
    }

    .blog-article-inner p,
    .blog-article-inner ul,
    .blog-article-inner ol {
        font-size: 1rem;
    }

    .blog-card-title {
        font-size: 1.3rem;
    }
}

/* ============================================
   SUBTITLE TRANSLATE LANDING PAGE (st-)
   ============================================ */

/* --- ST HERO --- */
.st-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.st-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.st-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.st-hero-text {
    padding-right: 1rem;
}

.st-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.st-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.st-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.st-hero-micro {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

.st-hero-partners {
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: left;
}

.st-hero-partners .partner-logos {
    gap: 1rem 2rem;
    justify-content: flex-start;
}

.st-hero-partners .partner-logos img {
    height: 16px;
}

.st-hero-partners .partner-logos img.logo-bumped {
    height: 19px;
}

.st-hero-partners .partner-logos img.logo-heavy {
    height: 12px;
}

.st-hero-partners .partner-logos img.logo-slim {
    height: 14px;
}

/* Hero Visual — Screenshot + Translation Mockup */
.st-hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.st-hero-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex: 1;
}

.st-hero-visual-frame {
    position: relative;
}

.st-locale-badge {
    margin: 1.5rem 0 0;
}

.st-hero-visual .hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(129,178,154,0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.st-hero-screenshot {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
}

.st-hero-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.st-translation-mockup {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    left: -60px;
    bottom: -20px;
    width: 260px;
}

.st-subtitle-cue {
    background: rgba(45,55,72,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 0.6rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.st-cue-lang {
    font-family: 'Courier New', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--teal);
    color: #fff;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    flex-shrink: 0;
}

.st-cue-text {
    font-family: 'Inter', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Noto Sans JP', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    flex: 1;
}

.st-cue-source {
    border-color: rgba(255,255,255,0.2);
}

.st-cue-source .st-cue-lang {
    background: rgba(255,255,255,0.15);
}

.st-cue-arrow {
    display: flex;
    justify-content: center;
    padding: 0.1rem 0;
}

.st-cue-arrow i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.st-cue-target {
    border-left: 3px solid var(--teal);
    opacity: 0;
    transform: translateY(10px);
    animation: stCueFadeIn 0.6s ease forwards;
}

.st-cue-anim-1 { animation-delay: 0.4s; }
.st-cue-anim-2 { animation-delay: 0.8s; }
.st-cue-anim-3 { animation-delay: 1.2s; }

@keyframes stCueFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* --- ST LANGUAGE TICKER --- */
.st-lang-ticker-section {
    background: var(--bg-light);
    padding: 2.5rem 0 1.5rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.st-lang-ticker {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.st-ticker-track {
    display: flex;
    width: max-content;
}

.st-ticker-content {
    display: flex;
    gap: 0.75rem;
    padding: 0 0.375rem;
    flex-shrink: 0;
}

.st-ticker-ltr {
    animation: stTickerLTR 45s linear infinite;
}

.st-ticker-rtl {
    animation: stTickerRTL 45s linear infinite;
}

@keyframes stTickerLTR {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes stTickerRTL {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.st-lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.st-lang-chip .flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
}

.st-ticker-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    padding: 0 2rem;
}

.st-ticker-note a {
    color: var(--teal);
    font-weight: 600;
}

.st-ticker-note a:hover {
    color: var(--teal-dark);
}

/* --- ST SECTION SHARED --- */
.st-section-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.st-dark-heading {
    color: #fff;
}

.st-section-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* --- ST QUALITY SECTION --- */
.st-quality-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.st-comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.st-comparison-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.st-comparison-card:hover {
    box-shadow: var(--shadow-md);
}

.st-comparison-side {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.st-comparison-side .st-comparison-badge,
.st-comparison-side .st-comparison-issue {
    margin-top: auto;
    padding-top: 1rem;
}

.st-comparison-generic {
    background: #fafafa;
    border-right: 1px solid var(--border-light);
}

.st-comparison-fluen {
    background: var(--bg-white);
    border-left: 3px solid var(--teal);
    position: relative;
}

.st-comparison-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.st-comparison-generic .st-comparison-label {
    color: var(--text-muted);
}

.st-comparison-generic .st-comparison-label i {
    color: #e07a5f;
}

.st-comparison-fluen .st-comparison-label {
    color: var(--teal);
}

.st-comparison-fluen .st-comparison-label i {
    color: var(--teal);
}

.st-comparison-cues {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.st-cue-block {
    padding: 0.6rem 0.75rem;
    background: rgba(0,0,0,0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.st-comparison-fluen .st-cue-block {
    background: rgba(129,178,154,0.04);
    border-color: rgba(129,178,154,0.15);
}

.st-timecode {
    font-family: 'Courier New', monospace;
    font-size: 0.68rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.st-cue-subtitle {
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.55;
    font-family: var(--font-sans);
}

.st-comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(129,178,154,0.1);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}

.st-comparison-issue {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #e07a5f;
    background: rgba(224,122,95,0.08);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}

/* --- ST PIPELINE --- */
.st-pipeline-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.st-pipeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.st-pipeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

.st-pipeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.st-pipeline-step:last-child {
    margin-bottom: 0;
}

.st-pipeline-left {
    justify-content: flex-end;
    padding-right: calc(50% + 2rem);
}

.st-pipeline-right {
    justify-content: flex-start;
    padding-left: calc(50% + 2rem);
}

.st-pipeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--bg-light);
}

.st-pipeline-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    max-width: 320px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.st-pipeline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.st-pipeline-icon {
    width: 42px;
    height: 42px;
    background: rgba(129,178,154,0.12);
    color: var(--teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.st-pipeline-icon svg {
    width: 20px;
    height: 20px;
}

.st-pipeline-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.st-pipeline-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* --- ST PIVOT CALLOUT (inside engine strip) --- */
.st-pivot-callout {
    margin-top: 2.5rem;
}

.st-pivot-callout-inner {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.st-pivot-callout-text {
    flex: 1;
    text-align: left;
}

.st-pivot-callout-text h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.st-pivot-callout-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.st-pivot-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.st-pivot-old,
.st-pivot-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.st-pivot-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--text-muted);
}

.st-pivot-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.st-pivot-node {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.st-pivot-node .flag-icon {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
}

.st-pivot-node-mid {
    border-color: rgba(224,122,95,0.4);
    background: rgba(224,122,95,0.12);
}

.st-pivot-arrow {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.st-pivot-arrow-direct {
    color: var(--teal);
    font-size: 0.85rem;
}

.st-pivot-verdict {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.st-pivot-verdict i {
    color: #E07A5F;
    font-size: 0.65rem;
}

.st-pivot-verdict-good {
    color: var(--teal-dark);
}

.st-pivot-verdict-good i {
    color: var(--teal);
}

/* --- ST COST SECTION --- */
.st-cost-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    position: relative;
}

.st-cost-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.st-cost-section .section-inner {
    position: relative;
    z-index: 1;
}

.st-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 900px;
    margin: 2rem auto 0;
    border-radius: var(--radius-md);
}

.st-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 640px;
}

.st-compare-table thead th {
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    text-align: left;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
}

.st-compare-table thead th.st-table-highlight {
    color: var(--teal-light);
    border-bottom-color: var(--teal);
}

.st-compare-table tbody td {
    padding: 0.9rem 1.25rem;
    color: rgba(255,255,255,0.65);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    vertical-align: top;
}

.st-compare-table tbody td:first-child {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    white-space: nowrap;
}

.st-compare-table tbody td.st-table-highlight {
    color: #fff;
    background: rgba(129,178,154,0.08);
    border-left: 2px solid var(--teal);
}

.st-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.st-savings-callout {
    max-width: 650px;
    margin: 2.5rem auto 0;
    background: rgba(129,178,154,0.1);
    border: 1px solid rgba(129,178,154,0.2);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    text-align: center;
}

.st-savings-callout p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* --- ST USE CASES --- */
.st-usecases-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.st-usecases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.st-usecase-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: all 0.25s ease;
}

.st-usecase-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.st-usecase-icon {
    width: 42px;
    height: 42px;
    background: rgba(129,178,154,0.12);
    color: var(--teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.st-usecase-icon svg {
    width: 20px;
    height: 20px;
}

.st-usecase-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.st-usecase-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Testimonials override for 3-column on this page */
.st-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* --- ST FORMATS STRIP --- */
.st-formats-section {
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.st-formats-heading {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2rem;
}

.st-formats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.st-formats-group {
    text-align: center;
}

.st-formats-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.st-format-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.st-format-badge {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--bg-white);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.75rem;
    white-space: nowrap;
}

.st-format-badge-output {
    background: rgba(129,178,154,0.1);
    border-color: var(--teal);
    color: var(--teal-dark);
}

.st-formats-arrow {
    color: var(--teal);
    font-size: 1.2rem;
}

.st-formats-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    font-style: italic;
}

/* --- ST FAQ OVERRIDE --- */
.st-faq-section {
    padding: 4rem 2rem 3rem;
}

.st-faq-section .faq-category {
    max-width: 750px;
}

/* --- ST FINAL CTA --- */
.st-final-cta {
    padding: 5rem 2rem;
}

.st-rotating-subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 2rem;
}

.st-rotating-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--teal-light);
    transition: opacity 0.4s ease;
    display: inline-block;
}

/* ============================================
   ST RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1024px) {
    .st-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .st-hero-text {
        padding-right: 0;
    }

    .st-hero-text .section-label {
        text-align: center !important;
    }

    .st-hero h1 {
        font-size: 2.6rem;
    }

    .st-hero-sub {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .st-hero-actions {
        justify-content: center;
    }

    .st-hero-micro {
        text-align: center;
    }

    .st-hero-partners {
        text-align: center;
    }

    .st-hero-partners .partner-logos {
        justify-content: center;
    }

    .st-hero-visual {
        margin-top: 2rem;
        justify-content: center;
    }

    .st-locale-badge {
        display: none !important;
    }

    .st-hero-screenshot {
        max-width: 460px;
    }

    .st-translation-mockup {
        left: -40px;
        bottom: -15px;
        width: 230px;
    }

    .st-section-heading {
        font-size: 1.9rem;
    }

    /* Pipeline collapses */
    .st-pipeline-line {
        left: 20px;
    }

    .st-pipeline-step {
        flex-direction: row !important;
        padding-left: 56px !important;
        padding-right: 0 !important;
        justify-content: flex-start !important;
    }

    .st-pipeline-dot {
        left: 20px !important;
        transform: translateX(-50%) !important;
    }

    .st-pipeline-card {
        max-width: 100%;
    }

    .st-pivot-callout-inner {
        flex-direction: column;
        text-align: center;
    }

    .st-pivot-callout-text h3,
    .st-pivot-callout-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .st-hero {
        padding: 7rem 1.5rem 3rem;
    }

    .st-hero h1 {
        font-size: 2rem;
    }

    .st-hero-sub {
        font-size: 0.95rem;
    }

    .st-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .st-hero-screenshot {
        max-width: 380px;
    }

    .st-translation-mockup {
        left: -20px;
        bottom: -10px;
        width: 200px;
    }

    .st-subtitle-cue {
        padding: 0.45rem 0.6rem;
        gap: 0.35rem;
    }

    .st-cue-text {
        font-size: 0.68rem;
    }

    .st-cue-arrow {
        font-size: 0.7rem;
    }

    .st-comparison-card {
        grid-template-columns: 1fr;
    }

    .st-comparison-generic {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .st-comparison-fluen {
        border-left: none;
        border-top: 3px solid var(--teal);
    }

    .st-usecases-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .st-testimonials-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .st-section-heading {
        font-size: 1.7rem;
    }

    .st-formats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .st-formats-arrow {
        transform: rotate(90deg);
    }

    .st-pivot-callout-inner {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .st-pivot-diagram {
        flex-direction: row;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .st-hero h1 {
        font-size: 1.7rem;
    }

    .st-section-heading {
        font-size: 1.5rem;
    }

    .st-comparison-side {
        padding: 1rem;
    }

    .st-pipeline-card {
        padding: 1.25rem;
    }

    .st-savings-callout {
        padding: 1rem 1.25rem;
    }

    .st-savings-callout p {
        font-size: 0.95rem;
    }

    .st-usecase-card {
        padding: 1.25rem;
    }

    .st-compare-table {
        font-size: 0.8rem;
    }
}

/* ============================================
   SUBTITLE GENERATOR PAGE (sg- prefix)
   ============================================ */

/* --- SG HERO --- */
.sg-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sg-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.sg-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.sg-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.sg-hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.sg-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.sg-hero-micro {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.sg-hero-partners {
    margin-top: 0;
    margin-bottom: 2.5rem;
}

.sg-hero-partners .partner-logos img {
    height: 16px;
}

.sg-hero-partners .partner-logos img.logo-bumped {
    height: 19px;
}

.sg-hero-partners .partner-logos img.logo-heavy {
    height: 12px;
}

.sg-hero-partners .partner-logos img.logo-slim {
    height: 14px;
}

.sg-hero-visual {
    position: relative;
    width: calc(100vw - 4rem);
    max-width: 1200px;
    margin: 0.5rem auto 0;
    left: 50%;
    transform: translateX(-50%);
    aspect-ratio: 3 / 1;
    overflow: visible;
}

.sg-hero-visual .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(129,178,154,0.35) 0%, rgba(129,178,154,0.12) 35%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.sg-hero-visual .sg-screenshot-frame {
    position: absolute;
    width: 58%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
}

.sg-screenshot-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- SG HERO SIDE VIDEOS --- */
.sg-hero-side-vid {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    top: 50%;
    transition: transform 0.05s linear;
    will-change: transform;
}

.sg-hero-side-vid video {
    display: block;
    width: 100%;
    height: auto;
}

.sg-hero-side-vid--top-left {
    width: 24%;
    left: -10%;
    transform: translateY(-50%);
    z-index: 2;
}

.sg-hero-side-vid--bottom-left {
    width: 30%;
    left: -2%;
    transform: translateY(-50%);
    z-index: 4;
}

.sg-hero-side-vid--top-right {
    width: 23%;
    right: -10%;
    transform: translateY(-50%);
    z-index: 2;
}

.sg-hero-side-vid--bottom-right {
    width: 30%;
    right: -4%;
    transform: translateY(-50%);
    z-index: 4;
}

/* --- SG TRUST STRIP --- */
.sg-trust-strip {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.sg-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.sg-stat {
    text-align: center;
}

.sg-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.sg-stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.sg-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

.sg-engines {
    text-align: center;
}

.sg-engines-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.sg-engine-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.sg-engine-logos img {
    height: 22px;
    opacity: 0.5;
    transition: opacity 0.25s;
}

.sg-engine-logos img:hover {
    opacity: 0.8;
}

/* --- SG SECTION HEADINGS --- */
.sg-section-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

/* --- SG ACCURACY SHOWCASE --- */
.sg-accuracy-section {
    padding: 5rem 2rem;
}

.sg-accuracy-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.sg-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0;
}

.sg-tab {
    background: none;
    border: none;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sg-tab:hover {
    color: var(--navy);
}

.sg-tab-active {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

.sg-tab-panel {
    display: none;
}

.sg-tab-panel-active {
    display: block;
}

.sg-tab-panels {
    background: #fff;
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 1.5rem;
}

/* SRT Preview */
.sg-srt-preview {
    flex: 1;
}

.sg-srt-cue {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
}

.sg-srt-cue:last-child {
    border-bottom: none;
}

.sg-srt-index {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--teal);
    background: rgba(129,178,154,0.1);
    border-radius: 3px;
    padding: 0.1rem 0.4rem;
    margin-right: 0.5rem;
}

.sg-srt-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.sg-srt-text {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-top: 0.3rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* Quality badges */
.sg-quality-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.sg-quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(129,178,154,0.08);
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
}

.sg-quality-badge i {
    font-size: 0.65rem;
}

/* --- SG DIFFERENTIATION SECTION --- */
.sg-diff-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
}

.sg-diff-section .section-label {
    color: var(--teal-light);
}

.sg-diff-section .sg-section-heading {
    color: #fff;
}

.sg-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.sg-diff-col {
    border-radius: 10px;
    padding: 2rem;
}

.sg-diff-col h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sg-diff-col ul {
    list-style: none;
    padding: 0;
}

.sg-diff-col li {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.sg-diff-col li i {
    flex-shrink: 0;
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

.sg-diff-problems {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
}

.sg-diff-problems h3 {
    color: #f87171;
}

.sg-diff-problems li i {
    color: #f87171;
}

.sg-diff-problems li {
    color: rgba(255,255,255,0.65);
}

.sg-diff-fluen {
    background: rgba(129,178,154,0.1);
    border: 1px solid rgba(129,178,154,0.25);
    border-left: 3px solid var(--teal);
}

.sg-diff-fluen h3 {
    color: var(--teal-light);
}

.sg-diff-fluen li i {
    color: var(--teal);
}

.sg-diff-fluen li {
    color: rgba(255,255,255,0.85);
}

/* --- SG WORKFLOW / STREAMLINED STEPS --- */
.sg-workflow-section {
    padding: 5rem 2rem;
}

.sg-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.sg-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 1.1rem 1.5rem;
    flex: 1;
    transition: all 0.25s ease;
}

.sg-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sg-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px rgba(129,178,154,0.12);
}

.sg-step-body h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}

.sg-step-body span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.sg-step-connector {
    color: var(--border-medium);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* --- SG FEATURES GRID --- */
.sg-features-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.sg-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.sg-feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.25s ease;
}

.sg-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.sg-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.sg-feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.sg-feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sg-feature-card-highlight {
    border-left: 3px solid var(--teal);
    background: linear-gradient(135deg, rgba(129,178,154,0.04) 0%, var(--bg-white) 100%);
    box-shadow: var(--shadow-sm);
}

/* --- SG USE CASES --- */
.sg-usecases-section {
    padding: 5rem 2rem;
}

.sg-persona-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sg-persona-group {
    display: grid;
    grid-template-rows: 200px 1fr 1fr;
    gap: 0.75rem;
}

.sg-persona-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-light);
}

.sg-persona-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.sg-usecase-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all 0.25s ease;
}

.sg-usecase-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.sg-usecase-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.sg-usecase-card h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.sg-usecase-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* --- SG TESTIMONIALS (reuses ent-testimonial classes, just overrides grid) --- */
.sg-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* --- SG FORMATS + UPSELL --- */
.sg-formats-section {
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.sg-formats-heading {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.sg-formats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.sg-formats-group {
    text-align: center;
}

.sg-formats-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.sg-format-badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sg-format-badge {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg-white);
    color: var(--navy);
    border: 1px solid var(--border-light);
}

.sg-format-badge-output {
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    border-color: rgba(129,178,154,0.25);
}

.sg-formats-arrow {
    color: var(--teal);
    font-size: 1.2rem;
}

/* Upsell box */
.sg-upsell-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-white);
    border: 1px solid rgba(129,178,154,0.3);
    border-left: 3px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.sg-upsell-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.sg-upsell-content {
    flex: 1;
}

.sg-upsell-content strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.sg-upsell-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* --- SG FAQ (reuses faq-section classes) --- */
.sg-faq-section .faq-category {
    max-width: 800px;
    margin: 0 auto;
}

/* --- SG STICKY MOBILE CTA BAR --- */
.sg-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sg-sticky-cta .btn-primary-cta {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
}

.sg-sticky-visible {
    transform: translateY(0);
}

/* --- SG RESPONSIVE --- */
@media (max-width: 1024px) {
    .sg-hero h1 {
        font-size: 2.5rem;
    }

    .sg-section-heading {
        font-size: 1.9rem;
    }

    .sg-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sg-persona-groups {
        grid-template-columns: repeat(2, 1fr);
    }

    .sg-steps {
        flex-direction: column;
        gap: 0.75rem;
    }

    .sg-step-connector {
        transform: rotate(90deg);
    }

    .sg-hero-visual .sg-screenshot-frame { width: 58%; }
    .sg-hero-side-vid--top-left { width: 22%; left: -8%; }
    .sg-hero-side-vid--bottom-left { width: 28%; left: -1%; }
    .sg-hero-side-vid--top-right { width: 21%; right: -8%; }
    .sg-hero-side-vid--bottom-right { width: 28%; right: -3%; }
}

@media (max-width: 768px) {
    .sg-hero h1 {
        font-size: 2rem;
    }

    .sg-hero-sub {
        font-size: 1rem;
    }

    .sg-hero-side-vid { display: none; }
    .sg-hero-visual {
        width: 100%;
        left: auto;
        transform: none;
        aspect-ratio: auto;
        margin-top: 2rem;
    }
    .sg-hero-visual .sg-screenshot-frame {
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        transform: none;
    }

    .sg-section-heading {
        font-size: 1.7rem;
    }

    .sg-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .sg-stat-divider {
        width: 40px;
        height: 1px;
    }

    .sg-stat strong {
        font-size: 1.6rem;
    }

    .sg-diff-grid {
        grid-template-columns: 1fr;
    }

    .sg-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .sg-persona-groups {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .sg-testimonials-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .sg-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sg-tab {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.6rem 0.9rem;
    }

    .sg-upsell-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .sg-formats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .sg-formats-arrow {
        transform: rotate(90deg);
    }

    .sg-sticky-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    .sg-hero {
        padding: 7rem 1.25rem 3rem;
    }

    .sg-hero h1 {
        font-size: 1.7rem;
    }

    .sg-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .sg-hero-actions .btn-secondary-cta {
        width: 100%;
        justify-content: center;
    }

    .sg-hero-actions .btn-primary-cta {
        width: 100%;
        justify-content: center;
    }

    .sg-section-heading {
        font-size: 1.4rem;
    }

    .sg-diff-col {
        padding: 1.25rem;
    }

    .sg-feature-card {
        padding: 1.25rem;
    }

    .sg-usecase-card {
        padding: 1.25rem;
    }

    .sg-tab-panels {
        padding: 1rem;
    }

    .sg-srt-text {
        font-size: 0.78rem;
    }

}

/* ============================================
   VIDEO SUBTITLE CREATOR PAGE (vsc- prefix)
   ============================================ */

/* --- VSC HERO --- */
.vsc-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.vsc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.vsc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 3rem;
    align-items: center;
}

.vsc-hero-text {
    padding-right: 1rem;
}

.vsc-hero-text .section-label {
    text-align: left;
}

.vsc-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.vsc-hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}

.vsc-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.vsc-hero-micro {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Hero Visual — Screenshot + Badges + Video Accent */
.vsc-hero-visual {
    position: relative;
}

.vsc-hero-visual .hero-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    background: radial-gradient(ellipse at center, rgba(129,178,154,0.2) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.vsc-screenshot-frame {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vsc-screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.vsc-hero-badges {
    position: absolute;
    top: -0.5rem;
    right: -1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.vsc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    white-space: nowrap;
}

.vsc-hero-badge i {
    color: var(--teal);
    font-size: 0.65rem;
}

.vsc-hero-vid-accent {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    z-index: 2;
}

.vsc-hero-vid-accent video {
    width: 240px;
    border-radius: var(--radius-md);
    border: 3px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* --- VSC CREDIBILITY STRIP --- */
.vsc-credibility-strip {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.vsc-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.vsc-stat {
    text-align: center;
}

.vsc-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
}

.vsc-stat span {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.vsc-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

.vsc-engines {
    text-align: center;
}

.vsc-engines-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.vsc-engine-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.vsc-engine-logos img {
    height: 22px;
    opacity: 0.5;
    transition: opacity 0.25s;
}

.vsc-engine-logos img:hover {
    opacity: 0.8;
}

/* --- VSC SECTION HEADINGS --- */
.vsc-section-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

/* --- VSC DEMO SECTION --- */
.vsc-demo-section {
    padding: 5rem 2rem;
}

.vsc-demo-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Progress track */
.vsc-progress-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.vsc-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.vsc-progress-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.5s ease;
}

.vsc-progress-step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.5s ease;
}

.vsc-progress-step-active .vsc-progress-dot {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.vsc-progress-step-active span {
    color: var(--teal);
}

.vsc-progress-line {
    width: 100px;
    height: 3px;
    background: var(--border-light);
    border-radius: 3px;
    margin: 0 0.75rem;
    margin-bottom: 1.6rem;
    overflow: hidden;
}

.vsc-progress-line-fill {
    height: 100%;
    width: 0%;
    background: var(--teal);
    border-radius: 3px;
    transition: width 1.2s ease;
}

/* Demo active state — triggered by IntersectionObserver */
.vsc-demo-active .vsc-progress-step:nth-child(1) .vsc-progress-dot {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.vsc-demo-active .vsc-progress-step:nth-child(1) span {
    color: var(--teal);
}

.vsc-demo-active .vsc-progress-line:nth-of-type(1) .vsc-progress-line-fill {
    width: 100%;
    transition-delay: 0.2s;
}

.vsc-demo-active .vsc-progress-step:nth-child(3) .vsc-progress-dot {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transition-delay: 0.6s;
}

.vsc-demo-active .vsc-progress-step:nth-child(3) span {
    color: var(--teal);
    transition-delay: 0.6s;
}

.vsc-demo-active .vsc-progress-line:nth-of-type(2) .vsc-progress-line-fill {
    width: 100%;
    transition-delay: 0.8s;
}

.vsc-demo-active .vsc-progress-step:nth-child(5) .vsc-progress-dot {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transition-delay: 1.2s;
}

.vsc-demo-active .vsc-progress-step:nth-child(5) span {
    color: var(--teal);
    transition-delay: 1.2s;
}

/* SRT result */
.vsc-srt-result {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease;
    transition-delay: 0.4s;
}

.vsc-demo-active .vsc-srt-result {
    opacity: 1;
    transform: translateY(0);
}

.vsc-srt-preview {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.vsc-srt-cue {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
}

.vsc-srt-cue:last-child {
    border-bottom: none;
}

.vsc-srt-index {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--teal);
    background: rgba(129,178,154,0.1);
    border-radius: 3px;
    padding: 0.1rem 0.4rem;
    margin-right: 0.5rem;
}

.vsc-srt-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.vsc-srt-text {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-top: 0.3rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.vsc-quality-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.vsc-quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(129,178,154,0.08);
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
}

.vsc-quality-badge i {
    font-size: 0.65rem;
}

/* --- VSC OBJECTION SECTION --- */
.vsc-objection-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.vsc-objection-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.vsc-objection-label {
    color: var(--teal-light) !important;
}

.vsc-objection-heading {
    color: #fff !important;
    position: relative;
    z-index: 1;
}

.vsc-objection-conversation {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.vsc-objection-pair {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vsc-objection-card {
    background: rgba(255,255,255,0.06);
    border-left: 3px solid #E07A5F;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 85%;
}

.vsc-objection-icon {
    color: #E07A5F;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.vsc-objection-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.vsc-response-card {
    background: rgba(129,178,154,0.1);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    align-self: flex-end;
    max-width: 90%;
}

.vsc-response-icon {
    color: var(--teal-light);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.vsc-response-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* --- VSC USE CASE TICKER --- */
.vsc-usecase-section {
    padding: 5rem 0;
    overflow: hidden;
}

.vsc-usecase-inner {
    max-width: none;
    padding: 0;
}

.vsc-usecase-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vsc-usecase-ticker {
    overflow: hidden;
    margin-top: 0.5rem;
}

.vsc-usecase-ticker:hover .vsc-usecase-ticker-track {
    animation-play-state: paused;
}

.vsc-usecase-ticker-track {
    display: flex;
    width: max-content;
    animation: vscTickerScroll 40s linear infinite;
}

.vsc-usecase-card {
    width: 280px;
    flex-shrink: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    margin: 0 0.75rem;
    transition: all 0.25s ease;
}

.vsc-usecase-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.vsc-usecase-icon {
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.vsc-usecase-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.vsc-usecase-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@keyframes vscTickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- VSC STEPS SECTION --- */
.vsc-steps-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.vsc-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.vsc-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
}

.vsc-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.vsc-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(129,178,154,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--teal);
}

.vsc-step-num {
    color: var(--teal);
}

.vsc-step h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.vsc-step p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- VSC FEATURES SECTION --- */
.vsc-features-section {
    padding: 5rem 2rem;
}

/* Feature grid */
.vsc-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.vsc-feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: all 0.25s ease;
}

.vsc-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.vsc-feature-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(129,178,154,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.vsc-feature-card h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.vsc-feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Burn-in highlight card */
.vsc-burnin-highlight {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.vsc-burnin-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(129,178,154,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--teal);
    flex-shrink: 0;
}

.vsc-burnin-content {
    flex: 1;
}

.vsc-burnin-content h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.vsc-burnin-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.vsc-burnin-highlight .btn-primary-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

/* --- VSC TESTIMONIALS — FANNED CARDS --- */
.vsc-testimonials-section {
    padding: 5rem 2rem;
}

.vsc-testimonials-fan {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.vsc-testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--card-accent, var(--teal));
    border-radius: var(--radius-md);
    padding: 2rem;
    width: 320px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.vsc-fan-1 {
    transform: rotate(-3deg) translateY(10px);
}

.vsc-fan-2 {
    transform: rotate(0deg);
    z-index: 1;
}

.vsc-fan-3 {
    transform: rotate(3deg) translateY(10px);
}

.vsc-testimonial-card:hover {
    transform: rotate(0deg) translateY(-5px) scale(1.03);
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.vsc-testimonial-quote {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.vsc-testimonial-attr {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vsc-testimonial-attr strong {
    font-size: 0.85rem;
    color: #fff;
}

.vsc-testimonial-attr span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* --- VSC FINAL CTA --- */
.vsc-final-cta {
    padding: 6rem 2rem;
}

.vsc-cta-link {
    margin-top: 1.25rem;
}

.vsc-cta-link a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.vsc-cta-link a:hover {
    color: #fff;
}

.vsc-cta-link a i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* --- VSC STICKY MOBILE CTA --- */
.vsc-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.vsc-sticky-cta .btn-primary-cta {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
}

.vsc-sticky-visible {
    transform: translateY(0);
}

/* ============================================
   VSC RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1024px) {
    .vsc-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vsc-hero-text {
        padding-right: 0;
    }

    .vsc-hero h1 {
        font-size: 2.6rem;
    }

    .vsc-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .vsc-hero-actions {
        justify-content: center;
    }

    .vsc-hero-visual {
        max-width: 550px;
        margin: 0 auto;
    }

    .vsc-hero-badges,
    .vsc-hero-vid-accent {
        display: none;
    }

    .vsc-section-heading {
        font-size: 1.9rem;
    }

    .vsc-objection-card,
    .vsc-response-card {
        max-width: 100%;
    }

    .vsc-steps-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .vsc-burnin-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .vsc-testimonials-fan {
        flex-direction: column;
        gap: 1.25rem;
    }

    .vsc-testimonial-card {
        width: 100%;
        max-width: 400px;
    }

    .vsc-fan-1,
    .vsc-fan-2,
    .vsc-fan-3 {
        transform: none;
    }

    .vsc-testimonial-card:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .vsc-hero {
        padding: 7rem 1.5rem 3rem;
    }

    .vsc-hero h1 {
        font-size: 2rem;
    }

    .vsc-hero-sub {
        font-size: 0.95rem;
    }

    .vsc-stats-row {
        flex-direction: column;
        gap: 1.25rem;
    }

    .vsc-stat-divider {
        width: 40px;
        height: 1px;
    }

    .vsc-stat strong {
        font-size: 1.8rem;
    }

    .vsc-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vsc-progress-track {
        gap: 0;
    }

    .vsc-progress-line {
        width: 60px;
    }

    .vsc-progress-dot {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .vsc-section-heading {
        font-size: 1.7rem;
    }

    .vsc-objection-section {
        padding: 4rem 1.5rem;
    }

    .vsc-objection-card,
    .vsc-response-card {
        padding: 1rem 1.25rem;
    }

    .vsc-sticky-cta {
        display: block;
    }

    .vsc-usecase-card {
        width: 250px;
        padding: 1.25rem;
    }

    .vsc-srt-text {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .vsc-hero h1 {
        font-size: 1.7rem;
    }

    .vsc-hero-sub {
        font-size: 0.9rem;
    }

    .vsc-hero-actions {
        flex-direction: column;
    }

    .vsc-hero-actions .btn-primary-cta {
        width: 100%;
        justify-content: center;
    }

    .vsc-stat strong {
        font-size: 1.5rem;
    }

    .vsc-feature-grid {
        grid-template-columns: 1fr;
    }

    .vsc-progress-line {
        width: 40px;
        margin: 0 0.4rem;
        margin-bottom: 1.6rem;
    }

    .vsc-progress-dot {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .vsc-progress-step span {
        font-size: 0.7rem;
    }

    .vsc-burnin-highlight {
        padding: 1.5rem;
    }

    .vsc-burnin-highlight .btn-primary-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ADD SUBTITLES PAGE v2 (as2- prefix)
   ============================================ */

/* --- AS2 HERO — Split Layout --- */
.as2-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.as2-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.as2-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem;
    align-items: center;
}

.as2-hero-text {
    padding-right: 1rem;
}

.as2-hero-text .section-label {
    text-align: left;
}

.as2-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.as2-hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}

.as2-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.as2-hero-micro {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Hero Visual — Screenshot + Badges + Video Accent */
.as2-hero-visual {
    position: relative;
}

.as2-hero-visual .hero-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    background: radial-gradient(ellipse at center, rgba(129,178,154,0.2) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.as2-screenshot-frame {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.as2-screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.as2-hero-badges {
    position: absolute;
    top: -0.5rem;
    right: -1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.as2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    white-space: nowrap;
}

.as2-hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--teal);
}

.as2-hero-vid-accent {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    z-index: 2;
}

.as2-hero-vid-accent video {
    width: 304px;
    border-radius: var(--radius-md);
    border: 3px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Hero Partners */
.as2-hero-partners {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem 1.5rem;
}

.as2-locale-badge.locale-badge {
    margin: -1rem 0 1.25rem;
}

/* --- AS2 TRUST STRIP --- */
.as2-trust-strip {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.as2-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.as2-stat {
    text-align: center;
}

.as2-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
}

.as2-stat span {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.as2-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

.as2-engines {
    text-align: center;
}

.as2-engines-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.as2-engine-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.as2-engine-logos img {
    height: 22px;
    opacity: 0.5;
    transition: opacity 0.25s;
}

.as2-engine-logos img:hover {
    opacity: 0.8;
}

/* --- AS2 SECTION HEADINGS --- */
.as2-section-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.as2-section-sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin: -1.5rem auto 2.5rem;
}

/* --- AS2 BEFORE/AFTER SLIDER --- */
.as2-slider-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 5rem 2rem;
}

.as2-readability-row {
    display: grid;
    grid-template-columns: 11fr 13fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.as2-readability-row .cue-mock-source {
    width: 25%;
}

.as2-readability-row .cue-mock-targets {
    width: 75%;
}

.as2-readability-text h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.as2-readability-text p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.7;
}

.as2-slider-divider {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.as2-slider-heading {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.as2-slider-section .as2-section-sub {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    margin: 0.25rem auto 0;
}

.as2-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #2e3147;
    user-select: none;
    cursor: col-resize;
}

.as2-slider-layer {
    width: 100%;
    padding: 2rem 2.5rem;
}

.as2-slider-before {
    background: #2e3147;
}

.as2-slider-after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1c2233;
    clip-path: inset(0 50% 0 0);
    z-index: 1;
    padding: 2rem 2.5rem;
}

.as2-slider-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.65rem;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.as2-slider-label-before {
    background: rgba(231,76,60,0.15);
    color: #e74c3c;
}

.as2-slider-label-after {
    background: rgba(129,178,154,0.15);
    color: var(--teal-light);
}

.as2-slider-content {
    min-height: 180px;
}

.as2-srt-cue {
    margin-bottom: 1.25rem;
}

.as2-srt-cue:last-child {
    margin-bottom: 0;
}

.as2-srt-time {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    font-family: 'SF Mono', 'Fira Code', monospace;
    display: block;
    margin-bottom: 0.3rem;
}

.as2-srt-text {
    font-size: 0.88rem;
    line-height: 1.6;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.as2-slider-before .as2-srt-text {
    color: rgba(255,255,255,0.55);
}

.as2-slider-after .as2-srt-text {
    color: rgba(255,255,255,0.9);
}

.as2-slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    margin-top: 1.5rem;
}

.as2-slider-badge svg {
    width: 13px;
    height: 13px;
}

.as2-slider-badge-bad {
    background: rgba(231,76,60,0.12);
    color: #e74c3c;
}

.as2-slider-badge-good {
    background: rgba(129,178,154,0.12);
    color: var(--teal-light);
}

/* Drag handle */
.as2-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: col-resize;
}

.as2-slider-handle-line {
    width: 2px;
    flex: 1;
    background: rgba(255,255,255,0.25);
}

.as2-slider-handle-grip {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.as2-slider-handle-grip svg {
    width: 16px;
    height: 16px;
}

/* --- AS2 DEMO SECTION --- */
.as2-demo-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.as2-demo-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Progress track */
.as2-progress-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.as2-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.as2-progress-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.5s ease;
}

.as2-progress-dot svg {
    width: 20px;
    height: 20px;
}

.as2-progress-step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.5s ease;
}

.as2-progress-step-active .as2-progress-dot {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.as2-progress-step-active span {
    color: var(--teal);
}

.as2-progress-line {
    width: 100px;
    height: 3px;
    background: var(--border-light);
    border-radius: 3px;
    margin: 0 0.75rem;
    margin-bottom: 1.6rem;
    overflow: hidden;
}

.as2-progress-line-fill {
    height: 100%;
    width: 0%;
    background: var(--teal);
    border-radius: 3px;
    transition: width 1.2s ease;
}

/* Demo active state — triggered by IntersectionObserver */
.as2-demo-active .as2-progress-step:nth-child(1) .as2-progress-dot {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.as2-demo-active .as2-progress-step:nth-child(1) span {
    color: var(--teal);
}

.as2-demo-active .as2-progress-line:nth-of-type(1) .as2-progress-line-fill {
    width: 100%;
    transition-delay: 0.2s;
}

.as2-demo-active .as2-progress-step:nth-child(3) .as2-progress-dot {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transition-delay: 0.6s;
}

.as2-demo-active .as2-progress-step:nth-child(3) span {
    color: var(--teal);
    transition-delay: 0.6s;
}

.as2-demo-active .as2-progress-line:nth-of-type(2) .as2-progress-line-fill {
    width: 100%;
    transition-delay: 0.8s;
}

.as2-demo-active .as2-progress-step:nth-child(5) .as2-progress-dot {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transition-delay: 1.2s;
}

.as2-demo-active .as2-progress-step:nth-child(5) span {
    color: var(--teal);
    transition-delay: 1.2s;
}

/* SRT result */
.as2-srt-result {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease;
    transition-delay: 0.4s;
}

.as2-demo-active .as2-srt-result {
    opacity: 1;
    transform: translateY(0);
}

.as2-srt-preview {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.as2-srt-cue-demo {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
}

.as2-srt-cue-demo:last-child {
    border-bottom: none;
}

.as2-srt-index {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--teal);
    background: rgba(129,178,154,0.1);
    border-radius: 3px;
    padding: 0.1rem 0.4rem;
    margin-right: 0.5rem;
}

.as2-srt-time-demo {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.as2-srt-text-demo {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-top: 0.3rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.as2-quality-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.as2-quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(129,178,154,0.08);
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
}

.as2-quality-badge svg {
    width: 14px;
    height: 14px;
}

/* --- AS2 OBJECTION SECTION --- */
.as2-objection-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.as2-objection-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.as2-objection-label {
    color: var(--teal-light) !important;
}

.as2-objection-heading {
    color: #fff !important;
    position: relative;
    z-index: 1;
}

.as2-objection-conversation {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.as2-objection-pair {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.as2-objection-card {
    background: rgba(255,255,255,0.06);
    border-left: 3px solid #E07A5F;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 85%;
}

.as2-objection-icon {
    color: #E07A5F;
    flex-shrink: 0;
    margin-top: 2px;
}

.as2-objection-icon svg {
    width: 18px;
    height: 18px;
}

.as2-objection-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.as2-response-card {
    background: rgba(129,178,154,0.1);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    align-self: flex-end;
    max-width: 90%;
}

.as2-response-icon {
    color: var(--teal-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.as2-response-icon svg {
    width: 18px;
    height: 18px;
}

.as2-response-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* --- AS2 FEATURE SHOWCASE (Tabbed Split with Videos) --- */
.as2-showcase-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.as2-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.as2-showcase-section .section-inner {
    position: relative;
    z-index: 1;
}

.as2-dark-label {
    color: var(--teal-light) !important;
}

.as2-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.as2-pill-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.as2-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 0.6rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.as2-pill svg {
    width: 15px;
    height: 15px;
}

.as2-pill:hover {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
}

.as2-pill-active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.as2-pill-active:hover {
    background: var(--teal-dark);
    color: #fff;
}

.as2-showcase-panels {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.as2-showcase-panel {
    display: none;
    padding: 2.5rem;
}

.as2-showcase-panel-active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.as2-showcase-text h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.as2-showcase-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.as2-showcase-visual video {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

/* --- AS2 TRANSLATION UPSELL (dark section) --- */
.as2-translate-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.as2-translate-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.as2-translate-section .section-inner {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
    padding-right: 2rem;
}

.as2-translate-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 750px;
    margin: -1rem auto 2.5rem;
    text-align: center;
}

/* --- AS2 TESTIMONIALS (light section) --- */
.as2-testimonials-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.as2-testimonials-grid {
    margin-top: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
}

.as2-testimonials-grid .ent-testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--card-accent, var(--teal));
}

.as2-testimonials-grid .ent-testimonial-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.as2-testimonials-grid .ent-testimonial-quote {
    color: var(--text-primary);
}

.as2-testimonials-grid .ent-testimonial-attr strong {
    color: var(--navy);
}

.as2-testimonials-grid .ent-testimonial-attr span {
    color: var(--text-muted);
}

/* --- AS2 FAQ (reuses faq-section classes) --- */
.as2-faq-section .faq-category {
    max-width: 800px;
    margin: 0 auto;
}

/* --- AS2 STICKY MOBILE CTA BAR --- */
.as2-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.as2-sticky-cta .btn-primary-cta {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
}

.as2-sticky-visible {
    transform: translateY(0);
}

/* ============================================
   AS2 RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1024px) {
    .as2-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .as2-hero-text {
        padding-right: 0;
    }

    .as2-hero-text .section-label {
        text-align: center;
    }

    .as2-hero h1 {
        font-size: 2.8rem;
    }

    .as2-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .as2-hero-actions {
        justify-content: center;
    }

    .as2-hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .as2-section-heading {
        font-size: 1.9rem;
    }

    .as2-showcase-panel-active {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .as2-readability-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .as2-readability-text h2 {
        font-size: 1.9rem;
    }

    .as2-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .as2-hero {
        padding: 7rem 2rem 0;
    }

    .as2-hero h1 {
        font-size: 2rem;
    }

    .as2-hero-sub {
        font-size: 1rem;
    }

    .as2-section-heading {
        font-size: 1.7rem;
    }

    .as2-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .as2-stat-divider {
        width: 40px;
        height: 1px;
    }

    .as2-stat strong {
        font-size: 1.6rem;
    }

    .as2-hero-badges {
        display: none;
    }

    .as2-hero-vid-accent {
        display: none;
    }

    .as2-readability-text h2 {
        font-size: 1.6rem;
    }

    .as2-readability-row .cue-mock-par {
        flex-direction: column;
    }

    .as2-readability-row .cue-mock-source {
        width: 100%;
    }

    .as2-readability-row .cue-mock-targets {
        width: 100%;
    }

    .as2-readability-row .cue-mock-badges {
        justify-content: center;
    }

    .as2-slider-heading {
        font-size: 1.3rem;
    }

    .as2-slider-layer {
        padding: 1.5rem;
    }

    .as2-slider-after {
        padding: 1.5rem;
    }

    .as2-pill-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }

    .as2-pill {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .as2-showcase-panel {
        padding: 1.5rem;
    }

    .as2-objection-card,
    .as2-response-card {
        max-width: 100%;
    }

    .as2-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .as2-sticky-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    .as2-hero {
        padding: 7rem 1.25rem 0;
    }

    .as2-hero h1 {
        font-size: 1.7rem;
    }

    .as2-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .as2-hero-actions .btn-primary-cta {
        width: 100%;
        justify-content: center;
    }

    .as2-section-heading {
        font-size: 1.4rem;
    }

    .as2-slider-container {
        border-radius: var(--radius-sm);
    }

    .as2-srt-text {
        font-size: 0.78rem;
    }

    .as2-showcase-text h3 {
        font-size: 1.15rem;
    }

    .as2-srt-text-demo {
        font-size: 0.78rem;
    }
}

/* ============================================
   SUBTITLE EDITOR PAGE (se- prefix)
   ============================================ */

/* --- SE HERO — Split Layout, Visual on LEFT --- */
.se-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.se-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.se-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.se-desktop-br {
    display: block;
}

.se-hero-visual {
    position: relative;
}

.se-hero-visual .hero-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    background: radial-gradient(ellipse at center, rgba(129,178,154,0.2) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.se-screenshot-frame {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.se-screenshot-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.se-hero-visual .se-screenshot-frame img {
    transform: none;
}

.se-hero-content {
    color: #fff;
}

.se-hero-content .section-label {
    text-align: left;
}

.se-hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.se-hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.se-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.se-hero-micro {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* --- SE SECTION HEADINGS --- */
.se-section-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.se-dark-label {
    color: var(--teal-light) !important;
}

/* --- SE COMPARISON SECTION — Desktop vs. Cloud --- */
.se-comparison-section {
    padding: 5rem 2rem;
}

.se-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.se-comparison-panel {
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.se-comparison-panel h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.se-comparison-panel ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.se-comparison-panel li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.4;
}

.se-comparison-desktop {
    background: #f0f1f4;
    border: 1px solid var(--border-light);
}

.se-comparison-desktop h3 {
    color: var(--text-muted);
}

.se-comparison-desktop li {
    color: var(--text-muted);
}

.se-comparison-desktop li svg {
    color: #c0392b;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.se-comparison-cloud {
    background: var(--bg-white);
    border: 2px solid rgba(129,178,154,0.4);
    border-left: 4px solid var(--teal);
    box-shadow: var(--shadow-md);
}

.se-comparison-cloud h3 {
    color: var(--navy);
}

.se-comparison-cloud li {
    color: var(--text-primary);
    font-weight: 500;
}

.se-comparison-cloud li svg {
    color: var(--teal);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.se-comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-muted);
    padding: 0 1.25rem;
    background: transparent;
}

/* --- SE FEATURE SHOWCASE — Tabbed with Dark BG --- */
.se-showcase-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.se-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.se-showcase-section .section-inner {
    position: relative;
    z-index: 1;
}

.se-showcase {
    max-width: 1100px;
    margin: 0 auto;
}

.se-pill-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.se-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 0.6rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.se-pill svg {
    width: 15px;
    height: 15px;
}

.se-pill:hover {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
}

.se-pill-active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.se-pill-active:hover {
    background: var(--teal-dark);
    color: #fff;
}

.se-showcase-panels {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.se-showcase-panel {
    display: none;
    padding: 2.5rem;
}

.se-showcase-panel-active {
    display: block;
    position: relative;
    min-height: 220px;
}

.se-showcase-visual {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    opacity: 0.85;
}

.se-showcase-visual .se-screenshot-frame {
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.se-showcase-panel:hover .se-showcase-visual {
    opacity: 1;
}

.se-showcase-panel:hover .se-showcase-visual .se-screenshot-frame {
    transform: translateY(-3px);
}


.se-screenshot-placeholder {
    background: rgba(255,255,255,0.06);
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.3);
}

.se-screenshot-placeholder i {
    font-size: 2rem;
}

.se-screenshot-placeholder span {
    font-size: 0.8rem;
    font-weight: 600;
}

.se-showcase-text {
    color: #fff;
    max-width: 58%;
}

.se-showcase-text h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.se-showcase-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.se-showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.se-showcase-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.se-showcase-list li svg {
    color: var(--teal-light);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* --- SE FEATURES — Highlights + Checklist --- */
.se-grid-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

/* Top 4 highlight features — full-width rows */
.se-highlights {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.se-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--teal);
}

.se-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.se-highlight-icon svg {
    width: 20px;
    height: 20px;
}

.se-highlight-text h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.se-highlight-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Remaining features — compact 2-col checklist */
.se-checklist {
    max-width: 800px;
    margin: 0 auto;
    columns: 2;
    column-gap: 2rem;
}

.se-check-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.45;
    break-inside: avoid;
}

.se-check-item > svg {
    color: var(--teal);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    position: relative;
    top: 2px;
}

.se-check-item strong {
    color: var(--navy);
    font-weight: 600;
}

/* --- SE FORMAT COMPATIBILITY STRIP --- */
.se-formats-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    color: #fff;
}

.se-formats-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 0.75rem;
}

.se-formats-note {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    text-align: center;
    margin-bottom: 2rem;
}

.se-formats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.se-formats-group {
    text-align: center;
}

.se-formats-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--teal-light);
    margin-bottom: 0.6rem;
}

.se-format-badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.se-format-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.15);
}

.se-format-badge-ai {
    background: rgba(129,178,154,0.15);
    color: var(--teal-light);
    border-color: rgba(129,178,154,0.3);
}

.se-format-badge-output {
    background: rgba(129,178,154,0.15);
    color: var(--teal-light);
    border-color: rgba(129,178,154,0.3);
}

.se-formats-arrow {
    color: var(--teal-light);
    font-size: 1.2rem;
}

/* --- SE MIGRATION SECTION --- */
.se-migration-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.se-migration-card {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--teal), #4a90d9) 1;
}

.se-migration-card h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.se-migration-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.se-migration-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.se-migration-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.se-migration-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    box-shadow: 0 0 0 6px rgba(129,178,154,0.15);
}

.se-migration-step h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.se-migration-step p {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.se-migration-connector {
    width: 50px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--border-medium) 0,
        var(--border-medium) 8px,
        transparent 8px,
        transparent 14px
    );
    flex-shrink: 0;
    margin-bottom: 2rem;
}

/* --- SE USE CASES — 2x3 Grid --- */
.se-usecases-section {
    padding: 5rem 2rem;
}

.se-usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.se-usecase-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: all 0.25s ease;
}

.se-usecase-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-bottom: 3px solid var(--teal);
}

.se-usecase-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.se-usecase-icon svg {
    width: 20px;
    height: 20px;
}

.se-usecase-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.se-usecase-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- SE TESTIMONIALS (overrides for grid) --- */
.se-testimonials-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* --- SE FAQ --- */
.se-faq-section .faq-category {
    max-width: 800px;
    margin: 0 auto;
}

/* --- SE STICKY MOBILE CTA BAR --- */
.se-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.se-sticky-cta .btn-primary-cta {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
}

.se-sticky-visible {
    transform: translateY(0);
}

/* ============================================
   SE RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1024px) {
    .se-desktop-br {
        display: none;
    }

    .se-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .se-hero-visual {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .se-hero-content {
        order: 1;
    }

    .se-hero h1 {
        font-size: 2.5rem;
    }

    .se-hero-sub {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .se-hero-actions {
        justify-content: center;
    }

    .se-section-heading {
        font-size: 1.9rem;
    }

    .se-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .se-showcase-visual {
        display: none;
    }

    .se-showcase-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .se-hero h1 {
        font-size: 2rem;
    }

    .se-hero-sub {
        font-size: 1rem;
    }

    .se-section-heading {
        font-size: 1.7rem;
    }

    .se-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .se-comparison-vs {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .se-pill-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }

    .se-pill {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .se-highlight {
        padding: 1.25rem;
        gap: 1rem;
    }

    .se-checklist {
        columns: 1;
    }

    .se-usecases-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .se-testimonials-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .se-formats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .se-formats-arrow {
        transform: rotate(90deg);
    }

    .se-migration-steps {
        flex-direction: column;
        gap: 0;
    }

    .se-migration-connector {
        width: 2px;
        height: 30px;
        margin-bottom: 0;
        background: repeating-linear-gradient(
            180deg,
            var(--border-medium) 0,
            var(--border-medium) 6px,
            transparent 6px,
            transparent 10px
        );
    }

    .se-migration-card {
        padding: 2rem;
    }

    .se-migration-card h2 {
        font-size: 1.6rem;
    }

    .se-sticky-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    .se-hero {
        padding: 7rem 1.25rem 3rem;
    }

    .se-hero h1 {
        font-size: 1.7rem;
    }

    .se-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .se-hero-actions .btn-secondary-cta,
    .se-hero-actions .btn-primary-cta {
        width: 100%;
        justify-content: center;
    }

    .se-section-heading {
        font-size: 1.4rem;
    }

    .se-comparison-panel {
        padding: 1.25rem;
    }

    .se-showcase-panel {
        padding: 1.5rem;
    }

    .se-usecase-card {
        padding: 1.25rem;
    }

    .se-migration-card {
        padding: 1.5rem;
    }

    .se-migration-card h2 {
        font-size: 1.4rem;
    }
}


/* ========================================
   YOUTUBE SUBTITLES PAGE (yt- prefix)
   ======================================== */

/* Audience qualifier line below hero */
.yt-audience-qualifier {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 2rem;
    letter-spacing: 0.02em;
}

/* YouTube-themed SRT badge */
.yt-badge-srt {
    background: #ff4444 !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.25) !important;
}

.yt-badge-srt i,
.yt-badge-srt svg {
    color: #fff !important;
}

/* Trust line with stars */
.yt-trust-line {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.yt-trust-stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Features — 2x2 Card Grid */
.yt-features-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.yt-feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yt-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.yt-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.yt-feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.yt-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Lucide SVG icons — hero badges, step icons, feature icons */
.as-hero-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal);
    stroke-width: 2;
}

.yt-badge-srt svg {
    stroke: #fff !important;
}

.as-step-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
    stroke-width: 1.75;
}

.yt-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    stroke-width: 1.75;
}

/* Video showcase strip — 3 videos, center foreground */
.yt-vid-strip {
    padding: 3rem 2rem;
    background: var(--bg-white);
    overflow: hidden;
}

.yt-vid-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.yt-vid-strip-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.8);
}

.yt-vid-strip-item video {
    display: block;
    width: 100%;
    height: auto;
}

.yt-vid-strip-main {
    width: 52%;
    flex-shrink: 0;
    z-index: 3;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    border: 3px solid #fff;
}

.yt-vid-strip-bg {
    width: 30%;
    flex-shrink: 0;
    z-index: 1;
    opacity: 0.65;
    transform: scale(0.82) translateX(120px);
    filter: blur(0.5px);
    will-change: transform, opacity;
}

.yt-vid-strip-bg:last-child {
    transform: scale(0.82) translateX(-120px);
}

/* Responsive — YouTube features */
@media (max-width: 768px) {
    .yt-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .yt-vid-strip-inner {
        gap: 0.75rem;
    }

    .yt-vid-strip-main {
        width: 60%;
    }

    .yt-vid-strip-bg {
        width: 28%;
    }
}

@media (max-width: 480px) {
    .yt-features-section {
        padding: 3rem 1.5rem;
    }

    .yt-vid-strip {
        padding: 2rem 1rem;
    }

    .yt-vid-strip-bg {
        display: none;
    }

    .yt-vid-strip-main {
        width: 85%;
    }

    .yt-feature-card {
        padding: 1.5rem;
    }
}


/* ========================================
   404 PAGE
   ======================================== */

.notfound-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.notfound-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.notfound-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.notfound-hero .section-label {
    margin-bottom: 1rem;
}

.notfound-code {
    font-family: var(--font-serif);
    font-size: 8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 1rem;
}

.notfound-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Mock player frame */
.notfound-player {
    background: #1a1e2e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    margin-bottom: 2rem;
}

.notfound-player-screen {
    aspect-ratio: 16 / 7;
    background: linear-gradient(180deg, #12151f 0%, #1a1e2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.notfound-cc-icon {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.08);
}

.notfound-caption-bar {
    position: relative;
    height: 3rem;
    background: #111420;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notfound-caption-line {
    position: absolute;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    white-space: nowrap;
}

.notfound-caption-line.active {
    opacity: 1;
    transform: translateY(0);
}

.notfound-msg {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.notfound-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 404 responsive */
@media (max-width: 768px) {
    .notfound-code { font-size: 5rem; }
    .notfound-sub { font-size: 1.05rem; }
    .notfound-hero { padding: 7rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
    .notfound-code { font-size: 4rem; }
    .notfound-sub { font-size: 0.95rem; }
    .notfound-actions { flex-direction: column; }
    .notfound-actions a { width: 100%; text-align: center; }
}

/* ========================================
   ZOOM CAPTIONS TRANSLATION PAGE (zm-)
   ======================================== */

.zm-hero {
    padding-bottom: 5rem;
}

.zm-hero-visual {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.zm-hero-visual .hero-glow {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background: radial-gradient(ellipse at center, rgba(129,178,154,0.18) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Zoom-style video frame */
.zm-video-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
    background: #1a1a2e;
    border: 2px solid rgba(255,255,255,0.1);
}

.zm-frame-titlebar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #1a1a2e;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.zm-frame-dots {
    display: flex;
    gap: 5px;
}

.zm-frame-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.zm-frame-dots span:nth-child(1) { background: #ff5f57; }
.zm-frame-dots span:nth-child(2) { background: #febc2e; }
.zm-frame-dots span:nth-child(3) { background: #28c840; }

.zm-frame-title {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.zm-video-frame video {
    display: block;
    width: 100%;
    height: auto;
}

/* Floating translation pills */
.zm-translation-pills {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.zm-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(30,30,50,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 0.4rem 0.8rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px) scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zm-pill-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.zm-pill i {
    font-size: 0.55rem;
    color: var(--teal-light);
}

.zm-pill-from {
    font-family: 'Courier New', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    color: rgba(255,255,255,0.55);
}

.zm-pill-to {
    font-family: 'Courier New', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    background: var(--teal);
    color: #fff;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}

.zm-pill-text {
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* Pill positions — balanced: 3 left, 2 right, evenly spaced */
.zm-pill-1 { top: 10%; left: -26%; }
.zm-pill-2 { top: 42%; left: -24%; }
.zm-pill-3 { bottom: 10%; left: -28%; }
.zm-pill-4 { top: 22%; right: -26%; }
.zm-pill-5 { bottom: 22%; right: -28%; }

/* Hero partners on Zoom page */
.zm-hero-partners {
    margin-top: 3rem;
}

/* --- ZM RESPONSIVE --- */
@media (max-width: 1024px) {
    .zm-pill-1 { left: -18%; }
    .zm-pill-2 { left: -16%; }
    .zm-pill-3 { left: -20%; }
    .zm-pill-4 { right: -18%; }
    .zm-pill-5 { right: -20%; }
}

@media (max-width: 768px) {
    .zm-hero-visual {
        max-width: 90%;
    }

    .zm-translation-pills {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1.5rem;
        pointer-events: auto;
    }

    .zm-pill {
        position: static;
    }

    .zm-frame-titlebar {
        padding: 0.4rem 0.75rem;
    }

    .zm-frame-dots span {
        width: 8px;
        height: 8px;
    }

    .zm-frame-title {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .zm-hero {
        padding-bottom: 3rem;
    }

    .zm-video-frame {
        border-radius: 8px;
    }

    .zm-pill {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* =====================================================
   HOMEPAGE — Feature Grid, Gallery & Comparison
   ===================================================== */

/* --- HP FEATURE CARDS (4-col image + text) --- */
.hp-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hp-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-card:hover {
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hp-card-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(0,0,0,0.15);
}

.hp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hp-card:hover .hp-card-img img {
    transform: scale(1.03);
}

.hp-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 1rem 1.25rem 0.35rem;
}

.hp-card p {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
    margin: 0 1.25rem 1.25rem;
}

/* --- HP COMPARISON SECTION --- */
.hp-comparison {
    padding: 5rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.hp-comparison .st-comparison-grid {
    max-width: 960px;
}

.hp-comparison .st-comparison-side {
    display: flex;
    flex-direction: column;
}

.hp-comparison .st-comparison-cues {
    flex: 1;
}

.hp-comparison .st-comparison-badge,
.hp-comparison .st-comparison-issue {
    white-space: nowrap;
}

.hp-comparison .st-comparison-source {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0,0,0,0.03);
    border-radius: var(--radius-sm);
    line-height: 1.5;
}

.hp-comparison .st-comparison-source strong {
    font-style: normal;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.2rem;
}

.hp-comparison .section-label {
    text-align: center;
}

.hp-comparison h2 {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2.5rem;
}

/* --- HP FEATURE GRID HEADING --- */
.hp-grid-heading {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 3.5rem auto 2rem;
    max-width: 700px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hp-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 640px;
    }
}

@media (max-width: 768px) {
    .hp-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .hp-grid-heading {
        font-size: 1.5rem;
    }

    .hp-comparison h2 {
        font-size: 1.6rem;
    }
}

/* ============================================
   VIDEO TRANSCRIPTION PAGE (vt-)
   ============================================ */

/* --- VT LUCIDE ICON SIZING (SVG-based, replaces FA font-size) --- */
/* Inline icons in buttons, links, labels */
.vt-hero i svg,
.vt-quality-section i svg,
.vt-diff-section i svg,
.vt-workflow-section i svg,
.vt-features-section i svg,
.vt-usecases-section i svg,
.vt-upsell-section i svg,
.vt-formats-section i svg,
.vt-faq-section i svg,
.vt-final-cta i svg,
.vt-sticky-cta i svg {
    display: block;
}

/* Inline arrow icons in CTA buttons and text links */
.btn-primary-cta i svg,
.btn-secondary-cta i svg,
.text-link i svg {
    width: 16px;
    height: 16px;
}

/* Comparison label icons */
.vt-comparison-label i svg {
    width: 16px;
    height: 16px;
}

.vt-comparison-issue i svg,
.vt-comparison-badge i svg {
    width: 14px;
    height: 14px;
}

/* Diff grid heading icons */
.vt-diff-col h3 i svg {
    width: 18px;
    height: 18px;
}

/* Homepage Lucide icon sizing */
.step-icon svg {
    width: 20px;
    height: 20px;
}

.app-card-icon svg {
    width: 20px;
    height: 20px;
}

.cue-mock-badge svg {
    width: 12px;
    height: 12px;
}

.st-comparison-label svg {
    width: 14px;
    height: 14px;
}

.st-comparison-badge svg,
.st-comparison-issue svg {
    width: 12px;
    height: 12px;
}

.btn-primary-cta svg,
.btn-secondary-cta svg {
    width: 16px;
    height: 16px;
}

/* --- VT HERO — Split Layout --- */
.vt-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.vt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.vt-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vt-hero-text {
    max-width: 560px;
}

.vt-hero-text .section-label {
    text-align: left;
}

.vt-hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.vt-hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vt-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.vt-hero-micro {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.vt-hero-partners {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-bottom: 1rem;
}

.vt-hero-partners .partner-logos img {
    height: 16px;
}

.vt-hero-partners .partner-logos img.logo-bumped {
    height: 19px;
}

.vt-hero-partners .partner-logos img.logo-heavy {
    height: 12px;
}

.vt-hero-partners .partner-logos img.logo-slim {
    height: 14px;
}

/* --- VT HERO VISUAL --- */
.vt-hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.4 / 1;
    overflow: visible;
}

.vt-hero-visual .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(129,178,154,0.35) 0%, rgba(129,178,154,0.12) 35%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Main video in hero */
.vt-hero-video {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
    z-index: 2;
}

.vt-hero-video video {
    display: block;
    width: 100%;
    height: auto;
}

/* Floating transcript preview card */
.vt-transcript-preview {
    position: absolute;
    bottom: 8%;
    right: -8%;
    width: 60%;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.05);
    z-index: 10;
    overflow: hidden;
}

.vt-transcript-header {
    background: var(--navy);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.vt-transcript-header i svg {
    color: var(--teal-light);
    width: 14px;
    height: 14px;
}

.vt-transcript-body {
    padding: 0.75rem 1rem;
}

.vt-transcript-body p {
    font-size: 0.72rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.vt-transcript-body p:last-child {
    margin-bottom: 0;
}

.vt-transcript-body strong {
    color: var(--teal);
    font-weight: 700;
}

.vt-transcript-body p + p {
    border-top: 1px solid var(--border-light);
    padding-top: 0.5rem;
}

/* --- VT TRUST STRIP --- */
.vt-trust-strip {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.vt-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.vt-stat {
    text-align: center;
}

.vt-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.vt-stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.vt-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

.vt-engines {
    text-align: center;
}

.vt-engines-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.vt-engine-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.vt-engine-logos img {
    height: 22px;
    opacity: 0.5;
    transition: opacity 0.25s;
}

.vt-engine-logos img:hover {
    opacity: 0.8;
}

/* --- VT SECTION HEADINGS --- */
.vt-section-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

/* --- VT TRANSCRIPT QUALITY COMPARISON --- */
.vt-quality-section {
    padding: 5rem 2rem;
}

.vt-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.vt-comparison-side {
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.vt-comparison-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.vt-comparison-generic {
    background: #fff;
    border: 1px solid var(--border-light);
}

.vt-comparison-generic .vt-comparison-label {
    color: #c0392b;
}

.vt-comparison-text {
    flex: 1;
}

.vt-comparison-text p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.vt-comparison-text p:last-child {
    margin-bottom: 0;
}

.vt-comparison-generic .vt-comparison-text p {
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
}

.vt-comparison-fluen {
    background: #fff;
    border: 1px solid rgba(129,178,154,0.3);
    border-left: 3px solid var(--teal);
}

.vt-comparison-fluen .vt-comparison-label {
    color: var(--teal);
}

.vt-comparison-fluen .vt-comparison-text p {
    color: var(--text-primary);
}

.vt-comparison-issue {
    font-size: 0.75rem;
    color: #e74c3c;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.vt-comparison-badge {
    font-size: 0.75rem;
    color: var(--teal);
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(129,178,154,0.2);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Quality badges row below comparison */
.vt-quality-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.vt-quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(129,178,154,0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.vt-quality-badge i svg {
    width: 13px;
    height: 13px;
}

/* --- VT WORKFLOW / HORIZONTAL TIMELINE --- */
.vt-workflow-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.vt-timeline {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding-top: 2rem;
}

.vt-timeline-line {
    position: absolute;
    top: calc(2rem + 18px);
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--border-medium) 0,
        var(--border-medium) 8px,
        transparent 8px,
        transparent 14px
    );
    z-index: 0;
}

.vt-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vt-timeline-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 0 6px rgba(129,178,154,0.15);
}

.vt-timeline-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    max-width: 280px;
    flex: 1;
    transition: all 0.25s ease;
}

.vt-timeline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.vt-timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.vt-timeline-icon i svg {
    width: 20px;
    height: 20px;
}

.vt-timeline-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.vt-timeline-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- VT DIFFERENTIATION GRID --- */
.vt-diff-section {
    padding: 5rem 2rem;
}

.vt-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.vt-diff-col {
    border-radius: var(--radius-md);
    padding: 2rem;
}

.vt-diff-col h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vt-diff-col ul {
    list-style: none;
    padding: 0;
}

.vt-diff-col li {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.vt-diff-col li i {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.vt-diff-col li i svg {
    width: 15px;
    height: 15px;
}

.vt-diff-problems {
    background: #fff;
    border: 1px solid var(--border-light);
}

.vt-diff-problems h3 {
    color: #c0392b;
}

.vt-diff-problems li i {
    color: #e74c3c;
}

.vt-diff-problems li {
    color: var(--text-secondary);
}

.vt-diff-fluen {
    background: #fff;
    border: 1px solid rgba(129,178,154,0.3);
    border-left: 3px solid var(--teal);
}

.vt-diff-fluen h3 {
    color: var(--teal);
}

.vt-diff-fluen li i {
    color: var(--teal);
}

.vt-diff-fluen li {
    color: var(--text-primary);
}

/* --- VT FEATURES GRID --- */
.vt-features-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
}

.vt-features-section .section-label {
    color: var(--teal-light);
}

.vt-features-section .vt-section-heading {
    color: #fff;
}

.vt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.vt-feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.25s ease;
}

.vt-feature-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.vt-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(129,178,154,0.15);
    color: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.vt-feature-icon i svg {
    width: 18px;
    height: 18px;
}

.vt-feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.vt-feature-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.vt-feature-card-highlight {
    border-left: 3px solid var(--teal-light);
    background: rgba(129,178,154,0.12);
}

/* --- VT USE CASES — Persona Groups --- */
.vt-usecases-section {
    padding: 5rem 2rem;
}

.vt-persona-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vt-persona-group {
    display: grid;
    grid-template-rows: 200px 1fr 1fr;
    gap: 0.75rem;
}

.vt-persona-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-light);
}

.vt-persona-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.vt-usecase-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all 0.25s ease;
}

.vt-usecase-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.vt-usecase-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.vt-usecase-icon i svg {
    width: 16px;
    height: 16px;
}

.vt-usecase-card h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.vt-usecase-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* --- VT TESTIMONIALS (2-column override) --- */
.vt-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* --- VT UPSELL BRIDGE --- */
.vt-upsell-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
}

.vt-upsell-heading {
    color: #fff !important;
}

.vt-upsell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.vt-upsell-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
}

.vt-upsell-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.vt-upsell-card-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vt-upsell-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.vt-upsell-card-content {
    padding: 1.5rem;
}

.vt-upsell-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(129,178,154,0.15);
    color: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.vt-upsell-icon i svg {
    width: 18px;
    height: 18px;
}

.vt-upsell-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.vt-upsell-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* --- VT FORMATS + PRICING TEASER --- */
.vt-formats-section {
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.vt-formats-heading {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.vt-formats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.vt-formats-group {
    text-align: center;
}

.vt-formats-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.vt-format-badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.vt-format-badge {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg-white);
    color: var(--navy);
    border: 1px solid var(--border-light);
}

.vt-format-badge-output {
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    border-color: rgba(129,178,154,0.25);
}

.vt-formats-arrow {
    color: var(--teal);
}

.vt-formats-arrow i svg {
    width: 22px;
    height: 22px;
}

.vt-pricing-teaser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-white);
    border: 1px solid rgba(129,178,154,0.3);
    border-left: 3px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 1.5rem 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.vt-pricing-teaser-text {
    font-size: 1rem;
    color: var(--navy);
}

.vt-pricing-teaser-text strong {
    font-size: 1.05rem;
}

.vt-pricing-teaser-sub {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* --- VT FAQ --- */
.vt-faq-section .faq-category {
    max-width: 800px;
    margin: 0 auto;
}

/* --- VT STICKY MOBILE CTA BAR --- */
.vt-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.vt-sticky-cta .btn-primary-cta {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
}

.vt-sticky-visible {
    transform: translateY(0);
}

/* --- VT RESPONSIVE --- */
@media (max-width: 1024px) {
    .vt-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .vt-hero-text {
        max-width: 700px;
        margin: 0 auto;
    }

    .vt-hero-actions {
        justify-content: center;
    }

    .vt-hero h1 {
        font-size: 2.5rem;
    }

    .vt-hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .vt-section-heading {
        font-size: 1.9rem;
    }

    .vt-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-persona-groups {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding-top: 0;
    }

    .vt-timeline-line {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        background: repeating-linear-gradient(
            180deg,
            var(--border-medium) 0,
            var(--border-medium) 8px,
            transparent 8px,
            transparent 14px
        );
    }

    .vt-timeline-step {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .vt-timeline-card {
        max-width: 400px;
    }

}

@media (max-width: 768px) {
    .vt-hero h1 {
        font-size: 2rem;
    }

    .vt-hero-sub {
        font-size: 1rem;
    }

    .vt-hero-visual {
        aspect-ratio: auto;
    }

    .vt-hero-video {
        width: 100%;
    }

    .vt-transcript-preview {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .vt-section-heading {
        font-size: 1.7rem;
    }

    .vt-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .vt-stat-divider {
        width: 40px;
        height: 1px;
    }

    .vt-stat strong {
        font-size: 1.6rem;
    }

    .vt-comparison {
        grid-template-columns: 1fr;
    }

    .vt-diff-grid {
        grid-template-columns: 1fr;
    }

    .vt-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .vt-persona-groups {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .vt-upsell-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .vt-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .vt-formats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .vt-formats-arrow {
        transform: rotate(90deg);
    }

    .vt-pricing-teaser {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .vt-sticky-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    .vt-hero {
        padding: 7rem 1.25rem 2rem;
    }

    .vt-hero h1 {
        font-size: 1.7rem;
    }

    .vt-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .vt-hero-actions .btn-secondary-cta {
        width: 100%;
        justify-content: center;
    }

    .vt-hero-actions .btn-primary-cta {
        width: 100%;
        justify-content: center;
    }

    .vt-section-heading {
        font-size: 1.4rem;
    }

    .vt-diff-col {
        padding: 1.25rem;
    }

    .vt-timeline-card {
        padding: 1.25rem;
    }

    .vt-feature-card {
        padding: 1.25rem;
    }

    .vt-transcript-body p {
        font-size: 0.68rem;
    }
}

/* =====================================================
   TRANSLATE TO ENGLISH PAGE (te- prefix)
   ===================================================== */

/* --- TE HERO --- */
.te-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.te-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.te-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0.75rem 0 1.25rem;
}

.te-hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 680px;
    margin: 0 auto 1.5rem;
}

.te-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.te-hero-micro {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
}

.te-hero-partners {
    margin-bottom: 3rem;
}

/* --- TE HERO VISUAL — Lanes + Screenshot + EN Badge --- */
.te-hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

/* Source language pill lanes */
.te-source-lane {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 1;
}

/* Source pills — stacked in lanes */
.te-source-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(30,30,50,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.te-source-lane-right .te-source-pill {
    transform: translateX(12px);
}

.te-pill-visible {
    opacity: 1;
    transform: translateX(0);
}

.te-source-pill .flag-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.te-pill-code {
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.te-pill-arrow {
    width: 12px;
    height: 12px;
    color: var(--teal-light);
    opacity: 0.6;
}

/* Center: product screenshot */
.te-hero-screenshot {
    position: relative;
    z-index: 2;
}

.te-hero-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* EN output badge — below the grid, centered */
.te-en-output {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    background: var(--teal);
    color: #fff;
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    width: fit-content;
    margin: 0.75rem auto 0;
    box-shadow: 0 4px 20px rgba(129, 178, 154, 0.35);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.te-en-visible {
    opacity: 1;
    transform: translateY(0);
}

.te-en-output .flag-icon {
    width: 20px;
    height: 20px;
}

.te-en-label {
    letter-spacing: 0.02em;
}

.te-en-check {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

/* --- TE QUALITY — pin bubbles to bottom --- */
.te-quality .st-comparison-side {
    display: flex;
    flex-direction: column;
}

.te-quality .st-comparison-cues {
    flex: 1;
}

/* --- TE REFINEMENT PIPELINE --- */
.te-refinement-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.te-section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0.5rem 0 1rem;
    color: var(--text-primary);
}

.te-section-sub {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.te-pipeline-stages {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
}

.te-stage-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.te-stage-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.te-stage-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), #6f9e87);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
}
.te-stage-icon svg {
    width: 22px;
    height: 22px;
}

.te-stage-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.te-stage-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.te-stage-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 3rem;
}
.te-stage-arrow svg {
    width: 18px;
    height: 18px;
}

/* --- TE SPEED SECTION --- */
.te-speed-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #353852 100%);
    color: #fff;
}

.te-speed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.te-speed-content .section-label {
    text-align: left;
    color: var(--teal-light);
}

.te-speed-content .te-section-heading {
    text-align: left;
    font-size: 2rem;
    color: #fff;
}

.te-speed-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.te-speed-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.te-speed-point-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(129, 178, 154, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.te-speed-point-icon svg {
    width: 18px;
    height: 18px;
}

.te-speed-point strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.te-speed-point p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
}

.te-speed-visual {
    position: relative;
}

.te-speed-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* --- TE TESTIMONIALS (2-col) --- */
.te-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

/* --- TE PIPELINE DARK (How It Works) --- */
.te-pipeline-dark {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1e2433 100%);
    border-top: none;
    border-bottom: none;
}

.te-pipeline-dark .section-label {
    color: var(--teal-light);
}

.te-pipeline-dark .st-section-heading {
    color: #fff;
}

.te-pipeline-dark .st-pipeline-line {
    background: linear-gradient(180deg, var(--teal-light) 0%, var(--teal) 100%);
    opacity: 0.4;
}

.te-pipeline-dark .st-pipeline-dot {
    box-shadow: 0 0 0 6px var(--charcoal);
}

.te-pipeline-dark .st-pipeline-card {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.te-pipeline-dark .st-pipeline-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.08);
}

.te-pipeline-dark .st-pipeline-card h3 {
    color: #fff;
}

.te-pipeline-dark .st-pipeline-card p {
    color: rgba(255,255,255,0.7);
}

.te-pipeline-dark .st-pipeline-icon {
    background: rgba(129,178,154,0.15);
    color: var(--teal-light);
}

/* --- TE TICKER HEADING --- */
.te-ticker-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* --- TE ROTATING TEXT (Final CTA) --- */
.te-rotating-subtitle {
    margin-bottom: 1rem;
}

.te-rotating-text {
    font-size: 1.1rem;
    color: var(--teal-light);
    font-weight: 600;
    transition: opacity 0.4s ease;
    display: inline-block;
}

/* --- TE RESPONSIVE --- */
@media (max-width: 1024px) {
    .te-hero h1 {
        font-size: 2.8rem;
    }

    .te-pipeline-stages {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .te-stage-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .te-stage-arrow {
        display: none;
    }

    .te-speed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .te-speed-content .te-section-heading {
        text-align: center;
    }

    .te-speed-content .section-label {
        text-align: center;
    }

    .te-speed-visual {
        max-width: 550px;
        margin: 0 auto;
    }

    .te-ticker-heading {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .te-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .te-hero h1 {
        font-size: 2rem;
    }

    .te-hero-sub {
        font-size: 1rem;
    }

    .te-hero-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 560px;
    }

    .te-source-lane {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .te-source-lane-right {
        order: -1;
    }

    .te-source-pill {
        transform: translateY(-8px);
    }

    .te-source-lane-right .te-source-pill {
        transform: translateY(-8px);
    }

    .te-pill-visible {
        transform: translateY(0);
    }

    .te-pill-arrow {
        display: none;
    }

    .te-section-heading {
        font-size: 1.8rem;
    }

    .te-pipeline-stages {
        flex-direction: column;
        align-items: stretch;
    }

    .te-stage-card {
        flex: 1;
    }

    .te-ticker-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .te-hero h1 {
        font-size: 1.7rem;
    }

    .te-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .te-source-pill {
        padding: 0.3rem 0.6rem;
        font-size: 0.72rem;
    }

    .te-section-heading {
        font-size: 1.5rem;
    }

    .te-speed-content .te-section-heading {
        font-size: 1.5rem;
    }
}

/* ============================================
   AUDIO TO TEXT CONVERTER PAGE (at-)
   ============================================ */

/* --- AT LUCIDE ICON SIZING --- */
.at-hero i svg,
.at-demo-section i svg,
.at-glossary-section i svg,
.at-compare-section i svg,
.at-workflow-section i svg,
.at-features-section i svg,
.at-usecases-section i svg,
.at-upsell-section i svg,
.at-formats-section i svg,
.at-faq-section i svg,
.at-final-cta i svg,
.at-sticky-cta i svg {
    display: block;
}

/* --- AT HERO — Centered Layout --- */
.at-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 8rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.at-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.at-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.at-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.at-hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.at-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.at-hero-micro {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3rem;
}

/* --- AT HERO TRANSFORMATION VISUAL --- */
.at-hero-visual {
    max-width: 850px;
    margin: 0 auto 2rem;
}

.at-transform-container {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    justify-content: center;
}

.at-audio-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    flex: 0 1 260px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.at-audio-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(129,178,154,0.15);
    color: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.at-audio-icon i svg {
    width: 18px;
    height: 18px;
}

.at-audio-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.at-audio-filename {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.at-audio-duration {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* CSS Waveform bars in audio card */
.at-waveform-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 32px;
    margin-top: auto;
}

.at-waveform-bars span {
    flex: 1;
    background: var(--teal);
    border-radius: 2px;
    opacity: 0.5;
    animation: at-bar-bounce 1.2s ease-in-out infinite;
}

.at-waveform-bars span:nth-child(odd) { height: 40%; animation-delay: 0s; }
.at-waveform-bars span:nth-child(2n) { height: 70%; animation-delay: 0.15s; }
.at-waveform-bars span:nth-child(3n) { height: 90%; animation-delay: 0.3s; }
.at-waveform-bars span:nth-child(4n) { height: 55%; animation-delay: 0.45s; }
.at-waveform-bars span:nth-child(5n) { height: 80%; animation-delay: 0.1s; }
.at-waveform-bars span:nth-child(7n) { height: 35%; animation-delay: 0.2s; }

@keyframes at-bar-bounce {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

/* Arrow/pipeline between cards */
.at-transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0 0.5rem;
}

.at-arrow-line {
    width: 2px;
    height: 30px;
    background: repeating-linear-gradient(
        180deg,
        rgba(129,178,154,0.4) 0,
        rgba(129,178,154,0.4) 4px,
        transparent 4px,
        transparent 8px
    );
}

.at-arrow-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(129,178,154,0.15);
    color: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.at-arrow-icon i svg {
    width: 16px;
    height: 16px;
}

/* Transcript output card */
.at-transcript-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(129,178,154,0.25);
    border-left: 3px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    flex: 0 1 380px;
    text-align: left;
}

.at-transcript-header {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.at-transcript-header i svg {
    width: 14px;
    height: 14px;
}

.at-accuracy-badge {
    margin-left: auto;
    background: rgba(129,178,154,0.2);
    color: var(--teal-light);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.at-transcript-body p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.6rem;
}

.at-transcript-body p:last-child {
    margin-bottom: 0;
}

/* Hero partners */
.at-hero-partners {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-bottom: 1rem;
}

.at-hero-partners .partner-logos img {
    height: 16px;
}

.at-hero-partners .partner-logos img.logo-bumped {
    height: 19px;
}

.at-hero-partners .partner-logos img.logo-heavy {
    height: 12px;
}

.at-hero-partners .partner-logos img.logo-slim {
    height: 14px;
}

/* --- AT TRUST STRIP --- */
.at-trust-strip {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.at-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.at-stat {
    text-align: center;
}

.at-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.at-stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.at-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

.at-engines {
    text-align: center;
}

.at-engines-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.at-engine-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.at-engine-logos img {
    height: 22px;
    opacity: 0.5;
    transition: opacity 0.25s;
}

.at-engine-logos img:hover {
    opacity: 0.8;
}

/* --- AT SECTION HEADINGS --- */
.at-section-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.at-section-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: -1.5rem auto 2.5rem;
}

/* --- AT LIVE WAVEFORM DEMO --- */
.at-demo-section {
    padding: 5rem 2rem;
}

.at-demo-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.at-demo-waveform {
    background: var(--navy);
    padding: 1.5rem;
    position: relative;
}

.at-waveform-track {
    height: 60px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
}

.at-waveform-bars-demo {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 100%;
    padding: 8px 0;
}

.at-waveform-bars-demo span {
    flex: 1;
    background: rgba(129,178,154,0.3);
    border-radius: 2px;
    min-width: 3px;
    transition: background 0.15s;
}

.at-waveform-bars-demo span.at-bar-active {
    background: var(--teal);
}

.at-waveform-bars-demo span.at-bar-pulse {
    background: var(--teal-light);
    box-shadow: 0 0 4px rgba(129,178,154,0.5);
}

.at-playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--teal-light);
    left: 0;
    transition: left 0.1s linear;
    z-index: 2;
    box-shadow: 0 0 6px rgba(173,225,199,0.6);
}

.at-demo-time {
    display: flex;
    justify-content: flex-end;
    gap: 0.3rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.at-demo-separator {
    color: rgba(255,255,255,0.3);
}

/* Demo transcript lines */
.at-demo-transcript {
    padding: 1.5rem;
    min-height: 200px;
}

.at-demo-line {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.at-demo-line:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.at-demo-line-visible {
    opacity: 1;
    transform: translateY(0);
}

.at-demo-text {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Demo quality badges */
.at-demo-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.at-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(129,178,154,0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.at-demo-badge i svg {
    width: 13px;
    height: 13px;
}

/* --- AT WORKFLOW / HORIZONTAL TIMELINE --- */
.at-workflow-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.at-timeline {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding-top: 2rem;
}

.at-timeline-line {
    position: absolute;
    top: calc(2rem + 18px);
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--border-medium) 0,
        var(--border-medium) 8px,
        transparent 8px,
        transparent 14px
    );
    z-index: 0;
}

.at-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.at-timeline-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 0 6px rgba(129,178,154,0.15);
}

.at-timeline-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    max-width: 280px;
    flex: 1;
    transition: all 0.25s ease;
}

.at-timeline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.at-timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.at-timeline-icon i svg {
    width: 20px;
    height: 20px;
}

.at-timeline-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.at-timeline-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- AT GLOSSARY SHOWCASE --- */
.at-glossary-section {
    padding: 5rem 2rem;
}

.at-glossary-showcase {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.at-glossary-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-light);
}

.at-glossary-tab {
    flex: 1;
    padding: 0.9rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.at-glossary-tab i svg {
    width: 15px;
    height: 15px;
}

.at-glossary-tab:hover {
    color: var(--navy);
    background: rgba(129,178,154,0.05);
}

.at-glossary-tab-active {
    color: var(--teal);
    border-bottom-color: var(--teal);
    background: var(--bg-white);
}

.at-glossary-panel {
    display: none;
    padding: 2rem;
}

.at-glossary-panel-active {
    display: block;
}

.at-glossary-transcript {
    margin-bottom: 1.5rem;
}

.at-glossary-transcript p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.at-glossary-transcript p:last-child {
    margin-bottom: 0;
}

.at-term {
    color: var(--teal);
    font-weight: 600;
    background: rgba(129,178,154,0.08);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}

.at-glossary-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.at-glossary-term-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(129,178,154,0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(129,178,154,0.2);
}

/* --- AT COMPARISON TABLE --- */
.at-compare-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
}

.at-compare-section .section-label {
    color: var(--teal-light);
}

.at-compare-section .at-section-heading {
    color: #fff;
}

.at-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 950px;
    margin: 2rem auto 0;
    border-radius: var(--radius-md);
}

.at-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    min-width: 720px;
}

.at-compare-table thead th {
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    text-align: left;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
}

.at-compare-table thead th.at-table-highlight {
    color: var(--teal-light);
    border-bottom-color: var(--teal);
}

.at-compare-table tbody td {
    padding: 0.85rem 1.25rem;
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    vertical-align: top;
}

.at-compare-table tbody td:first-child {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    white-space: nowrap;
}

.at-compare-table tbody td.at-table-highlight {
    color: #fff;
    background: rgba(129,178,154,0.08);
    border-left: 2px solid var(--teal);
}

.at-compare-table tbody tr:last-child td {
    border-bottom: none;
}

/* --- AT FEATURES GRID --- */
.at-features-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.at-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.at-feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.25s ease;
}

.at-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.at-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.at-feature-icon i svg {
    width: 18px;
    height: 18px;
}

.at-feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.at-feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.at-feature-card-highlight {
    border-left: 3px solid var(--teal);
    background: rgba(129,178,154,0.06);
}

/* --- AT USE CASES — Horizontal Industry Cards with Photo BG --- */
.at-usecases-section {
    padding: 5rem 2rem;
}

.at-usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.at-usecase-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 380px;
    transition: all 0.3s ease;
}

.at-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

/* Background photo */
.at-usecase-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

/* Dark gradient overlay */
.at-usecase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(45,55,72,0.75) 0%,
        rgba(45,55,72,0.88) 50%,
        rgba(45,55,72,0.95) 100%
    );
    z-index: 1;
    transition: background 0.3s ease;
}

.at-usecase-card:hover::after {
    background: linear-gradient(
        180deg,
        rgba(45,55,72,0.7) 0%,
        rgba(45,55,72,0.85) 50%,
        rgba(45,55,72,0.92) 100%
    );
}

/* Content sits above overlay */
.at-usecase-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.at-usecase-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(129,178,154,0.2);
    color: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(4px);
}

.at-usecase-icon i svg {
    width: 18px;
    height: 18px;
}

.at-usecase-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.at-usecase-files {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.at-usecase-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.at-usecase-card li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.at-usecase-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal-light);
}

/* --- AT TESTIMONIALS (3-column) --- */
.at-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* --- AT UPSELL BRIDGE --- */
.at-upsell-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
}

.at-upsell-heading {
    color: #fff !important;
}

.at-upsell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.at-upsell-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
}

.at-upsell-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.at-upsell-card-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.at-upsell-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.at-upsell-card-content {
    padding: 1.5rem;
}

.at-upsell-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(129,178,154,0.15);
    color: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.at-upsell-icon i svg {
    width: 18px;
    height: 18px;
}

.at-upsell-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.at-upsell-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* --- AT FORMATS + PRICING TEASER --- */
.at-formats-section {
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.at-formats-heading {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.at-formats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.at-formats-group {
    text-align: center;
}

.at-formats-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.at-format-badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.at-format-badge {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg-white);
    color: var(--navy);
    border: 1px solid var(--border-light);
}

.at-format-badge-output {
    background: rgba(129,178,154,0.1);
    color: var(--teal);
    border-color: rgba(129,178,154,0.25);
}

.at-formats-arrow {
    color: var(--teal);
}

.at-formats-arrow i svg {
    width: 22px;
    height: 22px;
}

.at-pricing-teaser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-white);
    border: 1px solid rgba(129,178,154,0.3);
    border-left: 3px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 1.5rem 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.at-pricing-teaser-text {
    font-size: 1rem;
    color: var(--navy);
}

.at-pricing-teaser-text strong {
    font-size: 1.05rem;
}

.at-pricing-teaser-sub {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* --- AT FAQ --- */
.at-faq-section .faq-category {
    max-width: 800px;
    margin: 0 auto;
}

/* --- AT STICKY MOBILE CTA BAR --- */
.at-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.at-sticky-cta .btn-primary-cta {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
}

.at-sticky-visible {
    transform: translateY(0);
}

/* --- AT RESPONSIVE --- */
@media (max-width: 1024px) {
    .at-hero h1 {
        font-size: 2.5rem;
    }

    .at-section-heading {
        font-size: 1.9rem;
    }

    .at-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .at-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .at-usecase-card {
        min-height: 340px;
    }

    .at-timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding-top: 0;
    }

    .at-timeline-line {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        background: repeating-linear-gradient(
            180deg,
            var(--border-medium) 0,
            var(--border-medium) 8px,
            transparent 8px,
            transparent 14px
        );
    }

    .at-timeline-step {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .at-timeline-card {
        max-width: 400px;
    }

    .at-transform-container {
        flex-direction: column;
        align-items: center;
    }

    .at-audio-card {
        flex: none;
        width: 100%;
        max-width: 350px;
    }

    .at-transcript-card {
        flex: none;
        width: 100%;
        max-width: 350px;
    }

    .at-transform-arrow {
        flex-direction: row;
    }

    .at-arrow-line {
        width: 30px;
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            rgba(129,178,154,0.4) 0,
            rgba(129,178,154,0.4) 4px,
            transparent 4px,
            transparent 8px
        );
    }
}

@media (max-width: 768px) {
    .at-hero h1 {
        font-size: 2rem;
    }

    .at-hero-sub {
        font-size: 1rem;
    }

    .at-section-heading {
        font-size: 1.7rem;
    }

    .at-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .at-stat-divider {
        width: 40px;
        height: 1px;
    }

    .at-stat strong {
        font-size: 1.6rem;
    }

    .at-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .at-usecases-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .at-upsell-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .at-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .at-formats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .at-formats-arrow {
        transform: rotate(90deg);
    }

    .at-pricing-teaser {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .at-sticky-cta {
        display: block;
    }

    .at-glossary-tabs {
        flex-wrap: wrap;
    }

    .at-glossary-tab {
        flex: 1 1 45%;
        font-size: 0.78rem;
        padding: 0.7rem 0.5rem;
    }

    .at-demo-badges {
        gap: 0.5rem;
    }

    .at-demo-badge {
        font-size: 0.72rem;
        padding: 0.35rem 0.65rem;
    }
}

@media (max-width: 480px) {
    .at-hero {
        padding: 7rem 1.25rem 2rem;
    }

    .at-hero h1 {
        font-size: 1.7rem;
    }

    .at-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .at-hero-actions .btn-secondary-cta {
        width: 100%;
        justify-content: center;
    }

    .at-hero-actions .btn-primary-cta {
        width: 100%;
        justify-content: center;
    }

    .at-section-heading {
        font-size: 1.4rem;
    }

    .at-glossary-tab {
        font-size: 0.72rem;
    }

    .at-glossary-transcript p {
        font-size: 0.82rem;
    }

    .at-demo-transcript {
        padding: 1rem;
    }

    .at-demo-text {
        font-size: 0.82rem;
    }

    .at-compare-table {
        font-size: 0.78rem;
    }
}
