/* ============================================================
   LIGHTSPEED LANDING PAGE
   Stripe-inspired layout, components, and interactions
   ============================================================ */

/* --- Landing Page Shell --- */
.landing-page {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-primary);
    z-index: 2000;
    overflow-y: auto;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.landing-page.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ============================================================
   ANNOUNCEMENT BANNER
   ============================================================ */
.landing-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, #0F3460 0%, #5B1A6E 30%, #E91E8C 55%, #F47B3A 80%, #F5C623 100%);
    background-size: 150% 100%;
    background-position: 0% 50%;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-position 0.4s ease;
}

.landing-banner:hover {
    background-position: 50% 50%;
}

.landing-banner-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    line-height: 1.2;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.landing-banner-text {
    color: rgba(255, 255, 255, 0.9);
}

.landing-banner-arrow {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.15s ease, color 0.15s ease;
}

.landing-banner:hover .landing-banner-arrow {
    transform: translateX(3px);
    color: rgba(255, 255, 255, 0.9);
}

.landing-banner:hover .landing-banner-text {
    color: #fff;
}

/* When banner is present, push nav down */
.landing-banner + .landing-nav {
    top: 40px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-nav-inner {
    max-width: calc(var(--max-width) + 80px);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

.landing-nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

/* Logo */
.landing-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.landing-nav-logo img {
    width: 32px;
    height: 32px;
}

.landing-nav-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Center links — left-aligned next to logo */
.landing-nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: 36px;
}

.landing-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-family);
    padding: 0;
}

.landing-nav-link:hover {
    color: var(--text-primary);
}

/* Right actions */
.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: auto;
}

.landing-nav-signin {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-family);
    padding: 0;
}

.landing-nav-signin:hover {
    color: var(--text-primary);
}

.landing-nav-cta {
    padding: 10px 22px;
    background: var(--cta);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    line-height: 1;
}

.landing-nav-cta:hover {
    background: var(--cta-hover);
    transform: scale(1.02);
}

/* Mobile nav toggle */
.landing-nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.landing-nav-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile menu panel */
.landing-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    flex-direction: column;
    padding: 80px 24px 40px;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.landing-mobile-menu.open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.landing-mobile-menu-link {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-family);
    transition: color 0.15s ease;
    text-decoration: none;
}

.landing-mobile-menu-link:hover {
    color: var(--cta);
}

.landing-mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.landing-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.landing-mobile-menu-close:hover {
    background: var(--bg-alt);
}

/* ============================================================
   HERO SECTION
   Stripe-style: animated gradient background, two-tone headline
   ============================================================ */
.landing-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 40px 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero gradient background */
.landing-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 90%;
    height: 140%;
    background:
        radial-gradient(ellipse at 60% 30%, rgba(233, 30, 140, 0.65) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(244, 123, 58, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 70%, rgba(245, 198, 35, 0.5) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 20%, rgba(245, 198, 35, 0.45) 0%, transparent 50%);
    animation: heroGradientShift 12s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
    filter: blur(18px);
}

@keyframes heroGradientShift {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(20px, -30px) scale(1.03); }
    66%  { transform: translate(-10px, 20px) scale(0.98); }
    100% { transform: translate(15px, -15px) scale(1.02); }
}

/* White fade on left side so text is readable */
.landing-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, #fff 40%, rgba(255,255,255,0.85) 70%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.landing-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

/* Two-column hero layout */
.landing-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

/* Eyebrow text */
.landing-hero-eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

/* Two-tone headline */
.landing-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -0.025em;
}

.landing-hero-title .hero-text-bold {
    color: var(--text-primary);
}

.landing-hero-title .hero-text-light {
    color: #556171;
}

.landing-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* ============================================================
   HERO DASHBOARD MOCKUP
   Static marketing mockup of the Lightspeed dashboard
   ============================================================ */
.hero-mockup {
    position: relative;
    z-index: 2;
}

.hero-mockup-panel {
    background: #F6F8FB;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 24px 80px rgba(10, 37, 64, 0.12), 0 2px 6px rgba(10, 37, 64, 0.05);
    font-family: var(--font-family);
}

/* Greeting */
.hero-mockup-greeting-title {
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 2px;
    line-height: 1.3;
}

.hero-mockup-greeting-sub {
    font-size: 11px;
    color: #6B7C93;
    margin-bottom: 14px;
}

/* Tool cards grid */
.hero-mockup-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

/* Card base */
.hero-mockup-card {
    background: #fff;
    border: 1px solid #E3E8EE;
    border-radius: 10px;
    padding: 14px;
}

/* Response Assistant spans full left column */
.hero-mockup-card-response {
    display: flex;
    flex-direction: column;
}

/* Right column stacks vertically */
.hero-mockup-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-mockup-right-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Tool icon */
.hero-mockup-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    vertical-align: middle;
}

.hero-mockup-icon svg {
    width: 14px;
    height: 14px;
}

.hero-mockup-icon.icon-blue { background: #1B6BF5; color: #fff; }
.hero-mockup-icon.icon-orange { background: #F47B3A; color: #fff; }
.hero-mockup-icon.icon-green { background: #28C840; color: #fff; }
.hero-mockup-icon.icon-yellow { background: #F5C623; color: #fff; }

/* AI-Powered badge */
.hero-mockup-badge {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #E91E8C, #F47B3A);
    color: #fff;
    border-radius: 10px;
    font-size: 8px;
    font-weight: 600;
    margin-left: 6px;
    vertical-align: middle;
}

/* Card title */
.hero-mockup-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #0A2540;
    margin: 6px 0 4px;
    line-height: 1.3;
}

/* Card description */
.hero-mockup-card-desc {
    font-size: 9px;
    color: #425466;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Tags */
.hero-mockup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 10px;
}

.hero-mockup-tag {
    padding: 3px 8px;
    border: 1px solid #E3E8EE;
    border-radius: 6px;
    font-size: 8px;
    color: #425466;
    background: #fff;
    white-space: nowrap;
}

/* Gradient CTA button */
.hero-mockup-cta {
    background: linear-gradient(90deg, #0F3460, #E91E8C, #F47B3A, #F5C623);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    width: 100%;
    cursor: default;
    font-family: var(--font-family);
}

/* Small card title */
.hero-mockup-card-sm .hero-mockup-card-title {
    font-size: 11px;
    margin: 4px 0 3px;
}

.hero-mockup-card-sm .hero-mockup-card-desc {
    font-size: 8px;
    margin-bottom: 6px;
}

/* Ask Lightspeed bar */
.hero-mockup-ask {
    background: linear-gradient(135deg, #EEF2FF 0%, #F6F8FB 100%);
    border: 1px solid #E3E8EE;
    border-radius: 12px;
    padding: 14px;
}

.hero-mockup-ask-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.hero-mockup-ask-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E0E7FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-mockup-ask-icon svg {
    width: 10px;
    height: 10px;
    color: #1B6BF5;
}

.hero-mockup-ask-title {
    font-size: 11px;
    font-weight: 700;
    color: #0A2540;
}

.hero-mockup-ask-ai {
    padding: 2px 7px;
    background: linear-gradient(135deg, #E91E8C, #F47B3A);
    color: #fff;
    border-radius: 10px;
    font-size: 7px;
    font-weight: 600;
}

.hero-mockup-ask-tones {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.hero-mockup-ask-tone {
    padding: 3px 7px;
    border: 1px solid #E3E8EE;
    border-radius: 10px;
    font-size: 7px;
    color: #425466;
    background: #fff;
}

.hero-mockup-ask-tone.active {
    background: linear-gradient(135deg, #E91E8C, #F47B3A);
    color: #fff;
    border-color: transparent;
}

/* Prompt pills */
.hero-mockup-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.hero-mockup-prompt {
    padding: 4px 9px;
    background: #FFF9EE;
    border-radius: 8px;
    font-size: 7px;
    color: #425466;
    white-space: nowrap;
}

/* Input */
.hero-mockup-input {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #E3E8EE;
    border-radius: 20px;
    padding: 6px 6px 6px 12px;
    margin-bottom: 6px;
}

.hero-mockup-input-text {
    flex: 1;
    font-size: 9px;
    color: #A3ACB9;
}

.hero-mockup-send {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E8C, #F47B3A);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-mockup-send svg {
    width: 11px;
    height: 11px;
    color: #fff;
}

.hero-mockup-disclaimer {
    font-size: 7px;
    color: #A3ACB9;
    text-align: center;
}

/* Google sign-in button */
.ls-btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    white-space: nowrap;
}

.ls-btn-google:hover {
    border-color: var(--text-muted);
    background: var(--bg-alt);
    transform: scale(1.02);
}

.ls-btn-google svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.landing-section {
    padding: var(--section-padding) 40px;
}

.landing-section-white {
    background: var(--bg-primary);
}

.landing-section-alt {
    background: var(--bg-alt);
}

.landing-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.landing-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--cta);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.landing-section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.landing-section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   BENTO GRID SECTION
   Stripe-style asymmetric feature cards
   ============================================================ */
.landing-bento {
    padding: 100px 40px 40px;
    background: var(--bg-primary);
}

.landing-bento-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Two-tone section heading */
.landing-bento-heading {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.35;
    max-width: none;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.landing-bento-heading .bento-heading-bold {
    color: var(--text-primary);
}

.landing-bento-heading .bento-heading-light {
    color: var(--text-secondary);
}

/* Grid layout — flat 6-column grid, no nesting */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Top row: 2 cards, each span 3 columns = 50/50 */
.bento-card-top {
    grid-column: span 3;
}

/* Bottom row: 3 cards, each span 2 columns = 33/33/33 */
.bento-card-bottom {
    grid-column: span 2;
}

/* Individual bento card */
.bento-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bento-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Expand / arrow icon top-right */
.bento-card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.bento-card:hover .bento-card-arrow {
    opacity: 1;
}

.bento-card-arrow svg {
    width: 16px;
    height: 16px;
}

/* Card text area */
.bento-card-text {
    padding: 28px 28px 16px;
    flex-shrink: 0;
}

.bento-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 8px;
    padding-right: 36px;
}

.bento-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Card mockup area - bleeds to bottom */
.bento-card-visual {
    flex: 1;
    min-height: 140px;
    padding: 0 20px 20px;
    overflow: hidden;
    position: relative;
}

/* Dashboard-style UI card inside bento visual */
.bento-ui-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
}

/* Mockup window inside bento cards */
.bento-mockup {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-mockup-bar {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-primary);
    flex-shrink: 0;
}

.bento-mockup-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.bento-mockup-dot.r { background: #FF5F57; }
.bento-mockup-dot.y { background: #FEBC2E; }
.bento-mockup-dot.g { background: #28C840; }

.bento-mockup-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Placeholder wireframe lines */
.bento-line {
    height: 7px;
    background: var(--border);
    border-radius: 4px;
}

.bento-line-accent {
    background: var(--cta);
    opacity: 0.18;
}

.bento-line-short { width: 35%; }
.bento-line-med { width: 60%; }
.bento-line-long { width: 88%; }
.bento-line-full { width: 100%; }

/* Bar chart placeholder */
.bento-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 64px;
    margin-top: auto;
}

.bento-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
}

.bento-bar-accent {
    background: var(--cta);
    opacity: 0.65;
}

.bento-bar-muted {
    background: var(--border);
}

/* Table placeholder */
.bento-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}

.bento-table-cell {
    height: 7px;
    background: var(--border);
    border-radius: 3px;
}

.bento-table-header {
    background: var(--cta);
    opacity: 0.15;
}

/* Chat / response placeholder */
.bento-chat-bubble {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bento-chat-bubble.sent {
    background: var(--cta);
    border-color: var(--cta);
    margin-left: 24px;
}

.bento-chat-bubble.sent .bento-line {
    background: rgba(255,255,255,0.3);
}

.bento-chat-bubble.received {
    margin-right: 24px;
}

/* ============================================================
   RESPONSE ASSISTANT — FULL-WIDTH HERO CARD + 1:1 MOCKUP
   ============================================================ */
.bento-card-hero {
    grid-column: 1 / -1;
}

.bento-card-hero .bento-card-visual {
    min-height: 420px;
    padding: 0 28px 28px;
}

.ra-mockup {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 20px;
    height: 100%;
}

.ra-panel {
    background: #fff;
    border: 1px solid #E3E8EE;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 13px;
}

.ra-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ra-panel-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ra-panel-icon.blue { background: #EBF4FF; }
.ra-panel-icon.amber { background: #FFF8E1; }

.ra-panel-title {
    font-size: 15px;
    font-weight: 600;
    color: #0A2540;
}

.ra-panel-subtitle {
    font-size: 11px;
    color: #6B7C93;
    margin-top: 1px;
}

/* Inquiry Type toggle */
.ra-inquiry-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #425466;
}

.ra-type-btn {
    padding: 5px 14px;
    border-radius: 8px;
    border: 1px solid #E3E8EE;
    background: #fff;
    font-size: 12px;
    color: #425466;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ra-type-btn.active {
    background: linear-gradient(135deg, #F47B3A, #F5C623);
    color: #fff;
    border-color: transparent;
}

/* Quick fill tags */
.ra-quick-fill {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #6B7C93;
}

.ra-tag {
    padding: 4px 10px;
    background: #F6F9FC;
    border: 1px solid #E3E8EE;
    border-radius: 14px;
    font-size: 11px;
    color: #425466;
}

/* Textarea */
.ra-textarea {
    background: #fff;
    border: 1px solid #E3E8EE;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 12px;
    color: #0A2540;
    line-height: 1.6;
    min-height: 80px;
}

.ra-char-count {
    font-size: 11px;
    color: #1B6BF5;
    margin-top: -8px;
}

/* Dropdown */
.ra-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    background: #F6F9FC;
    border: 1px solid #E3E8EE;
    border-radius: 8px;
    font-size: 12px;
    color: #0A2540;
    font-weight: 500;
}

/* Field label + input */
.ra-field-label {
    font-size: 11px;
    font-weight: 500;
    color: #425466;
    margin-bottom: -8px;
}

.ra-input {
    padding: 9px 14px;
    background: #fff;
    border: 1px solid #E3E8EE;
    border-radius: 8px;
    font-size: 12px;
    color: #0A2540;
}

/* Tone/Length sliders */
.ra-sliders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ra-slider-label {
    font-size: 11px;
    font-weight: 500;
    color: #425466;
    margin-bottom: 8px;
}

.ra-slider-track {
    height: 4px;
    background: #E3E8EE;
    border-radius: 2px;
    position: relative;
}

.ra-slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #E3E8EE, #F47B3A);
}

.ra-slider-thumb {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #F47B3A;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transform: translate(-50%, -50%);
}

.ra-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #6B7C93;
    margin-top: 6px;
}

/* Checkboxes */
.ra-checkboxes {
    display: flex;
    gap: 14px;
    font-size: 11px;
    color: #425466;
}

.ra-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ra-checkbox-box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #D4D4D8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
}

.ra-checkbox-box.checked {
    background: #1B6BF5;
    border-color: #1B6BF5;
}

/* Generate button */
.ra-generate-btn {
    background: linear-gradient(135deg, #F47B3A, #E91E8C);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

/* ---- Right Panel: Generated Response ---- */
.ra-emotion-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border: 1px solid #F47B3A;
    border-radius: 14px;
    font-size: 11px;
    color: #F47B3A;
    background: #FFF8F0;
    width: fit-content;
}

.ra-status-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ra-ready-badge {
    font-size: 12px;
    font-weight: 600;
    color: #28C840;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ra-action-btn {
    padding: 4px 10px;
    border: 1px solid #E3E8EE;
    border-radius: 6px;
    font-size: 11px;
    color: #425466;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ra-edit-banner {
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    color: #B8860B;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ra-response-text {
    border: 2px dashed #1B6BF5;
    border-radius: 8px;
    padding: 14px;
    font-size: 12px;
    color: #0A2540;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ra-response-text p {
    margin: 0;
}

.ra-response-actions {
    display: flex;
    gap: 8px;
}

.ra-save-btn {
    padding: 7px 14px;
    background: #28C840;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ra-cancel-btn {
    padding: 7px 14px;
    border: 1px solid #E3E8EE;
    border-radius: 8px;
    font-size: 12px;
    color: #425466;
    background: #fff;
}

/* Feedback row */
.ra-feedback {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #F6F9FC;
    border-radius: 8px;
    font-size: 12px;
    color: #425466;
}

.ra-feedback-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E3E8EE;
    font-size: 14px;
}

/* Quality checks */
.ra-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ra-check {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ra-check.good { color: #28C840; }
.ra-check.warn { color: #D97706; }

/* Refine Response section */
.ra-refine {
    background: #F3F0FF;
    border: 1px solid #E0D6FF;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ra-refine-header {
    font-size: 13px;
    font-weight: 600;
    color: #0A2540;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ra-refine-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ra-refine-pill {
    padding: 5px 12px;
    border: 1px solid #D4D4D8;
    border-radius: 14px;
    font-size: 11px;
    color: #425466;
    background: #fff;
}

.ra-refine-input {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: 10px;
    padding: 5px 5px 5px 12px;
}

.ra-refine-input-text {
    flex: 1;
    font-size: 11px;
    color: #B8860B;
}

.ra-refine-btn {
    padding: 7px 14px;
    background: #0A2540;
    color: #fff;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* ============================================================
   TOOL TABS — TABBED SHOWCASE FOR 4 TOOLS
   ============================================================ */
.tool-tabs {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.tool-tabs-bar {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
}

.tool-tab {
    flex: 1;
    padding: 16px 20px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    transition: color 0.2s ease;
}

.tool-tab:hover {
    color: var(--text-primary);
}

.tool-tab.active {
    color: var(--text-primary);
    font-weight: 600;
}

.tool-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #E91E8C, #F47B3A);
    border-radius: 2px 2px 0 0;
}

.tool-tab-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-tab-icon.orange { background: #FFF0E6; }
.tool-tab-icon.green { background: #E8F9EB; }
.tool-tab-icon.yellow { background: #FFF8E1; }
.tool-tab-icon.blue { background: #EBF4FF; }

.tool-tabs-content {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.tool-panel {
    display: none;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    padding: 36px;
    align-items: center;
    animation: toolFadeIn 0.3s ease;
}

.tool-panel.active {
    display: grid;
}

@keyframes toolFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.tool-panel-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tool-panel-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.tool-panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #E91E8C, #F47B3A);
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
}

.tool-panel-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.tool-panel-visual {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.landing-how-it-works {
    padding: 100px 40px;
    background: var(--bg-alt);
}

.landing-hiw-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.landing-hiw-header {
    margin-bottom: 56px;
}

.landing-hiw-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--cta);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.landing-hiw-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.landing-hiw-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.landing-hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.hiw-step {
    text-align: center;
    position: relative;
}

.hiw-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cta);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hiw-step-connector {
    position: absolute;
    top: 16px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 2px;
    background: var(--border);
}

.hiw-step:last-child .hiw-step-connector {
    display: none;
}

.hiw-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.hiw-step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.hiw-step-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================================
   IMPACT STATS STRIP
   ============================================================ */
.landing-stats-strip {
    padding: 100px 40px;
    background: var(--bg-primary);
}

.landing-stats-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.stats-context {
    margin-bottom: 48px;
}

.stats-context-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--cta);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.stats-context-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    max-width: 680px;
}

.stats-context-body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}

.stats-card-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--cta);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stats-card-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.stats-card-detail {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.landing-testimonials {
    padding: 100px 40px;
    background: var(--bg-alt);
}

.landing-testimonials-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.landing-testimonials-header {
    margin-bottom: 48px;
}

.landing-testimonials-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--cta);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.landing-testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.landing-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #F5C623;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 24px;
    flex: 1;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   CASE STUDY STRIP
   ============================================================ */
.landing-case-study {
    padding: 100px 40px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.landing-case-study-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.case-study-text-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-study-logo-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.case-study-logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.case-study-stats {
    display: flex;
    gap: 24px;
}

.case-study-stat {
    text-align: center;
    padding-left: 24px;
    border-left: 2px solid var(--border);
}

.case-study-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.case-study-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.case-study-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cta);
}

.case-study-headline {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.case-study-body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--cta);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.case-study-link:hover {
    gap: 10px;
}

.case-study-link span {
    transition: transform 0.2s ease;
}

.case-study-link:hover span {
    transform: translateX(2px);
}

/* Image column */
.case-study-image-col {
    position: relative;
}

.case-study-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
    display: block;
}

/* ============================================================
   SOCIAL PROOF / LOGOS BAR
   Clean row, no heading, grayscale
   ============================================================ */
.landing-logos {
    padding: 28px 0 0;
    border-top: 1px solid var(--border);
    overflow: hidden;
    max-width: var(--max-width);
    margin: 56px auto 0;
    width: 100%;
}

.landing-logos-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 56px;
}

.landing-logos-row img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: opacity 0.2s ease, filter 0.2s ease;
    flex-shrink: 0;
}

.landing-logos-row img:hover {
    filter: grayscale(0%);
    opacity: 0.85;
}

.landing-logos-stat {
    text-align: center;
    font-size: 15px;
    color: #6B7C93;
    letter-spacing: 0.01em;
    padding: 4px 0;
}

.landing-logos-stat strong {
    color: #0A2540;
    font-weight: 600;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.landing-pricing-section {
    padding: 100px 40px;
    background: var(--bg-alt);
}

.landing-pricing-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.landing-pricing-header {
    margin-bottom: 48px;
}

.landing-pricing-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--cta);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.landing-pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.landing-pricing-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 24px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.pricing-toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
    cursor: pointer;
}

.pricing-toggle-label.active {
    color: var(--text-primary);
    font-weight: 600;
}

.pricing-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: var(--border);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.pricing-toggle-switch.active {
    background: var(--cta);
}

.pricing-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.pricing-toggle-switch.active .pricing-toggle-knob {
    transform: translateX(20px);
}

.pricing-toggle-save {
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    background: #dcfce7;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.landing-pricing-billed-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.landing-pricing-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.landing-pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.landing-pricing-card.featured {
    border-color: var(--cta);
    box-shadow: 0 8px 30px rgba(99, 91, 255, 0.12);
}

.landing-pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--brand-gradient);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.landing-pricing-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.landing-pricing-price {
    margin-bottom: 8px;
}

.landing-pricing-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.landing-pricing-period {
    font-size: 15px;
    color: var(--text-muted);
}

.landing-pricing-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.landing-pricing-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.landing-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.landing-pricing-features li svg {
    flex-shrink: 0;
    color: var(--cta);
}

.landing-pricing-btn {
    width: 100%;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    border: 1px solid var(--border);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.landing-pricing-btn:hover {
    border-color: var(--text-muted);
    background: var(--bg-alt);
    transform: scale(1.02);
}

.landing-pricing-btn.primary {
    background: var(--cta);
    color: #fff;
    border-color: var(--cta);
}

.landing-pricing-btn.primary:hover {
    background: var(--cta-hover);
    border-color: var(--cta-hover);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.landing-faq-section {
    padding: 100px 40px;
    background: var(--bg-primary);
}

.landing-faq-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.landing-faq-header {
    position: sticky;
    top: 100px;
}

.landing-faq-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--cta);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.landing-faq-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.landing-faq-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.landing-faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--cta);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.landing-faq-contact-link:hover {
    gap: 10px;
}

.landing-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.landing-faq-item:hover {
    border-color: var(--text-muted);
}

.landing-faq-item.open {
    border-color: var(--cta);
}

.landing-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.landing-faq-icon {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.landing-faq-item.open .landing-faq-icon {
    transform: rotate(45deg);
    color: var(--cta);
}

.landing-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.landing-faq-item.open .landing-faq-answer {
    max-height: 300px;
}

.landing-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
/* ============================================================
   CONTACT SECTION — Stripe-inspired two-column layout
   ============================================================ */
.landing-contact-section {
    padding: 100px 40px;
    background: var(--bg-alt);
}

.landing-contact-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

.landing-contact-header {
    position: sticky;
    top: 100px;
}

.landing-contact-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--cta);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.landing-contact-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.landing-contact-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.landing-contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--cta);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.landing-contact-email-link:hover {
    gap: 10px;
}

.landing-contact-box {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px;
}

.landing-contact-form {
    text-align: left;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-group {
    margin-bottom: 16px;
}

.contact-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.contact-required {
    color: var(--danger);
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 15px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: var(--text-muted);
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--cta);
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--cta);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    margin-top: 8px;
}

.contact-submit-btn:hover {
    background: var(--cta-hover);
    transform: scale(1.02);
}

.contact-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.contact-form-status {
    margin-top: 16px;
    font-size: 14px;
    min-height: 20px;
}

.contact-form-status.success {
    color: var(--success);
}

.contact-form-status.error {
    color: var(--danger);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.landing-compare-section {
    padding: 100px 40px;
    background: var(--bg-primary);
}

.landing-compare-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.landing-compare-header {
    margin-bottom: 48px;
}

.landing-compare-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--cta);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.landing-compare-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.landing-compare-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 540px;
}

.landing-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.landing-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
}

.landing-compare-table thead th {
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.landing-compare-table thead th:first-child {
    text-align: left;
}

.landing-compare-table tbody td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.landing-compare-table tbody td:first-child {
    text-align: left;
}

.compare-feature {
    font-weight: 500;
    color: var(--text-primary) !important;
    white-space: nowrap;
}

.compare-col-highlight {
    background: rgba(27, 107, 245, 0.04);
}

.compare-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--cta);
    font-size: 15px;
}

.compare-yes {
    color: #16a34a;
    font-weight: 600;
}

.compare-no {
    color: var(--text-muted);
}

.compare-partial {
    color: #d97706;
    font-size: 13px;
    font-weight: 500;
}

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9990;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.show {
    transform: translateY(0);
}

.sticky-cta-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.sticky-cta-brand img {
    height: 22px;
}

.sticky-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-cta-actions .sticky-cta-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: var(--cta);
    color: #fff;
    transition: background 0.15s ease;
}

.sticky-cta-actions .sticky-cta-btn:hover {
    background: var(--cta-hover);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 90px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9997;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--cta);
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10000;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--cta);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition);
}

.cookie-btn:hover {
    background: var(--bg-alt);
}

.cookie-btn-accept {
    background: var(--cta);
    color: #fff;
    border-color: var(--cta);
}

.cookie-btn-accept:hover {
    background: var(--cta-hover);
}

/* ============================================================
   LIVE CHAT WIDGET
   ============================================================ */
/* ============================================================
   POWERED BY ANTHROPIC STRIP
   ============================================================ */
.landing-anthropic-strip {
    padding: 100px 40px;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.landing-anthropic-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.anthropic-text-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.anthropic-badge {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.anthropic-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cta);
}

.anthropic-headline {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1.3;
}

.anthropic-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.anthropic-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.anthropic-pillars-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.anthropic-pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.anthropic-pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-primary);
}

.anthropic-pillar h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.anthropic-pillar p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.landing-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 64px 40px 40px;
}

.landing-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.landing-footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.landing-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.landing-footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-footer-brand-logo img {
    width: 28px;
    height: 28px;
}

.landing-footer-brand-logo span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.landing-footer-brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 260px;
}

.landing-footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landing-footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.landing-footer-col a:hover {
    color: var(--text-primary);
}

.landing-footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.landing-footer-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    transition: background 0.3s ease;
}

.status-dot-operational { background: #22c55e; }
.status-dot-degraded { background: #f59e0b; }
.status-dot-down { background: #ef4444; }
.status-dot-loading { background: #94a3b8; }

a.landing-footer-status {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a.landing-footer-status:hover {
    opacity: 0.7;
}

.landing-footer-social {
    display: flex;
    gap: 16px;
}

.landing-footer-social a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.landing-footer-social a:hover {
    color: var(--text-primary);
}

.landing-footer-social svg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   STATUS PAGE
   ============================================================ */
.status-page {
    padding-top: 100px;
}

.status-hero {
    padding: 80px 40px 48px;
    text-align: center;
}

.status-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}

.status-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--cta);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.status-hero-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 16px;
}

.status-hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.status-overall {
    display: flex;
    justify-content: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.status-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease;
}

.status-badge-operational {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.status-badge-operational .status-badge-dot {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.status-badge-degraded {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.status-badge-degraded .status-badge-dot {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.status-badge-down {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.status-badge-down .status-badge-dot {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.status-badge-loading {
    background: var(--bg-alt);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.status-badge-loading .status-badge-dot {
    background: #94a3b8;
}

.status-services {
    padding: 0 40px 64px;
}

.status-services-inner {
    max-width: 960px;
    margin: 0 auto;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.status-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: var(--transition);
}

.status-card:hover {
    box-shadow: var(--shadow-lg);
}

.status-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.status-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.status-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.status-card-dot.status-dot-operational {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.status-card-dot.status-dot-degraded {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.status-card-dot.status-dot-down {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.status-card-dot.status-dot-loading {
    background: #94a3b8;
}

.status-card-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.status-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.status-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.status-card-status {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.status-card-latency {
    font-size: 13px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.status-last-checked {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.status-info {
    padding: 0 40px 80px;
}

.status-info-inner {
    max-width: 640px;
    margin: 0 auto;
}

.status-info-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.status-info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.status-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.status-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status-info-card li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 4px 0;
}

.status-info-card li strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .status-hero {
        padding: 60px 24px 32px;
    }

    .status-hero-title {
        font-size: 28px;
    }

    .status-services {
        padding: 0 24px 48px;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .status-info {
        padding: 0 24px 64px;
    }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .landing-hero-content {
        grid-template-columns: 1fr;
    }

    .hero-mockup {
        display: none;
    }

    .landing-hero-title {
        font-size: 48px;
    }

    /* Bento: hero full width, other cards 2-col */
    .bento-card-hero {
        grid-column: 1 / -1;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card-top {
        grid-column: span 1;
    }

    .bento-card-bottom {
        grid-column: span 1;
    }

    .bento-card-bottom:last-child {
        grid-column: 1 / -1;
    }

    .ra-mockup {
        grid-template-columns: 1fr 1fr;
    }

    .landing-footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .tool-tab {
        font-size: 13px;
        padding: 14px 12px;
        gap: 6px;
    }

    .tool-tab-icon {
        width: 24px;
        height: 24px;
    }

    .tool-panel {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 28px;
    }

    .landing-case-study-inner {
        gap: 36px;
    }

    .case-study-headline {
        font-size: 26px;
    }

    .case-study-stat-value {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px;
    }

    .landing-nav-inner {
        padding: 0 24px;
    }

    .landing-nav-center {
        display: none;
    }

    .landing-nav-mobile-toggle {
        display: flex;
    }

    .landing-banner {
        height: 36px;
        font-size: 12px;
        gap: 6px;
        padding: 0 16px;
    }

    .landing-banner-badge {
        font-size: 10px;
        padding: 2px 6px;
    }

    .landing-banner + .landing-nav {
        top: 36px;
    }

    .landing-hero {
        padding: 116px 24px 24px;
        min-height: auto;
    }

    .landing-hero::after {
        width: 100%;
        background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);
    }

    .landing-hero-title {
        font-size: 38px;
    }

    .landing-bento {
        padding: 72px 24px 60px;
    }

    .landing-bento-heading {
        font-size: 28px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card-hero,
    .bento-card-top,
    .bento-card-bottom {
        grid-column: span 1;
    }

    .bento-card-bottom:last-child {
        grid-column: auto;
    }

    .ra-mockup {
        grid-template-columns: 1fr;
    }

    .bento-card-hero .bento-card-visual {
        min-height: auto;
    }

    .tool-tabs-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tool-tab {
        font-size: 12px;
        padding: 12px 10px;
        white-space: nowrap;
    }

    .tool-tab-icon {
        display: none;
    }

    .tool-panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .landing-section-title {
        font-size: 32px;
    }

    .landing-case-study {
        padding: 64px 24px;
    }

    .landing-case-study-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .case-study-logo-row {
        flex-wrap: wrap;
    }

    .case-study-logo {
        width: 100px;
    }

    .case-study-stats {
        gap: 16px;
    }

    .case-study-stat {
        padding-left: 16px;
    }

    .case-study-stat-value {
        font-size: 22px;
    }

    .case-study-headline {
        font-size: 24px;
    }

    .case-study-body {
        font-size: 15px;
    }

    .case-study-image {
        border-radius: 10px;
    }

    .landing-how-it-works,
    .landing-stats-strip,
    .landing-testimonials,
    .landing-pricing-section,
    .landing-faq-section,
    .landing-contact-section,
    .landing-compare-section {
        padding: 72px 24px;
    }

    .landing-hiw-title,
    .stats-context-title,
    .landing-testimonials-title,
    .landing-pricing-title,
    .landing-faq-title,
    .landing-contact-title,
    .landing-compare-title {
        font-size: 28px;
    }

    .landing-hiw-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hiw-step-connector {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .landing-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .sticky-cta-bar {
        padding: 8px 16px;
    }

    .sticky-cta-brand span {
        display: none;
    }

    .landing-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .landing-compare-table {
        font-size: 13px;
    }

    .landing-compare-table thead th,
    .landing-compare-table tbody td {
        padding: 10px 12px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 16px 20px;
    }

    .landing-faq-inner,
    .landing-contact-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .landing-faq-header,
    .landing-contact-header {
        position: static;
    }

    .landing-logos {
        padding: 20px 24px;
    }

    .landing-logos-row {
        gap: 28px;
    }

    .landing-logos-row img {
        height: 24px;
    }

    .landing-anthropic-strip {
        padding: 72px 24px;
    }

    .landing-anthropic-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .anthropic-headline {
        font-size: 24px;
    }

    .anthropic-body {
        font-size: 15px;
    }

    .landing-footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .landing-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .landing-contact-box {
        padding: 32px 24px;
    }

}

@media (max-width: 480px) {
    .landing-hero-title {
        font-size: 32px;
    }

    .landing-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .ls-btn-google,
    .landing-hero-ctas .ls-btn-primary {
        justify-content: center;
    }

    .landing-nav-actions .landing-nav-signin {
        display: none;
    }

    .landing-section-title {
        font-size: 28px;
    }

    .landing-bento-heading {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-card-value {
        font-size: 32px;
    }
}
