/* ============================================
   BRANDORA DESIGN SYSTEM
   Premium performance-meets-craft aesthetic
   War room for ambitious founders
   ============================================ */

/* ============================================
   OVERFLOW PREVENTION - Global Safety
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
}

p, li, td, th, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

input, textarea, select {
    max-width: 100%;
}

section {
    overflow: clip;
}

/* ============================================
   BASE RESET & ROOT
   ============================================ */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 1.0625rem; /* 17px */
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Syne for display headings, DM Sans for body
   ============================================ */

/* Heading base */
h1, h2, h3, h4, h5, h6 {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin: 0 0 1rem 0;
}

/* H1 - Hero Impact */
h1, .h1 {
    font-size: clamp(2.375rem, 5vw + 1rem, 4.5rem); /* 38px → 72px */
    font-weight: 700;
    line-height: 1.1;
}

/* H2 - Section Headers */
h2, .h2 {
    font-size: clamp(1.875rem, 3vw + 1rem, 3rem); /* 30px → 48px */
    font-weight: 600;
}

/* H3 - Card & Feature Titles */
h3, .h3 {
    font-size: clamp(1.375rem, 1.5vw + 0.75rem, 1.875rem); /* 22px → 30px */
    font-weight: 600;
}

/* H4 - Sub-labels */
h4, .h4 {
    font-size: clamp(1.125rem, 1vw + 0.5rem, 1.375rem); /* 18px → 22px */
    font-weight: 500;
}

/* Body text */
p {
    margin: 0 0 1.5rem 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--foreground);
}

p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
    opacity: 0.8;
}

/* Lists */
ul, ol {
    padding-left: 1.5rem;
    margin: 0 0 1.5rem 0;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Strong / Bold */
strong {
    font-weight: 600;
    color: var(--foreground);
}

/* ============================================
   LAYOUT - Container & Spacing
   Max-width 1280px, section gaps 120px/72px
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem; /* 24px mobile */
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem; /* 64px desktop */
    }
}

/* Section spacing */
.section {
    padding: 4.5rem 0; /* 72px mobile */
}

@media (min-width: 1024px) {
    .section {
        padding: 7.5rem 0; /* 120px desktop */
    }
}

/* Narrow content container for editorial sections */
.container-narrow {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Full bleed - edge-to-edge sections */
.section-full-bleed {
    width: 100%;
}

/* Elevated panel background */
.section-elevated {
    background-color: var(--surface-elevated);
}

.section-surface {
    background-color: var(--surface);
}

/* ============================================
   GRID SYSTEM
   Mobile-first responsive grids
   ============================================ */

/* 2-column grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

/* 3-column grid */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* 4-column grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Flex row */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

/* ============================================
   BUTTONS
   Primary, outline, sizes
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease-out;
    min-height: 44px;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* Primary button */
.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--glow-primary);
    color: var(--primary-foreground);
}

/* Outline button */
.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Small button */
.btn-sm {
    font-size: 0.9375rem;
    padding: 0.5rem 1.125rem;
    min-height: 40px;
}

/* Large button */
.btn-lg {
    font-size: 1.0625rem;
    padding: 1rem 2rem;
    min-height: 52px;
}

/* Glow animation for primary CTAs */
.btn-glow {
    animation: btn-pulse 3s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(41, 121, 255, 0); }
    50% { box-shadow: 0 0 0 8px rgba(41, 121, 255, 0.15), var(--glow-primary); }
}

.dark .btn-glow {
    animation: btn-pulse-dark 3s ease-in-out infinite;
}

@keyframes btn-pulse-dark {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 111, 212, 0); }
    50% { box-shadow: 0 0 0 8px rgba(26, 111, 212, 0.2), 0 0 30px rgba(26, 111, 212, 0.4); }
}

/* Button group */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

/* ============================================
   HEADER / NAVIGATION
   Sticky header, centered logo, flanked by nav
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--nav-bg);
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Add blur backdrop on scroll (applied via JS) */
.site-header.scrolled {
    background-color: color-mix(in srgb, var(--nav-bg) 95%, transparent);
}

@supports (backdrop-filter: blur(12px)) {
    .site-header.scrolled {
        background-color: color-mix(in srgb, var(--nav-bg) 80%, transparent);
    }
}

/* Only apply backdrop-filter on desktop (prevents mobile nav drawer bug) */
@media (min-width: 1024px) {
    @supports (backdrop-filter: blur(12px)) {
        .site-header.scrolled {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

/* Logo */
.site-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-family: "Syne", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--foreground);
    white-space: nowrap;
}

/* Header Nav Groups */
.header-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }
}

.nav-link {
    font-family: "DM Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: color 0.25s ease, background-color 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background-color: var(--muted);
    opacity: 1;
}

.nav-link.active {
    color: var(--primary);
}

/* Header Right area */
.header-right {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .header-right {
        display: flex;
    }
}

/* Header CTA */
.header-cta {
    white-space: nowrap;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Show sun icon in dark mode, moon in light mode */
.icon-sun { display: none; }
.icon-moon { display: block; }

.dark .icon-sun { display: block; }
.dark .icon-moon { display: none; }

/* ============================================
   MOBILE CONTROLS
   Wrapper for theme toggle + hamburger on mobile
   Always visible below 1024px, hidden at desktop
   ============================================ */
.mobile-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-controls {
        display: none;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE NAV DRAWER
   Full-height overlay on mobile
   ============================================ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px; /* header height */
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background);
    z-index: 999;
    overflow-y: auto;
    border-top: 1px solid var(--border);
}

/* Open state */
.mobile-nav.is-open {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.75rem 1rem;
    font-family: "DM Sans", sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 8px;
    border-bottom: 1px solid var(--border);
    transition: all 0.25s ease;
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--primary);
    background-color: var(--surface);
    opacity: 1;
}

.mobile-nav-cta {
    margin-top: 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground) !important;
    justify-content: center;
    border-radius: 8px;
    border-bottom: none;
    font-weight: 600;
}

.mobile-theme-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
}

.mobile-theme-label {
    font-family: "DM Sans", sans-serif;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

/* ============================================
   FOOTER
   4-column grid, collapses on mobile
   ============================================ */
.site-footer {
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }
}

.footer-col--brand {
    order: -1;
}

.footer-tagline {
    font-family: "Syne", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1rem 0 0.5rem;
}

.footer-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    transition: all 0.25s ease;
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    opacity: 1;
}

.footer-col-title {
    font-family: "Syne", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-link {
    font-size: 0.9375rem;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.25s ease;
    opacity: 0.85;
}

.footer-link:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-policy-link {
    background: none;
    border: none;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.25s ease;
}

.footer-policy-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

/* ============================================
   MODALS
   Centered overlay pop-ups for policies
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-panel {
    position: relative;
    background-color: var(--popover);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-title {
    font-family: "Syne", sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0;
    color: var(--foreground);
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--muted-foreground);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.modal-close:hover {
    background-color: var(--surface);
    color: var(--foreground);
}

.modal-body {
    padding: 1.5rem 2rem 2rem;
    overflow-y: auto;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--foreground);
}

.modal-body h2, .modal-body h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

.modal-body p {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

/* ============================================
   COOKIE BANNER
   Fixed bottom viewport bar
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .cookie-banner-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.cookie-text {
    font-size: 0.9375rem;
    color: var(--foreground);
    margin: 0;
    line-height: 1.5;
}

/* Cookie policy inline links - use foreground color with underline for guaranteed contrast */
.cookie-policy-link {
    background: none;
    border: none;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-size: inherit;
    color: var(--link-color);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.25s ease;
    display: inline;
}

.cookie-policy-link:hover {
    opacity: 0.8;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .cookie-actions {
        width: auto;
    }
}

.cookie-actions .btn {
    flex: 1;
}

@media (min-width: 768px) {
    .cookie-actions .btn {
        flex: none;
    }
}

/* ============================================
   PAGE PADDING FOR FIXED HEADER
   Push content below fixed 72px header
   ============================================ */
body {
    padding-top: 72px;
}

/* ============================================
   CARDS - Content Containers
   .card - base with padding
   .card-featured - highlighted with accent border
   .card-service - service listing card
   .card-case-study - case study result card
   ============================================ */
.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem; /* 24px mobile */
    position: relative;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out;
    overflow: hidden;
    min-width: 0;
}

@media (min-width: 1024px) {
    .card {
        padding: 2rem; /* 32px desktop */
    }
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

/* Card with accent left border on hover */
.card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.22s ease-out;
}

.card:hover::before {
    transform: scaleY(1);
}

/* Featured card - accent border always visible */
.card-featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.card-featured::before {
    transform: scaleY(1);
}

/* Service card */
.card-service {
    min-height: 200px;
}

.card-service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.card-service-title {
    font-family: "Syne", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.card-service-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Case study card */
.card-case-study {
    border-left: 3px solid var(--accent);
}

.card-case-study:hover::before {
    display: none;
}

.case-study-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 1rem;
}

/* In dark mode, accent (#c084f5) fails 4.5:1 with white - use dark text instead */
.dark .case-study-tag {
    color: #1a0a2e;
}

.case-study-problem {
    font-style: italic;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-study-result {
    font-family: "Syne", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.case-study-result-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* ============================================
   STAT BLOCK COMPONENT
   Large metric numbers with diagonal slash accent
   ============================================ */
.stat-block {
    text-align: center;
    padding: 2rem 1rem;
    min-width: 0;
}

.stat-number-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: "Syne", sans-serif;
    font-size: clamp(2.25rem, 3vw + 1rem, 3.5rem); /* 36px → 56px */
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
}

/* Diagonal slash accent line beneath stat number */
.stat-slash {
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-top: 8px;
    border-radius: 2px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    transition: width 0.6s ease-out;
}

.stat-block.in-view .stat-slash {
    width: 80%;
}

.stat-label {
    font-family: "DM Sans", sans-serif;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.4;
    max-width: 160px;
    display: block;
    margin: 0 auto;
}

/* Stats row container */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================
   QUOTE BLOCK COMPONENT
   Client testimonial pull-quote card
   ============================================ */
.quote-block {
    background-color: var(--secondary);
    border-left: 2px solid var(--accent);
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
    min-width: 0;
}

@media (min-width: 1024px) {
    .quote-block {
        padding: 2rem;
    }
}

.quote-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quote-text {
    margin: 0 0 1.25rem;
    padding: 0;
    border: none;
}

.quote-text p {
    font-family: "DM Sans", sans-serif;
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--secondary-foreground);
    margin: 0;
    quotes: "\201C" "\201D";
}

.quote-text p::before {
    content: open-quote;
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 0.125rem;
}

.quote-rule {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 1rem;
}

.quote-attribution {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.quote-name {
    font-family: "Syne", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-foreground);
    display: block;
}

.quote-role {
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: block;
}

/* Quotes grid - 2 columns on desktop */
.quotes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .quotes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   FAQ ACCORDION COMPONENT
   Expandable question/answer rows
   ============================================ */
.faq-accordion {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: border-color 0.25s ease;
}

.faq-item.faq-open {
    border-left: 2px solid var(--accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    padding: 1.25rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: background-color 0.25s ease;
}

.faq-question:hover {
    background-color: var(--surface);
}

.faq-question-text {
    font-family: "Syne", sans-serif;
    font-size: clamp(1.125rem, 1vw + 0.75rem, 1.375rem); /* 18px → 22px */
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

.faq-toggle {
    color: var(--accent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.faq-icon-minus {
    display: none;
}

.faq-item.faq-open .faq-icon-plus {
    display: none;
}

.faq-item.faq-open .faq-icon-minus {
    display: block;
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease-out;
}

.faq-item.faq-open .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 1.5rem 1rem 1.5rem;
    font-family: "DM Sans", sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    border-top: 1px solid var(--border);
}

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

/* ============================================
   CTA BAND COMPONENT
   Full-width conversion section
   ============================================ */
.cta-band {
    position: relative;
    width: 100%;
    padding: 3rem 1.5rem; /* 48px mobile */
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    overflow: clip;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-band {
        padding: 5rem 4rem; /* 80px desktop */
    }
}

/* Diagonal slash decorative element */
.cta-band-slash {
    position: absolute;
    top: -20%;
    right: -5%;
    width: 0;
    height: 140%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(-15deg);
    transition: width 0.6s ease-out;
    pointer-events: none;
}

.cta-band.in-view .cta-band-slash {
    width: 40%;
}

.cta-band-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cta-band-headline {
    font-family: "Syne", sans-serif;
    font-size: clamp(1.875rem, 2.5vw + 1rem, 3rem); /* 30px → 48px */
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.cta-band-subtext {
    font-family: "DM Sans", sans-serif;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* CTA band primary button: always white bg with dark navy text for sufficient contrast
   in both light and dark themes (#1e3a5f on #ffffff = 10.4:1) */
.cta-band .btn-primary {
    background-color: #ffffff;
    color: #1e3a5f;
    border-color: #ffffff;
}

.cta-band .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1e3a5f;
}

.cta-band .btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: transparent;
}

.cta-band .btn-outline:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.cta-band .btn-glow {
    animation: cta-btn-pulse 3s ease-in-out infinite;
}

@keyframes cta-btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15), 0 0 30px rgba(255, 255, 255, 0.2); }
}

/* ============================================
   SECTION HEADERS - Centered alignment
   ============================================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-header-left {
    max-width: 720px;
    margin: 0 0 3.5rem;
}

.section-label {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0.75rem 0 0;
}

/* ============================================
   DIAGONAL SLASH MOTIF
   Persistent accent element across sections
   ============================================ */
.slash-accent {
    display: inline-block;
    position: relative;
}

.slash-accent::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    transform: skewX(-15deg);
}

/* Section divider slash */
.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent 60%);
    margin: 0;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
}

/* ============================================
   HERO SECTION
   Full-bleed dark canvas hero
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
    overflow: clip;
    background-color: var(--background);
}

@media (min-width: 1024px) {
    .hero {
        padding: 7.5rem 4rem;
    }
}

/* Animated background lines */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-line {
    position: absolute;
    width: 2px;
    height: 200%;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    opacity: 0.06;
    transform-origin: top center;
}

.hero-bg-line:nth-child(1) { left: 15%; transform: rotate(-15deg); animation: line-drift 8s ease-in-out infinite; }
.hero-bg-line:nth-child(2) { left: 35%; transform: rotate(-15deg); animation: line-drift 10s ease-in-out infinite 1s; }
.hero-bg-line:nth-child(3) { left: 55%; transform: rotate(-15deg); animation: line-drift 9s ease-in-out infinite 2s; }
.hero-bg-line:nth-child(4) { left: 75%; transform: rotate(-15deg); animation: line-drift 11s ease-in-out infinite 0.5s; }

@keyframes line-drift {
    0%, 100% { opacity: 0.06; transform: rotate(-15deg) translateY(0); }
    50% { opacity: 0.12; transform: rotate(-15deg) translateY(-5%); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    padding: 0.375rem 1rem;
    border: 1px solid var(--accent);
    border-radius: 100px;
}

.hero-title {
    font-family: "Syne", sans-serif;
    font-size: clamp(2.375rem, 6vw + 0.5rem, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.1875rem);
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    flex-shrink: 0;
}

/* ============================================
   PROCESS TIMELINE
   4-phase horizontal/vertical steps
   ============================================ */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 1024px) {
    .process-timeline {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
}

.process-step {
    flex: 1;
    display: flex;
    position: relative;
    min-width: 0;
}

/* Mobile: vertical layout */
.process-step {
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-left: 2px solid var(--border);
    padding-left: 1.5rem;
    margin-left: 1.5rem;
}

.process-step:last-child {
    border-left: 2px solid transparent;
}

/* Desktop: horizontal layout */
@media (min-width: 1024px) {
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        padding: 0 1.5rem;
    }

    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 28px;
        left: calc(50% + 28px);
        right: calc(-50% + 28px);
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--border));
        clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
    }
}

.process-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Syne", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* Mobile node positioning */
.process-step .process-node {
    position: absolute;
    left: -29px;
    top: 1.25rem;
}

@media (min-width: 1024px) {
    .process-step .process-node {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 1.5rem;
    }
}

.process-step-body {
    flex: 1;
    min-width: 0;
}

@media (min-width: 1024px) {
    .process-step-body {
        text-align: center;
    }
}

.process-step-title {
    font-family: "Syne", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.process-step-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   INDUSTRY TILES
   6-tile grid with Web3 highlight
   ============================================ */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.industry-tile {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    cursor: default;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.industry-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

/* Web3 tile special styling */
.industry-tile--web3 {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--card) 0%, color-mix(in srgb, var(--accent) 8%, var(--card)) 100%);
}

.industry-tile--web3::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.industry-icon {
    font-size: 2.25rem;
    display: block;
    margin-bottom: 0.875rem;
}

.industry-name {
    font-family: "Syne", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.industry-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   PRICING CARDS
   3-tier pricing layout
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pricing-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

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

/* Featured / recommended pricing card */
.pricing-card--featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier-name {
    font-family: "Syne", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.pricing-tier-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.pricing-tier-price {
    font-family: "Syne", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.pricing-tier-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted-foreground);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--foreground);
    margin: 0;
}

.pricing-features li::before {
    content: '/';
    color: var(--accent);
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    flex-shrink: 0;
}

/* ============================================
   LEAD FORM SECTION
   Two-column form layout
   ============================================ */
.lead-form-section {
    padding: 7.5rem 0;
}

.lead-form-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .lead-form-inner {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.form-copy-title {
    font-family: "Syne", sans-serif;
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.form-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--foreground);
    margin: 0;
}

.form-checklist li::before {
    content: '/';
    color: var(--accent);
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Form card */
.form-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
}

@media (min-width: 1024px) {
    .form-card {
        padding: 2.5rem 2rem;
    }
}

/* Form fields */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    color: var(--foreground);
    background-color: var(--input);
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    min-height: 48px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-foreground);
    opacity: 0.7;
}

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

.form-select {
    cursor: pointer;
}

/* Checkbox */
.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: var(--accent);
    cursor: pointer;
    margin-top: 2px;
}

.form-checkbox-label {
    font-family: "DM Sans", sans-serif;
    font-size: 0.9375rem;
    color: var(--foreground);
    cursor: pointer;
    line-height: 1.4;
}

/* ============================================
   WHY BRANDORA - Feature list
   ============================================ */
.why-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.why-item:last-child {
    border-bottom: none;
}

.why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-item-title {
    font-family: "Syne", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

.why-item-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .why-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .why-item {
        border-right: 1px solid var(--border);
        padding: 1.5rem;
    }

    .why-item:nth-child(2n) {
        border-right: none;
    }
}

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   Summary boxes, callouts, pull quotes, comparisons
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.summary-box-title {
    font-family: "Syne", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.summary-box p {
    font-size: 0.9375rem;
    color: var(--foreground);
    margin: 0;
}

/* Callout / highlight box */
.callout {
    background: color-mix(in srgb, var(--accent) 8%, var(--card));
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.callout-title {
    font-family: "Syne", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.callout p {
    font-size: 0.9375rem;
    color: var(--foreground);
    margin: 0;
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 2rem;
    background-color: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.stat-highlight-number {
    font-family: "Syne", sans-serif;
    font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
}

.stat-highlight-label {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.stat-highlight-source {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.375rem;
    opacity: 0.8;
}

/* Pull quote */
.pull-quote {
    border: none;
    border-left: 3px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: transparent;
}

.pull-quote p {
    font-family: "Syne", sans-serif;
    font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem);
    font-style: italic;
    font-weight: 400;
    color: var(--foreground);
    line-height: 1.4;
    margin: 0 0 0.5rem;
}

.pull-quote cite {
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Details/summary accordion (CSS only) */
details.accordion-item {
    border-bottom: 1px solid var(--border);
}

details.accordion-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 1rem;
    cursor: pointer;
    font-family: "Syne", sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--foreground);
    list-style: none;
    user-select: none;
    transition: background-color 0.25s ease;
}

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

details.accordion-item summary:hover {
    background-color: var(--surface);
}

details.accordion-item summary::after {
    content: '+';
    color: var(--accent);
    font-size: 1.5rem;
    font-family: "Syne", sans-serif;
    font-weight: 300;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

details.accordion-item[open] summary::after {
    content: '−';
}

details.accordion-item .accordion-body {
    padding: 0 1rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* CTA section band (in-content) */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-section-title {
    font-family: "Syne", sans-serif;
    font-size: clamp(1.5rem, 2vw + 0.75rem, 2.25rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.cta-section-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.trust-badge:hover {
    color: var(--foreground);
    border-color: var(--accent);
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.comparison-table th {
    font-family: "Syne", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background-color: var(--surface);
}

.comparison-table td {
    color: var(--foreground);
}

.comparison-table .col-recommended {
    background-color: color-mix(in srgb, var(--accent) 6%, var(--card));
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

.comparison-table .col-recommended th {
    color: var(--accent);
}

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

/* Social proof display */
.social-proof-strip {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .social-proof-strip {
        flex-direction: row;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   Elements reveal on viewport intersection
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Buttons inside animate-on-scroll containers must remain visually opaque
   so axe can compute correct contrast ratios at any scroll position */
.animate-on-scroll .btn,
.animate-on-scroll.btn {
    opacity: 1;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children > *:nth-child(6) { transition-delay: 400ms; }

/* Stagger on individual .animate-on-scroll siblings */
.animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.animate-on-scroll:nth-child(6) { transition-delay: 400ms; }

/* ============================================
   UTILITY CLASSES
   Common helper classes
   ============================================ */

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Colors */
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }

/* Links that use accent color must have underline to distinguish from surrounding text */
a.text-accent {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Margin utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Display */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* Visual separator */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

/* Chip / badge */
.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.chip-accent {
    background-color: color-mix(in srgb, var(--accent) 12%, transparent);
    border-color: var(--accent);
    color: var(--accent);
}

/* Inline metric highlight */
.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: "Syne", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

/* Before/after comparison display */
.before-after {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.before-after-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.before-after-value {
    font-family: "Syne", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.before-after-value.before {
    color: var(--muted-foreground);
    text-decoration: line-through;
    opacity: 0.7;
}

.before-after-value.after {
    color: var(--accent);
}

.before-after-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.before-after-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    font-family: "Syne", sans-serif;
}

/* ============================================
   TABLE STYLES
   For structured data and comparisons
   ============================================ */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    color: var(--foreground);
}

thead {
    background-color: var(--surface);
}

th {
    font-family: "Syne", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.5;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background-color: var(--surface);
}

/* ============================================
   CRO SERVICE PAGE
   Hero, comparison card, who-benefits grid,
   pricing comparison, process variations
   ============================================ */

/* CRO Hero - compact variant of main hero */
.cro-hero {
    position: relative;
    min-height: calc(80vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
    overflow: clip;
    background-color: var(--background);
}

@media (min-width: 1024px) {
    .cro-hero {
        padding: 7.5rem 4rem;
        min-height: calc(75vh - 72px);
    }
}

.cro-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

/* ============================================
   CRO - What Is CRO Section
   2-column: copy left, comparison card right
   ============================================ */
.cro-what-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .cro-what-inner {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.cro-what-copy h2 {
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

/* CRO Comparison Card - visual data card */
.cro-comparison-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.cro-comparison-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--surface);
}

.cro-comparison-rows {
    padding: 0;
}

.cro-comparison-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}

.cro-comparison-row--before {
    border-bottom: 1px solid var(--border);
}

.cro-comparison-row--after {
    background: color-mix(in srgb, var(--accent) 5%, var(--card));
}

.cro-comparison-scenario {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cro-scenario-label {
    font-family: "DM Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cro-scenario-cvr {
    font-family: "Syne", sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.cro-scenario-cvr--accent {
    color: var(--accent);
}

.cro-comparison-result {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
}

.cro-result-number {
    font-family: "Syne", sans-serif;
    font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.cro-result-number--muted {
    color: var(--muted-foreground);
    text-decoration: line-through;
    opacity: 0.7;
}

.cro-result-number--accent {
    color: var(--accent);
}

.cro-result-unit {
    font-family: "DM Sans", sans-serif;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.cro-comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--surface);
}

.cro-comparison-arrow {
    font-family: "Syne", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cro-comparison-footer {
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    text-align: center;
}

.cro-uplift-badge {
    font-family: "Syne", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

/* ============================================
   CRO - Who Benefits Grid
   4-item open layout with icons
   ============================================ */
.cro-who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 640px) {
    .cro-who-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.cro-who-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.22s ease;
    min-width: 0;
}

.cro-who-item:hover {
    background-color: var(--surface);
}

/* Remove bottom border on last row */
@media (max-width: 639px) {
    .cro-who-item:last-child {
        border-bottom: none;
    }
}

@media (min-width: 640px) {
    .cro-who-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .cro-who-item:nth-child(odd) {
        border-right: 1px solid var(--border);
    }
}

.cro-who-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.125rem;
    display: block;
}

.cro-who-body {
    flex: 1;
    min-width: 0;
}

.cro-who-title {
    font-family: "Syne", sans-serif;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.cro-who-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CRO - Pricing Comparison
   2-column comparison: standalone vs retainer
   ============================================ */
.cro-pricing-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .cro-pricing-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.cro-pricing-inner h2 {
    margin-top: 0.5rem;
}

.cro-pricing-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cro-pricing-comparison {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.cro-pricing-col {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cro-pricing-col--featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.cro-pricing-col-title {
    font-family: "Syne", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.25rem;
    padding-top: 0.5rem;
}

/* Featured col badge spacing */
.cro-pricing-col--featured .cro-pricing-col-title {
    padding-top: 1rem;
}

/* ============================================
   CRO SERVICE PAGE
   Hero, comparison card, who-benefits grid,
   pricing comparison, process variations
   ============================================ */

/* CRO Hero - compact variant of main hero */
.cro-hero {
    position: relative;
    min-height: calc(80vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
    overflow: clip;
    background-color: var(--background);
}

@media (min-width: 1024px) {
    .cro-hero {
        padding: 7.5rem 4rem;
        min-height: calc(75vh - 72px);
    }
}

.cro-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

/* ============================================
   CRO - What Is CRO Section
   2-column: copy left, comparison card right
   ============================================ */
.cro-what-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .cro-what-inner {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.cro-what-copy h2 {
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

/* CRO Comparison Card - visual data card */
.cro-comparison-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.cro-comparison-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--surface);
}

.cro-comparison-rows {
    padding: 0;
}

.cro-comparison-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}

.cro-comparison-row--before {
    border-bottom: 1px solid var(--border);
}

.cro-comparison-row--after {
    background: color-mix(in srgb, var(--accent) 5%, var(--card));
}

.cro-comparison-scenario {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cro-scenario-label {
    font-family: "DM Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cro-scenario-cvr {
    font-family: "Syne", sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.cro-scenario-cvr--accent {
    color: var(--accent);
}

.cro-comparison-result {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
}

.cro-result-number {
    font-family: "Syne", sans-serif;
    font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.cro-result-number--muted {
    color: var(--muted-foreground);
    text-decoration: line-through;
    opacity: 0.7;
}

.cro-result-number--accent {
    color: var(--accent);
}

.cro-result-unit {
    font-family: "DM Sans", sans-serif;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.cro-comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--surface);
}

.cro-comparison-arrow {
    font-family: "Syne", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cro-comparison-footer {
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    text-align: center;
}

.cro-uplift-badge {
    font-family: "Syne", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

/* ============================================
   CRO - Who Benefits Grid
   4-item open layout with icons
   ============================================ */
.cro-who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 640px) {
    .cro-who-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.cro-who-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.22s ease;
    min-width: 0;
}

.cro-who-item:hover {
    background-color: var(--surface);
}

/* Remove bottom border on last row */
@media (max-width: 639px) {
    .cro-who-item:last-child {
        border-bottom: none;
    }
}

@media (min-width: 640px) {
    .cro-who-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .cro-who-item:nth-child(odd) {
        border-right: 1px solid var(--border);
    }
}

.cro-who-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.125rem;
    display: block;
}

.cro-who-body {
    flex: 1;
    min-width: 0;
}

.cro-who-title {
    font-family: "Syne", sans-serif;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.cro-who-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CRO - Pricing Comparison
   2-column comparison: standalone vs retainer
   ============================================ */
.cro-pricing-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .cro-pricing-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.cro-pricing-inner h2 {
    margin-top: 0.5rem;
}

.cro-pricing-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cro-pricing-comparison {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.cro-pricing-col {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cro-pricing-col--featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.cro-pricing-col-title {
    font-family: "Syne", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.25rem;
    padding-top: 0.5rem;
}

/* Featured col badge spacing */
.cro-pricing-col--featured .cro-pricing-col-title {
    padding-top: 1rem;
}

/* ============================================
   CASE STUDIES PAGE
   Hero, case study cards, industry chips
   ============================================ */

/* Page Hero */
.cs-hero {
    position: relative;
    min-height: calc(85vh - 72px);
    display: flex;
    align-items: center;
    padding: 5rem 0;
    overflow: clip;
    background-color: var(--background);
    text-align: center;
}

@media (min-width: 1024px) {
    .cs-hero {
        padding: 7.5rem 0;
    }
}

.cs-hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Case Study Cards - full-width editorial layout */
.cs-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
    position: relative;
}

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

/* Web3 card special gradient border */
.cs-card--web3 {
    border-left: 3px solid var(--accent);
    background: linear-gradient(160deg, var(--card) 0%, color-mix(in srgb, var(--accent) 5%, var(--card)) 100%);
}

.cs-card-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 1024px) {
    .cs-card-inner {
        grid-template-columns: 1.4fr 1fr;
    }
}

.cs-card-left {
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .cs-card-left {
        padding: 2.5rem 2rem 2.5rem 2.5rem;
        border-bottom: none;
        border-right: 1px solid var(--border);
    }
}

.cs-card-right {
    padding: 1.5rem;
}

@media (min-width: 1024px) {
    .cs-card-right {
        padding: 2.5rem 2.5rem 2.5rem 2rem;
    }
}

.cs-card-title {
    font-family: "Syne", sans-serif;
    font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem);
    font-weight: 600;
    color: var(--foreground);
    margin: 0.875rem 0 0.875rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.cs-card-problem {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.cs-card-strategy {
    margin-top: 1rem;
}

.cs-strategy-label {
    font-family: "Syne", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.cs-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.cs-bullet-list li {
    font-size: 0.9375rem;
    color: var(--foreground);
    line-height: 1.55;
    padding-left: 1.25rem;
    position: relative;
    margin: 0;
}

.cs-bullet-list li::before {
    content: '/';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.55;
}

/* Results panel */
.cs-results-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cs-results-label {
    font-family: "Syne", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.cs-result-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cs-result-item:last-of-type {
    border-bottom: none;
}

.cs-result-number {
    display: block;
    font-family: "Syne", sans-serif;
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.cs-result-desc {
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.45;
    display: block;
}

/* Web3 results panel */
.cs-results-panel--web3 .cs-result-number {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Inline quote within case study */
.cs-inline-quote {
    border: none;
    border-left: 2px solid var(--accent);
    padding: 0.875rem 1rem;
    margin: 1.25rem 0 0;
    background: color-mix(in srgb, var(--accent) 5%, transparent);
    border-radius: 0 6px 6px 0;
}

.cs-inline-quote p {
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.55;
    margin: 0 0 0.375rem;
}

.cs-inline-quote cite {
    font-family: "DM Sans", sans-serif;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Web3 tag */
.cs-tag-web3 {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: #ffffff;
}

/* Industry strip */
.cs-industry-strip {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cs-industry-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .cs-industry-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.cs-industry-chip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out;
    min-width: 0;
}

.cs-industry-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

/* Web3 chip special styling */
.cs-industry-chip--web3 {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--card) 0%, color-mix(in srgb, var(--accent) 7%, var(--card)) 100%);
}

.cs-industry-chip-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.125rem;
}

.cs-industry-chip-body {
    flex: 1;
    min-width: 0;
}

.cs-industry-chip-name {
    font-family: "Syne", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    display: block;
    margin-bottom: 0.375rem;
}

.cs-industry-chip-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin: 0;
}

/* Metrics table wrapper responsive */
.cs-metrics-table-wrap {
    overflow-x: auto;
}

/* ============================================
   INDEX PAGE - Why Brandora layout
   ============================================ */
.index-why-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .index-why-inner {
        grid-template-columns: 1fr 1.6fr;
        gap: 5rem;
    }
}

/* ============================================
   RESPONSIVE HELPERS
   Show/hide at breakpoints
   ============================================ */
.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: initial;
    }
}

.show-mobile-only {
    display: initial;
}

@media (min-width: 768px) {
    .show-mobile-only {
        display: none;
    }
}

/* ============================================
   ACCESSIBILITY
   Focus styles, skip links
   ============================================ */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to main content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.25s ease;
}

.skip-link:focus {
    top: 0;
}