/* CrackixAI — Seoly-inspired theme (Designesia) */
:root {
    --cx-primary: #3a7fd4;
    --cx-primary-rgb: 58, 127, 212;
    --cx-hero-accent: #4a90e2;
    --cx-secondary: #ff6f61;
    --cx-secondary-rgb: 255, 111, 97;
    --cx-tertiary: #8559e6;
    --cx-tertiary-rgb: 133, 89, 230;
    --cx-bg: #ffffff;
    --cx-bg-elevated: #f8f9fa;
    --cx-bg-card: #ffffff;
    --cx-bg-deep: #f4f4f4;
    --cx-border: rgba(0, 0, 0, 0.08);
    --cx-border-strong: #e2e8f0;
    --cx-text: #35404e;
    --cx-muted: #727a85;
    --cx-muted-dim: #9aa3b2;
    --cx-navy: #101010;
    --cx-grad: linear-gradient(135deg, #4a90e2 0%, #8559e6 100%);
    --cx-grad-peach-sky: linear-gradient(90deg, #fdf0ed 0%, #f8e8f2 38%, #e8f0ff 100%);
    --cx-green: #4a90e2;
    --cx-green-bright: #5b9ee8;
    --cx-green-dim: #3a7fd4;
    --cx-green-rgb: 74, 144, 226;
    --cx-green-glow: rgba(71, 134, 238, 0.35);
    --cx-gold: #ff6f61;
    --cx-gold-bright: #ff8578;
    --cx-gold-rgb: 255, 111, 97;
    --cx-gold-glow: rgba(255, 120, 81, 0.25);
    --cx-purple: #4a90e2;
    --cx-purple-bright: #4a90e2;
    --cx-purple-dim: #3a7fd4;
    --cx-purple-rgb: 74, 144, 226;
    --cx-success: #22c55e;
    --cx-radius: 16px;
    --cx-radius-lg: 20px;
    --cx-shadow: 0 20px 40px rgba(0, 19, 87, 0.08);
    --cx-shadow-lg: 0 30px 60px rgba(0, 19, 87, 0.12);
    --cx-font: 'Urbanist', system-ui, sans-serif;
    --cx-container-max: 1360px;
    --cx-container-pad: clamp(1rem, 2.5vw, 2.5rem);
    --cx-section-gap: clamp(2rem, 3.5vw, 2.75rem);
    --cx-section-space-y: calc(var(--cx-section-gap) / 2);
    --cx-marquee-pull: 1.75rem;
    --cx-marquee-ribbon-gap: 0.5rem;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

body.crackix-body {
    margin: 0;
    font-family: var(--cx-font);
    font-size: 17px;
    background: var(--cx-bg);
    color: var(--cx-muted);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.crackix-body::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

/* Hide X/Y scrollbars site-wide; content can still scroll */
body.crackix-body * {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.crackix-body *::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

body.crackix-body *::-webkit-scrollbar-thumb,
body.crackix-body *::-webkit-scrollbar-track {
    display: none !important;
    background: transparent;
}

a { color: var(--cx-primary); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--cx-secondary); }

h1, h2, h3, h4, .cx-section-title, .cx-modal h2 {
    color: var(--cx-text);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.cx-gradient-text,
.cx-id-color {
    color: var(--cx-primary);
}

.cx-subtitle-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cx-secondary);
    margin-bottom: 0.75rem;
}

/* Header — Seoly floating pill + full bar on scroll */
.cx-header {
    position: relative;
    z-index: 100;
    background: transparent;
}

.cx-header-float {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.15rem var(--cx-container-pad) 0;
    background: transparent;
    border: none;
    pointer-events: none;
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.cx-header-float.cx-header-auto-hidden {
    transform: translateY(calc(-100% - 1.5rem));
    pointer-events: none;
}

.cx-header-float.cx-header-expanded {
    padding: 0;
}

.cx-header-shell {
    max-width: var(--cx-container-max);
    margin: 0 auto;
    padding: 0.55rem 0.55rem 0.55rem 1.15rem;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(0, 19, 87, 0.12);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem 1.25rem;
    pointer-events: auto;
    transition: border-radius 0.4s ease, max-width 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.cx-header-float.cx-header-expanded .cx-header-shell {
    max-width: 100%;
    border-radius: 0;
    padding: 0.85rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 19, 87, 0.1);
}

.cx-header-shell {
    position: relative;
}

.cx-header-col-logo {
    flex-shrink: 0;
    min-width: 0;
}

.cx-header-col-nav {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.cx-header-col-nav .cx-nav {
    flex-wrap: wrap;
    justify-content: center;
}

.cx-header-col-nav .cx-nav a {
    font-size: 0.88rem;
    padding: 0.4rem 0.6rem;
}

.cx-header-col-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-shrink: 0;
}

.cx-header-shell-compact {
    grid-template-columns: 1fr auto;
}

.cx-header-bento {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.cx-header-bento:hover {
    background: rgba(var(--cx-primary-rgb), 0.08);
}

.cx-header-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 5px);
    gap: 4px;
}

.cx-header-bento-grid span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cx-muted);
}

.cx-header-mobile-panel {
    display: none;
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0.5rem;
    left: 0.5rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: var(--cx-radius);
    box-shadow: var(--cx-shadow-lg);
    border: 1px solid var(--cx-border);
    pointer-events: auto;
    z-index: 5;
    grid-column: 1 / -1;
}

.cx-header-mobile-panel.open {
    display: block;
}

.cx-header-mobile-panel .cx-nav {
    flex-direction: column;
    align-items: stretch;
}

.cx-header-mobile-panel .cx-nav a {
    display: block;
    padding: 0.65rem 0.85rem;
}

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

body:has(.cx-header-float) .cx-landing-main {
    padding-top: 0;
}

.cx-header-float.cx-header-over-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding-top: 1.15rem;
}

.cx-header-float.cx-header-over-hero.cx-header-sticky {
    position: fixed;
    top: 0;
    padding-top: 0;
}

.cx-header-float.cx-header-over-hero.cx-header-sticky .cx-header-shell {
    max-width: var(--cx-container-max);
    margin: 0 auto;
    border-radius: 999px;
}

.cx-header-float.cx-header-over-hero.cx-header-expanded .cx-header-shell {
    max-width: 100%;
    border-radius: 0;
}

.cx-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cx-text);
}
.cx-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}
.cx-brand-logo-horizontal {
    height: 30px;
    width: auto;
    max-height: 30px;
    display: block;
    flex-shrink: 0;
}
.cx-brand-logo-wordmark {
    height: 24px;
    width: auto;
    max-height: 24px;
    display: block;
}
.cx-brand-logo-symbol {
    height: 30px;
    width: auto;
    max-height: 30px;
    max-width: 30px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}
.cx-brand-logo-footer {
    height: 100px;
    width: auto;
    max-height: 100px;
    display: block;
    flex-shrink: 0;
}
.cx-logo-brand { gap: 0; }
.cx-brand-name { font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.cx-brand-name .cx-brand-ai { color: var(--cx-secondary); }

.cx-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cx-nav a {
    color: var(--cx-text);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.cx-nav a:hover { color: var(--cx-primary); background: rgba(var(--cx-primary-rgb), 0.08); }

.cx-header-actions { display: flex; align-items: center; gap: 0.75rem; }

.cx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
    font-family: inherit;
}
.cx-btn:active { transform: scale(0.98); }
.cx-btn-ghost {
    background: transparent;
    color: var(--cx-text);
    border: 1px solid var(--cx-border-strong);
}
.cx-btn-ghost:hover {
    border-color: var(--cx-primary);
    color: var(--cx-primary);
    background: rgba(var(--cx-primary-rgb), 0.06);
}
.cx-btn-primary {
    background: var(--cx-primary);
    color: #fff;
    box-shadow: 0 12px 28px rgba(var(--cx-primary-rgb), 0.35);
}
.cx-btn-primary:hover {
    transform: translateY(-2px);
    background: #2f6fc4;
    box-shadow: 0 16px 32px rgba(var(--cx-primary-rgb), 0.4);
    color: #fff;
}
.cx-btn-outline-green {
    background: transparent;
    color: var(--cx-primary);
    border: 2px solid var(--cx-primary);
}
.cx-btn-outline-green:hover {
    background: rgba(var(--cx-primary-rgb), 0.08);
    color: var(--cx-primary);
}
.cx-btn-light-trans {
    background: rgba(0, 0, 0, 0.05);
    color: var(--cx-text);
    border: 1px solid transparent;
    font-weight: 700;
}
.cx-btn-light-trans:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--cx-text);
    transform: translateY(-2px);
}
.cx-btn-lg { padding: 0.85rem 1.85rem; font-size: 1rem; }
.cx-btn-sm { padding: 0.5rem 1.15rem; font-size: 0.85rem; }

/* Hero — first section at top with animated background */
.cx-hero-band {
    position: relative;
    overflow: hidden;
    min-height: min(88vh, 880px);
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, #e8f0ff 0%, #f4f7ff 42%, #fdf0ed 88%, #f5e8f0 100%);
}

.cx-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cx-hero-grid {
    position: absolute;
    inset: -20% -10%;
    background-image:
        linear-gradient(rgba(71, 134, 238, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(71, 134, 238, 0.07) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
    animation: cx-hero-grid-pulse 10s ease-in-out infinite;
}

.cx-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.85;
}

.cx-hero-orb-a {
    width: 480px;
    height: 480px;
    top: -120px;
    right: -80px;
    background: rgba(var(--cx-primary-rgb), 0.35);
    animation: cx-hero-drift-a 18s ease-in-out infinite alternate;
}

.cx-hero-orb-b {
    width: 400px;
    height: 400px;
    bottom: -60px;
    left: -70px;
    background: rgba(var(--cx-secondary-rgb), 0.28);
    animation: cx-hero-drift-b 22s ease-in-out infinite alternate;
}

.cx-hero-orb-c {
    width: 320px;
    height: 320px;
    top: 30%;
    right: 8%;
    left: auto;
    background: rgba(133, 89, 230, 0.22);
    animation: cx-hero-drift-c 14s ease-in-out infinite alternate;
}

.cx-hero-shine {
    position: absolute;
    top: -50%;
    left: -30%;
    width: 60%;
    height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
    animation: cx-hero-shine 9s ease-in-out infinite;
}

.cx-hero {
    max-width: var(--cx-container-max);
    margin: 0 auto;
    width: 100%;
    padding: 6.5rem var(--cx-container-pad) var(--cx-section-gap);
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.cx-hero-copy {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}
.cx-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    background: rgba(var(--cx-secondary-rgb), 0.12);
    border: 1px solid rgba(var(--cx-secondary-rgb), 0.25);
    color: var(--cx-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.cx-hero h1 {
    font-size: clamp(2.35rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
    color: var(--cx-text);
    max-width: min(42rem, 100%);
}
.cx-hero h1 .cx-sparkle { color: var(--cx-hero-accent); }
.cx-hero .cx-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--cx-muted);
    max-width: 36rem;
    margin: 0 0 2rem;
    line-height: 1.65;
}
.cx-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-start; }

/* Hero visual — animated interview AI illustration */
.cx-hero-visual {
    position: relative;
    min-height: clamp(22rem, 38vw, 28rem);
    width: 100%;
    max-width: 34rem;
    justify-self: end;
    margin-right: clamp(0rem, 2vw, 1.5rem);
}

.cx-hero-visual-glow {
    position: absolute;
    inset: 8% 5% 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--cx-primary-rgb), 0.22) 0%, transparent 68%);
    animation: cx-hero-visual-glow 5s ease-in-out infinite alternate;
}

.cx-hero-visual-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(var(--cx-primary-rgb), 0.18);
    pointer-events: none;
}

.cx-hero-visual-orbit-a {
    inset: 4% 8%;
    animation: cx-hero-visual-spin 28s linear infinite;
}

.cx-hero-visual-orbit-b {
    inset: 14% 18%;
    animation: cx-hero-visual-spin 20s linear infinite reverse;
}

.cx-hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(53, 64, 78, 0.12), 0 4px 14px rgba(74, 144, 226, 0.08);
    backdrop-filter: blur(12px);
}

.cx-hero-card-video {
    top: 4%;
    left: 2%;
    right: 18%;
    padding: 0.85rem 1rem 1rem;
    animation: cx-hero-float-a 6s ease-in-out infinite;
}

.cx-hero-card-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--cx-muted);
    margin-bottom: 0.65rem;
}

.cx-hero-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: cx-hero-live-pulse 2s ease infinite;
}

.cx-hero-card-time {
    margin-left: auto;
    font-variant-numeric: tabular-nums;
}

.cx-hero-video-frame {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.cx-hero-avatar {
    flex-shrink: 0;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 12px;
    background: linear-gradient(145deg, #dbeafe, #bfdbfe);
    position: relative;
}

.cx-hero-avatar-interviewer::after {
    content: "";
    position: absolute;
    inset: 28% 32%;
    border-radius: 50%;
    background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
}

.cx-hero-speech-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--cx-primary);
    margin-bottom: 0.2rem;
}

.cx-hero-speech p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--cx-text);
    font-weight: 500;
}

.cx-hero-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    margin-top: 0.75rem;
}

.cx-hero-wave span {
    width: 3px;
    border-radius: 3px;
    background: var(--cx-primary);
    opacity: 0.55;
    animation: cx-hero-wave 1.1s ease-in-out infinite;
}

.cx-hero-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.cx-hero-wave span:nth-child(2) { height: 14px; animation-delay: 0.12s; }
.cx-hero-wave span:nth-child(3) { height: 10px; animation-delay: 0.24s; }
.cx-hero-wave span:nth-child(4) { height: 16px; animation-delay: 0.08s; }
.cx-hero-wave span:nth-child(5) { height: 9px; animation-delay: 0.18s; }

.cx-hero-card-ai {
    top: 38%;
    right: 0;
    left: 22%;
    padding: 0.9rem 1rem;
    border-color: rgba(var(--cx-primary-rgb), 0.15);
    animation: cx-hero-float-b 7s ease-in-out infinite;
}

.cx-hero-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cx-primary);
    margin-bottom: 0.45rem;
}

.cx-hero-ai-text {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--cx-text);
    font-weight: 500;
}

.cx-hero-typing {
    display: flex;
    gap: 4px;
    margin-top: 0.55rem;
}

.cx-hero-typing span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cx-primary);
    opacity: 0.45;
    animation: cx-hero-typing 1.2s ease-in-out infinite;
}

.cx-hero-typing span:nth-child(2) { animation-delay: 0.15s; }
.cx-hero-typing span:nth-child(3) { animation-delay: 0.3s; }

.cx-hero-card-code {
    bottom: 2%;
    left: 8%;
    right: 6%;
    padding: 0.75rem 0.9rem;
    animation: cx-hero-float-c 8s ease-in-out infinite;
}

.cx-hero-code-dots {
    display: flex;
    gap: 5px;
    margin-bottom: 0.45rem;
}

.cx-hero-code-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.cx-hero-code-dots span:nth-child(1) { background: #ff6f61; }
.cx-hero-code-dots span:nth-child(2) { background: #fbbf24; }
.cx-hero-code-dots span:nth-child(3) { background: #22c55e; }

.cx-hero-card-code pre {
    margin: 0;
    overflow: hidden;
}

.cx-hero-card-code code {
    display: block;
    font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
    font-size: 0.68rem;
    line-height: 1.55;
    color: #334155;
    white-space: pre;
}

.cx-code-kw { color: #7c3aed; font-weight: 600; }
.cx-code-fn { color: #2563eb; }

.cx-hero-pill {
    position: absolute;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    white-space: nowrap;
    background: #fff;
    color: var(--cx-text);
    border: 1px solid rgba(var(--cx-primary-rgb), 0.12);
    box-shadow: 0 8px 24px rgba(53, 64, 78, 0.1);
}

.cx-hero-pill-a {
    top: 0;
    right: 0;
    animation: cx-hero-pill-float 5.5s ease-in-out infinite;
}

.cx-hero-pill-b {
    bottom: 28%;
    left: -2%;
    animation: cx-hero-pill-float 6.5s ease-in-out infinite 0.4s;
}

.cx-hero-pill-c {
    bottom: 0;
    right: 12%;
    color: #fff;
    background: var(--cx-primary);
    border-color: transparent;
    animation: cx-hero-pill-float 7s ease-in-out infinite 0.8s;
}

/* Platform promo band — ParakeetAI-style banner (Crackix blue → coral → purple) */
.cx-platform-promo-band {
    position: relative;
    z-index: 1;
    padding: var(--cx-section-gap) var(--cx-container-pad) var(--cx-section-space-y);
    margin-top: 0;
    background: #ffffff;
}

.cx-platform-promo-wrap {
    max-width: var(--cx-container-max);
    margin: 0 auto;
}

.cx-platform-promo-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3.25rem);
    border-radius: calc(var(--cx-radius-lg) + 4px);
    background: linear-gradient(108deg, #4a90e2 0%, #5b84e8 32%, #ff6f61 68%, #8559e6 100%);
    box-shadow: 0 22px 50px rgba(74, 144, 226, 0.22);
    overflow: hidden;
    position: relative;
}

.cx-platform-promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 100% 50%, rgba(255, 255, 255, 0.14) 0%, transparent 55%);
    pointer-events: none;
}

.cx-platform-promo-copy {
    position: relative;
    z-index: 1;
    max-width: 34rem;
}

.cx-platform-promo-title {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.cx-platform-promo-lead {
    margin: 0 0 1.65rem;
    font-size: clamp(0.95rem, 1.35vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    max-width: 32rem;
}

.cx-platform-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.2rem 0.7rem 0.85rem;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.96);
    color: var(--cx-text);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 19, 87, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cx-platform-promo-cta:hover {
    color: var(--cx-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 19, 87, 0.16);
}

.cx-platform-promo-cta strong {
    color: var(--cx-primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cx-platform-promo-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cx-primary);
}

.cx-platform-promo-visual {
    position: relative;
    z-index: 1;
    min-height: clamp(10rem, 22vw, 13.5rem);
    padding-right: clamp(3rem, 8vw, 6rem);
}

.cx-platform-promo-rows {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
}

.cx-platform-promo-row {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.7rem;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 19, 87, 0.1);
    width: max-content;
    max-width: 100%;
}

.cx-platform-promo-row-b {
    margin-left: clamp(1.25rem, 4vw, 2.75rem);
}

.cx-platform-promo-row-c {
    margin-left: clamp(0.5rem, 2vw, 1.5rem);
}

.cx-platform-promo-row .cx-platform-icon {
    display: inline-flex;
    flex-shrink: 0;
}

.cx-platform-promo-row .cx-platform-icon svg {
    width: clamp(1.65rem, 3vw, 2rem);
    height: clamp(1.65rem, 3vw, 2rem);
    display: block;
}

.cx-platform-promo-brand {
    position: absolute;
    right: -0.25rem;
    bottom: -0.35rem;
    height: 30px;
    width: auto;
    max-height: 30px;
    filter: drop-shadow(0 12px 28px rgba(0, 19, 87, 0.18));
    pointer-events: none;
    animation: cx-platform-promo-float 5s ease-in-out infinite;
}

.cx-platform-promo-video-thumb {
    position: absolute;
    right: clamp(4.5rem, 12vw, 7.5rem);
    bottom: 0.35rem;
    width: clamp(7.5rem, 18vw, 10.5rem);
    aspect-ratio: 16 / 10;
    padding: 0;
    border: 3px solid rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0, 19, 87, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cx-platform-promo-video-thumb:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 36px rgba(0, 19, 87, 0.24);
}

.cx-platform-promo-video-preview {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cx-platform-promo-video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cx-primary);
    background: rgba(255, 255, 255, 0.08);
}

@keyframes cx-platform-promo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.cx-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(2rem, 6vw, 7rem);
    margin: 0;
    padding: 0;
    border: none;
}

.cx-stat {
    text-align: center;
    flex: 1 1 200px;
    max-width: 340px;
    min-width: 180px;
}

.cx-stat strong {
    display: block;
    font-size: clamp(2.85rem, 5.8vw, 4.5rem);
    font-weight: 700;
    color: var(--cx-text);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.cx-stat span {
    display: block;
    margin-top: 0.55rem;
    font-size: clamp(0.92rem, 1.15vw, 1.08rem);
    color: var(--cx-muted);
    font-weight: 500;
    line-height: 1.45;
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
}

/* Stats band — peach → sky gradient (Seoly) */
.cx-stats-band {
    position: relative;
    z-index: 1;
    background: var(--cx-grad-peach-sky);
    padding: var(--cx-section-gap) var(--cx-container-pad) calc(var(--cx-section-gap) + var(--cx-marquee-pull));
    margin-top: -1px;
}

.cx-stats-band-inner {
    max-width: min(var(--cx-container-max), 1100px);
    margin: 0 auto;
}

.cx-stats-band .cx-stats {
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 5rem);
}

/* Slanted dual marquee ribbons (Seoly — same structure as designesia.com/themes/seoly) */
.cx-marquee-slant {
    position: relative;
    z-index: 3;
    margin: 0 0 var(--cx-section-space-y);
    padding: 0 0 0.35rem;
    overflow: visible;
    pointer-events: none;
}

.cx-marquee-bar {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    line-height: 1;
    color: #fff;
}

.cx-marquee-bar-blue {
    background: var(--cx-primary);
    transform: rotate(2deg);
    margin-top: calc(var(--cx-marquee-pull) * -1);
    position: relative;
    z-index: 1;
}

.cx-marquee-bar-coral {
    background: var(--cx-secondary);
    transform: rotate(-1deg);
    margin-top: var(--cx-marquee-ribbon-gap);
    position: relative;
    z-index: 2;
}

.cx-marquee-track {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    animation: cx-marquee 60s linear infinite;
}

.cx-marquee-track-right {
    animation-direction: reverse;
}

.cx-marquee-track-left {
    animation-direction: normal;
}

.cx-marquee-chunk {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cx-marquee-phrase,
.cx-marquee-sep {
    font-size: clamp(2rem, 3.8vw, 3.75rem);
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    margin-left: 1rem;
    margin-right: 1rem;
    user-select: none;
}

.cx-marquee-sep {
    opacity: 0.3;
}

/* Legacy flat marquee (unused) */
.cx-marquee {
    display: none;
}

.cx-hero-band h1,
.cx-hero-band .cx-subtitle,
.cx-hero-band .cx-hero-cta,
.cx-hero-band .cx-hero-visual {
    animation: cx-fade-up 0.75s ease both;
}
.cx-hero-band h1 { animation-delay: 0.08s; }
.cx-hero-band .cx-subtitle { animation-delay: 0.16s; }
.cx-hero-band .cx-hero-cta { animation-delay: 0.24s; }
.cx-hero-band .cx-hero-visual { animation-delay: 0.32s; }

/* Platforms — Seoly About-style two-column box */
.cx-platforms {
    padding: var(--cx-section-space-y) max(var(--cx-container-pad), 1.25rem);
    background: #ffffff;
}

.cx-platforms-box {
    max-width: var(--cx-container-max);
    margin: 0 auto;
    padding: clamp(2.5rem, 4.5vw, 3.5rem);
    border-radius: var(--cx-radius-lg, 16px);
    background: rgba(var(--cx-secondary-rgb), 0.1);
    overflow: hidden;
    position: relative;
}

.cx-platforms-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.cx-platforms-copy {
    text-align: left;
}

.cx-platforms-title {
    font-size: clamp(1.85rem, 3.4vw, 2.65rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--cx-text);
    margin: 0 0 1rem;
    max-width: 22rem;
}

.cx-platforms-lead {
    margin: 0 0 1.75rem;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--cx-muted);
    max-width: 34rem;
}

.cx-platform-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.25rem;
}

.cx-platform-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 18px rgba(53, 64, 78, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cx-platform-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(53, 64, 78, 0.1);
}

.cx-platform-icon {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cx-platform-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cx-platform-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cx-text);
    line-height: 1.3;
}

.cx-platforms-art {
    position: relative;
    min-height: clamp(18rem, 32vw, 24rem);
}

/* Platforms animated illustration */
.cx-platforms-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.cx-platforms-visual-glow {
    position: absolute;
    inset: 10% 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--cx-primary-rgb), 0.18) 0%, transparent 70%);
    animation: cx-platforms-glow 5s ease-in-out infinite alternate;
}

.cx-platforms-scene {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.cx-platforms-window {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(88%, 20rem);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(53, 64, 78, 0.14);
    overflow: hidden;
    animation: cx-platforms-window-float 6s ease-in-out infinite;
}

.cx-platforms-window-bar {
    display: flex;
    gap: 5px;
    padding: 0.55rem 0.75rem;
    background: #f1f5f9;
}

.cx-platforms-window-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.cx-platforms-window-bar span:nth-child(1) { background: #ff6f61; }
.cx-platforms-window-bar span:nth-child(2) { background: #fbbf24; }
.cx-platforms-window-bar span:nth-child(3) { background: #22c55e; }

.cx-platforms-window-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem 1.25rem;
    min-height: 9rem;
    background: linear-gradient(180deg, #eef4ff 0%, #f8fafc 100%);
}

.cx-platforms-person {
    width: 3.2rem;
    height: 5.5rem;
    border-radius: 1.4rem 1.4rem 0.4rem 0.4rem;
    position: relative;
    animation: cx-platforms-jump 2.8s ease-in-out infinite;
}

.cx-platforms-person::before {
    content: "";
    position: absolute;
    top: -1.35rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: inherit;
    filter: brightness(0.95);
}

.cx-platforms-person-a {
    background: #ff6f61;
    animation-delay: 0s;
}

.cx-platforms-person-b {
    background: #4a90e2;
    animation-delay: 0.35s;
}

.cx-platforms-live {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--cx-muted);
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
}

.cx-platforms-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: cx-hero-live-pulse 2s ease infinite;
}

.cx-platforms-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--cx-text);
    box-shadow: 0 10px 24px rgba(53, 64, 78, 0.12);
    white-space: nowrap;
}

.cx-platforms-float-icon {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.cx-platforms-float-zoom { background: #2D8CFF; }
.cx-platforms-float-teams { background: #6264A7; }
.cx-platforms-float-meet { background: #00897B; }
.cx-platforms-float-leetcode { background: #FFA116; }

.cx-platforms-float-a {
    top: 6%;
    right: 2%;
    animation: cx-platforms-badge-float 5s ease-in-out infinite;
}

.cx-platforms-float-b {
    bottom: 18%;
    left: 0;
    animation: cx-platforms-badge-float 6s ease-in-out infinite 0.5s;
}

.cx-platforms-float-c {
    bottom: 4%;
    right: 8%;
    animation: cx-platforms-badge-float 5.5s ease-in-out infinite 1s;
}

.cx-platforms-spark {
    position: absolute;
    font-size: 1.1rem;
    line-height: 1;
    animation: cx-platforms-spark 3s ease-in-out infinite;
}

.cx-platforms-spark-a { top: 14%; left: 8%; color: #ff6f61; }
.cx-platforms-spark-b { top: 42%; right: 4%; color: #4a90e2; animation-delay: 0.6s; }
.cx-platforms-spark-c { bottom: 28%; left: 18%; color: #fbbf24; animation-delay: 1.1s; }

.cx-platforms-jumper {
    position: absolute;
    width: 2.2rem;
    height: 3.8rem;
    border-radius: 1rem 1rem 0.35rem 0.35rem;
    opacity: 0.85;
    animation: cx-platforms-jump 3.2s ease-in-out infinite;
}

.cx-platforms-jumper::before {
    content: "";
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: inherit;
}

.cx-platforms-jumper-a {
    top: 8%;
    left: 22%;
    background: #fbbf24;
    animation-delay: 0.2s;
}

.cx-platforms-jumper-b {
    top: 22%;
    right: 16%;
    background: #22c55e;
    animation-delay: 0.9s;
}

.cx-platforms-jumper-c {
    bottom: 10%;
    left: 30%;
    background: #a78bfa;
    animation-delay: 1.4s;
}

/* Sections — uniform vertical rhythm */
.cx-section {
    max-width: var(--cx-container-max);
    margin: 0 auto;
    padding: var(--cx-section-space-y) max(var(--cx-container-pad), 1.25rem);
    background: #ffffff;
}
.cx-section .cx-subtitle-label {
    display: block;
    text-align: left;
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
}

.cx-section-title {
    text-align: left;
    font-size: clamp(2rem, 3.8vw, 3.15rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 0.75rem;
}

.cx-section-sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.cx-services-head {
    margin-bottom: 1.75rem;
    padding-left: 0;
    padding-right: 0;
}

.cx-services-head .cx-section-title {
    margin-bottom: 0;
}

/* Features — horizontal scroll cards */
.cx-services-scroll {
    margin-left: 0;
    margin-right: 0;
    padding: 0.25rem 0 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scroll-padding-inline: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    min-height: 22rem;
}

.cx-services-scroll.is-auto-advancing,
.cx-services-scroll.is-normalizing {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.cx-services-scroll.is-auto-advancing {
    scroll-behavior: smooth;
}

.cx-services-scroll.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.cx-services-scroll::-webkit-scrollbar {
    display: none;
}

.cx-services-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding-bottom: 0.25rem;
    padding-right: 1.5rem;
}

.cx-service-card {
    position: relative;
    flex: 0 0 min(22.5rem, calc(100vw - (var(--cx-container-pad) * 2) - 2.5rem));
    min-height: 20rem;
    padding: 2.5rem;
    border-radius: var(--cx-radius);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease;
}

.cx-service-card:hover {
    transform: translateY(-4px);
}

.cx-service-card-blue {
    background: rgba(var(--cx-primary-rgb), 0.2);
}

.cx-service-card-coral {
    background: rgba(var(--cx-secondary-rgb), 0.2);
}

.cx-service-card-purple {
    background: rgba(var(--cx-tertiary-rgb), 0.2);
}

.cx-service-card--clone {
    pointer-events: none;
    user-select: none;
    opacity: 1;
    transform: none;
}

.cx-service-icon {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.cx-service-icon svg {
    width: 2.25rem;
    height: 2.25rem;
}

.cx-service-card-blue .cx-service-icon {
    background: var(--cx-primary);
}

.cx-service-card-coral .cx-service-icon {
    background: var(--cx-secondary);
}

.cx-service-card-purple .cx-service-icon {
    background: var(--cx-tertiary);
}

.cx-service-title {
    margin: 0 0 0.85rem;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--cx-text);
}

.cx-service-desc {
    margin: 0;
    flex: 1;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--cx-muted);
}

.cx-service-plus {
    margin-top: 1.75rem;
    align-self: flex-start;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid var(--cx-text);
    background: transparent;
    color: var(--cx-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.cx-service-plus:hover {
    background: var(--cx-text);
    color: #fff;
}

.cx-services-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    padding-bottom: 0.5rem;
}

.cx-services-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(var(--cx-primary-rgb), 0.2);
    cursor: pointer;
    transition: transform 0.25s, background 0.25s;
}

.cx-services-dot.is-active {
    background: var(--cx-primary);
    transform: scale(1.15);
}

.cx-services-dot:hover {
    background: rgba(var(--cx-primary-rgb), 0.55);
}

/* Why Choose Us — Seoly 3-column section */
.cx-why-section .cx-subtitle-label,
.cx-why-section .cx-why-title,
.cx-why-section .cx-why-col-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.cx-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.cx-why-title {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--cx-text);
    margin: 0 0 1.75rem;
    max-width: 16rem;
}

.cx-why-cta-wrap {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 100%;
}

.cx-why-arrow {
    width: min(9rem, 42%);
    height: auto;
    color: var(--cx-text);
    opacity: 0.75;
    margin-top: -0.35rem;
    flex-shrink: 0;
    animation: cx-why-arrow-drift 3.5s ease-in-out infinite;
}

.cx-why-col-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cx-text);
    margin: 0 0 1.35rem;
}

.cx-why-list {
    list-style: none;
    counter-reset: cx-why;
    margin: 0;
    padding: 0;
}

.cx-why-list li {
    position: relative;
    margin: 0 0 1.35rem;
    padding-left: 3.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--cx-muted);
}

.cx-why-list li:last-child {
    margin-bottom: 0;
}

.cx-why-list li::before {
    counter-increment: cx-why;
    content: counter(cx-why);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    line-height: 2.5rem;
    text-align: center;
    color: #fff;
}

.cx-why-list-blue li::before {
    background: var(--cx-primary);
}

.cx-why-list-coral li::before {
    background: var(--cx-secondary);
}

@keyframes cx-why-arrow-drift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

.cx-section:not(#features):not(.cx-why-section):not(.cx-testimonials-section):not(.cx-pricing-section):not(.cx-faq-section) .cx-subtitle-label,
.cx-section:not(#features):not(.cx-why-section):not(.cx-testimonials-section):not(.cx-pricing-section):not(.cx-faq-section) .cx-section-title,
.cx-section:not(#features):not(.cx-why-section):not(.cx-testimonials-section):not(.cx-pricing-section):not(.cx-faq-section) .cx-section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cx-section:not(#features) .cx-section-sub {
    margin-bottom: 3rem;
}

.cx-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.cx-card {
    background: var(--cx-bg-card);
    border: 1px solid var(--cx-border);
    border-radius: var(--cx-radius);
    padding: 1.85rem;
    box-shadow: 0 12px 30px rgba(0, 19, 87, 0.05);
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.cx-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--cx-primary-rgb), 0.25);
    box-shadow: var(--cx-shadow-lg);
}
.cx-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--cx-primary-rgb), 0.15), rgba(var(--cx-secondary-rgb), 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.cx-card h3 { margin: 0 0 0.5rem; font-size: 1.2rem; color: var(--cx-text); }
.cx-card p { margin: 0; color: var(--cx-muted); font-size: 0.95rem; }

/* Testimonials — Seoly carousel card */
.cx-testimonials-section .cx-section-title {
    text-align: left;
    margin-left: 0;
    margin-bottom: 1.75rem;
}

.cx-testimonials-section .cx-subtitle-label {
    text-align: left;
    margin-left: 0;
}

.cx-testimonial-box {
    border-radius: var(--cx-radius-lg);
    background: rgba(var(--cx-tertiary-rgb), 0.12);
    padding: clamp(2rem, 4vw, 3rem);
    overflow: hidden;
}

.cx-testimonial-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.cx-testimonial-slider {
    position: relative;
    min-height: 12rem;
}

.cx-testimonial-slide {
    display: none;
    animation: cx-testimonial-fade 0.45s ease;
}

.cx-testimonial-slide.is-active {
    display: block;
}

.cx-testimonial-quote-icon {
    display: block;
    font-size: 2.75rem;
    line-height: 1;
    color: var(--cx-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.cx-testimonial-text {
    margin: 0 0 1.25rem;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--cx-text);
    font-style: normal;
}

.cx-testimonial-author {
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    color: var(--cx-muted);
}

.cx-testimonial-ratings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.25rem, 3vw, 2rem);
}

.cx-testimonial-rating-block {
    text-align: center;
    min-width: 8.5rem;
}

.cx-testimonial-rating-title {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cx-text);
}

.cx-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 0.35rem;
    color: #f5b301;
    font-size: 1.1rem;
    line-height: 1;
}

.cx-testimonial-rating-meta {
    margin: 0;
    font-size: 0.88rem;
    color: var(--cx-muted);
}

.cx-testimonial-rating-meta strong {
    color: var(--cx-text);
    font-weight: 700;
}

.cx-testimonial-google {
    display: inline-block;
    margin-top: 0.65rem;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    font-family: Arial, sans-serif;
}

.cx-g-blue { color: #4285F4; }
.cx-g-red { color: #EA4335; }
.cx-g-yellow { color: #FBBC05; }
.cx-g-green { color: #34A853; }

.cx-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.cx-testimonial-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(var(--cx-primary-rgb), 0.22);
    cursor: pointer;
    transition: transform 0.25s, background 0.25s;
}

.cx-testimonial-dot.is-active {
    background: var(--cx-primary);
    transform: scale(1.15);
}

@keyframes cx-testimonial-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

/* Pricing — Seoly colored plan cards */
.cx-pricing-head {
    max-width: 42rem;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.cx-pricing-head .cx-subtitle-label,
.cx-pricing-head .cx-section-title,
.cx-pricing-head .cx-section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cx-pricing-head .cx-section-title {
    margin-bottom: 0.75rem;
}

.cx-pricing-head .cx-section-sub {
    margin-bottom: 0;
    max-width: 36rem;
}

.cx-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: var(--cx-container-max);
    margin: 0 auto;
    align-items: stretch;
}

.cx-price-card {
    border-radius: var(--cx-radius);
    padding: 2rem 1.75rem 1.85rem;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cx-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(53, 64, 78, 0.18);
}

.cx-price-card-blue {
    background: var(--cx-primary);
}

.cx-price-card-coral {
    background: var(--cx-secondary);
}

.cx-price-card-purple {
    background: var(--cx-tertiary);
}

.cx-price-card h3 {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.cx-price-icon {
    width: 5.5rem;
    height: 5.5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cx-price-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    fill: none;
}

.cx-price-amount {
    font-size: clamp(2.25rem, 4vw, 2.85rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 0.85rem;
    color: #fff;
}

.cx-price-amount span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.cx-price-desc {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    min-height: 3.1rem;
}

.cx-price-btn {
    width: 100%;
    padding: 0.9rem 1.25rem;
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.cx-price-btn:hover {
    background: rgba(255, 255, 255, 0.26);
    transform: translateY(-1px);
}

.cx-price-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    text-align: left;
}

.cx-price-features li {
    position: relative;
    padding: 0.42rem 0 0.42rem 1.65rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.cx-price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.42rem;
    font-weight: 700;
    color: #fff;
}

.cx-pricing-status {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0;
    color: var(--cx-muted);
}

/* FAQ — Seoly two-column accordion */
.cx-faq-section {
    background: #ffffff;
}

.cx-faq-box {
    background: rgba(var(--cx-primary-rgb), 0.08);
    border-radius: var(--cx-radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
}

.cx-faq-head {
    margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.cx-faq-head-copy {
    text-align: left;
}

.cx-faq-title {
    margin: 0;
    font-size: clamp(2rem, 3.8vw, 3.15rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--cx-text);
}

.cx-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 clamp(2rem, 4vw, 3.5rem);
}

.cx-faq-col {
    min-width: 0;
}

.cx-faq-item {
    border: none;
    border-bottom: 1px solid rgba(53, 64, 78, 0.12);
    border-radius: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
}

.cx-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.45;
    color: var(--cx-text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 0;
    position: relative;
}

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

.cx-faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.15rem;
    border-right: 2px solid var(--cx-primary);
    border-bottom: 2px solid var(--cx-primary);
    transform: rotate(45deg);
    transition: transform 0.7s ease;
}

.cx-faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 0.35rem;
}

.cx-faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.7s ease;
}

.cx-faq-item[open] .cx-faq-body {
    grid-template-rows: 1fr;
}

.cx-faq-body-inner {
    overflow: hidden;
    min-height: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.cx-faq-item[open] .cx-faq-body-inner {
    opacity: 1;
}

.cx-faq-item p {
    margin: 0 0 1.15rem;
    padding-right: 1.5rem;
    color: var(--cx-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer — Seoly four-column layout */
.cx-footer {
    margin-top: 0;
    padding: var(--cx-section-gap) max(var(--cx-container-pad), 1.25rem) 0;
    background: var(--cx-grad-peach-sky);
    color: var(--cx-text);
    border-top: none;
}

.cx-footer-inner {
    max-width: var(--cx-container-max);
    margin: 0 auto;
    padding: 0 var(--cx-container-pad);
}

.cx-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 3.5vw, 3rem);
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.cx-footer-about {
    margin: 1.25rem 0 1.5rem;
    max-width: 22rem;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--cx-muted);
}

.cx-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.cx-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cx-text);
    transition: color 0.25s ease;
}

.cx-footer-social a:hover {
    color: var(--cx-primary);
}

.cx-footer-heading {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cx-text);
}

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

.cx-footer-list a,
.cx-footer-contact-item p a {
    color: var(--cx-muted);
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.cx-footer-list a:hover,
.cx-footer-contact-item p a:hover {
    color: var(--cx-primary);
}

.cx-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.cx-footer-contact-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.cx-footer-contact-icon {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.15rem;
    color: var(--cx-primary);
}

.cx-footer-contact-item strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cx-text);
}

.cx-footer-contact-item p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--cx-muted);
}

.cx-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0 1.75rem;
    border-top: 1px solid rgba(53, 64, 78, 0.12);
}

.cx-footer-copy {
    margin: 0;
    font-size: 0.88rem;
    color: var(--cx-muted);
}

.cx-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cx-footer-legal a {
    font-size: 0.88rem;
    color: var(--cx-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.cx-footer-legal a:hover {
    color: var(--cx-primary);
}

/* Modals */
.cx-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 16, 16, 0.55);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.cx-modal-overlay.active { display: flex; }
.cx-modal {
    background: #fff;
    border: 1px solid var(--cx-border);
    border-radius: var(--cx-radius-lg);
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--cx-shadow-lg);
}
.cx-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--cx-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.cx-modal h2 { margin: 0 0 0.25rem; font-size: 1.5rem; }
.cx-modal .cx-modal-sub { color: var(--cx-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.cx-modal-video {
    max-width: min(920px, 96vw);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.cx-modal-video .cx-modal-sub {
    margin-bottom: 1rem;
}

.cx-video-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--cx-radius) - 2px);
    overflow: hidden;
    background: #0f172a;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cx-video-embed,
.cx-video-player {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
    background: #000;
}

.cx-form-group { margin-bottom: 1rem; }
.cx-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--cx-text);
}
.cx-form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--cx-border-strong);
    background: #fff;
    color: var(--cx-text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cx-form-group input:focus {
    outline: none;
    border-color: var(--cx-primary);
    box-shadow: 0 0 0 3px rgba(var(--cx-primary-rgb), 0.2);
}
.cx-alert {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: none;
}
.cx-alert.error { display: block; background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.cx-alert.success { display: block; background: #ecfdf5; border: 1px solid #a7f3d0; color: #047857; }

.cx-page-notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 350;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 280px;
    max-width: min(420px, calc(100vw - 2rem));
    padding: 0.8rem 0.9rem;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: var(--cx-shadow-lg);
    transform: translateX(calc(100% + 1.5rem));
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
    pointer-events: none;
}
.cx-page-notification.is-visible { transform: translateX(0); opacity: 1; pointer-events: auto; }
.cx-page-notification[hidden] { display: none !important; }
.cx-page-notification.error { background: #ef4444; color: #fff; }
.cx-page-notification.success { background: var(--cx-primary); color: #fff; }
.cx-page-notification-icon {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 800;
}
.cx-page-notification-text { flex: 1; text-align: left; }
.cx-page-notification-close {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
}
.cx-page-notification-close:hover { background: rgba(255, 255, 255, 0.15); }

.cx-form-footer { text-align: center; margin-top: 1rem; font-size: 0.9rem; color: var(--cx-muted); }
.cx-form-footer a { cursor: pointer; font-weight: 600; color: var(--cx-primary); }
.cx-btn-block { width: 100%; margin-top: 0.5rem; }
.cx-btn:disabled { opacity: 0.6; cursor: not-allowed; }

#userMenu.cx-user-menu { display: none; align-items: center; gap: 0.75rem; }
#userMenu.cx-user-menu.visible { display: flex; }
.cx-user-email { font-size: 0.85rem; color: var(--cx-muted); max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.cx-dashboard { max-width: 900px; margin: 4rem auto; padding: 0 1.5rem; }
.cx-dashboard-card {
    background: #fff;
    border: 1px solid var(--cx-border);
    border-radius: var(--cx-radius);
    padding: 2rem;
    box-shadow: var(--cx-shadow);
}

body.crackix-body > main,
.crackix-body .cx-landing-main { position: relative; z-index: 1; }

/* Seoly-style scroll animations */
.cx-wow {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.cx-wow.cx-wow-in { opacity: 1; transform: none; }
.cx-wow-delay-1 { transition-delay: 0.1s; }
.cx-wow-delay-2 { transition-delay: 0.2s; }
.cx-wow-delay-3 { transition-delay: 0.3s; }
.cx-wow-delay-4 { transition-delay: 0.4s; }

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

@keyframes cx-fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

@keyframes cx-stat-pop {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}

@keyframes cx-hero-drift-a {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 35px) scale(1.12); }
}

@keyframes cx-hero-drift-b {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -30px) scale(1.08); }
}

@keyframes cx-hero-drift-c {
    0% { transform: translate(0, 0) scale(0.95); }
    100% { transform: translate(-25px, 20px) scale(1.1); }
}

@keyframes cx-hero-grid-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes cx-hero-shine {
    0%, 100% { transform: translateX(-20%) rotate(12deg); opacity: 0; }
    45% { opacity: 0.7; }
    55% { transform: translateX(120%) rotate(12deg); opacity: 0; }
}

@keyframes cx-hero-visual-glow {
    from { transform: scale(0.95); opacity: 0.75; }
    to { transform: scale(1.05); opacity: 1; }
}

@keyframes cx-hero-visual-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes cx-hero-float-a {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes cx-hero-float-b {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-8px) translateX(6px); }
}

@keyframes cx-hero-float-c {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes cx-hero-pill-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes cx-hero-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes cx-hero-wave {
    0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
    50% { transform: scaleY(1); opacity: 0.9; }
}

@keyframes cx-hero-typing {
    0%, 100% { transform: translateY(0); opacity: 0.35; }
    50% { transform: translateY(-3px); opacity: 1; }
}

@keyframes cx-platforms-glow {
    from { transform: scale(0.94); opacity: 0.7; }
    to { transform: scale(1.06); opacity: 1; }
}

@keyframes cx-platforms-window-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes cx-platforms-badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes cx-platforms-jump {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-14px); }
    60% { transform: translateY(-8px); }
}

@keyframes cx-platforms-spark {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.55; }
    50% { transform: scale(1.2) rotate(18deg); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .cx-hero-visual-glow,
    .cx-hero-visual-orbit,
    .cx-hero-card-video,
    .cx-hero-card-ai,
    .cx-hero-card-code,
    .cx-hero-pill,
    .cx-hero-live-dot,
    .cx-hero-wave span,
    .cx-hero-typing span,
    .cx-platforms-visual-glow,
    .cx-platforms-window,
    .cx-platforms-person,
    .cx-platforms-float,
    .cx-platforms-spark,
    .cx-platforms-jumper,
    .cx-platforms-live-dot {
        animation: none;
    }

    .cx-why-arrow {
        animation: none;
    }
}

@media (max-width: 992px) {
    .cx-header-col-nav { display: none; }
    .cx-header-bento { display: inline-flex; }
    .cx-header-float { padding-left: 0.75rem; padding-right: 0.75rem; }
    .cx-header-shell { max-width: 100%; }
    #guestMenu .cx-btn-ghost { display: none; }

    .cx-hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 5.5rem;
    }

    .cx-hero-visual {
        justify-self: center;
        margin-right: 0;
        max-width: 28rem;
        min-height: 20rem;
    }

    .cx-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 24rem;
    }

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

    .cx-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --cx-section-gap: 1.75rem;
        --cx-marquee-pull: 1.25rem;
        --cx-marquee-ribbon-gap: 0.35rem;
    }

    .cx-nav { display: none; }
    .cx-header-inner { flex-wrap: wrap; }
    #userMenu.cx-user-menu.visible { flex-wrap: wrap; justify-content: flex-end; }
    #userMenu.cx-user-menu.visible .cx-btn-ghost { display: none; }

    .cx-stats-band .cx-stats {
        flex-direction: column;
        align-items: center;
        gap: 2.25rem;
    }

    .cx-marquee-bar-blue {
        margin-top: calc(var(--cx-marquee-pull) * -1);
    }

    .cx-marquee-bar-coral {
        margin-top: var(--cx-marquee-ribbon-gap);
    }

    .cx-platform-promo-card {
        grid-template-columns: 1fr;
        padding: 1.75rem 1.35rem 2rem;
    }

    .cx-platform-promo-visual {
        padding-right: 0;
        min-height: auto;
    }

    .cx-platform-promo-brand {
        right: 0.25rem;
        bottom: 0;
        height: 30px;
        max-height: 30px;
        width: auto;
    }

    .cx-platform-promo-video-thumb {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 18rem;
        margin: 0.75rem auto 0;
    }

    .cx-platform-promo-row-b,
    .cx-platform-promo-row-c {
        margin-left: 0.75rem;
    }

    .cx-marquee-phrase,
    .cx-marquee-sep {
        font-size: clamp(1.65rem, 6vw, 2.5rem);
        margin-left: 0.65rem;
        margin-right: 0.65rem;
    }

    .cx-marquee-bar {
        padding: 1.1rem 0;
    }

    .cx-platforms-inner {
        grid-template-columns: 1fr;
    }

    .cx-platforms-title {
        max-width: none;
    }

    .cx-platform-list {
        grid-template-columns: 1fr;
    }

    .cx-platforms-art {
        min-height: 16rem;
        margin-top: 0.5rem;
    }

    .cx-services-head {
        margin-bottom: 1.25rem;
    }

    .cx-service-card {
        flex-basis: min(20rem, calc(100vw - (var(--cx-container-pad) * 2) - 2rem));
        min-height: 18rem;
        padding: 2rem;
    }

    .cx-why-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .cx-why-title {
        max-width: none;
    }

    .cx-why-arrow {
        display: none;
    }

    .cx-testimonial-inner {
        grid-template-columns: 1fr;
    }

    .cx-testimonial-ratings {
        justify-content: flex-start;
    }

    .cx-faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .cx-footer-brand {
        grid-column: auto;
    }

    .cx-footer-about {
        max-width: none;
    }

    .cx-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Landing page — all titles 10% smaller */
body:has(.cx-landing-main) .cx-hero h1 {
    font-size: clamp(2.115rem, 4.5vw, 3.375rem);
}

body:has(.cx-landing-main) .cx-platform-promo-title {
    font-size: clamp(1.665rem, 3.24vw, 2.565rem);
}

body:has(.cx-landing-main) .cx-stat strong {
    font-size: clamp(2.565rem, 5.22vw, 4.05rem);
}

body:has(.cx-landing-main) {
    --cx-marquee-pull: 1.3125rem;
    --cx-marquee-ribbon-gap: 0.375rem;
}

body:has(.cx-landing-main) .cx-marquee-bar {
    padding: 1.125rem 0;
}

body:has(.cx-landing-main) .cx-marquee-phrase,
body:has(.cx-landing-main) .cx-marquee-sep {
    font-size: clamp(1.5rem, 2.85vw, 2.8125rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

body:has(.cx-landing-main) .cx-platforms-title {
    font-size: clamp(1.665rem, 3.06vw, 2.385rem);
}

body:has(.cx-landing-main) .cx-section-title,
body:has(.cx-landing-main) .cx-faq-title {
    font-size: clamp(1.8rem, 3.42vw, 2.835rem);
}

body:has(.cx-landing-main) .cx-why-title {
    font-size: clamp(1.665rem, 2.88vw, 2.25rem);
}

body:has(.cx-landing-main) .cx-subtitle-label {
    font-size: 0.9rem;
}

body:has(.cx-landing-main) .cx-section .cx-subtitle-label {
    font-size: 0.945rem;
}

body:has(.cx-landing-main) .cx-service-title,
body:has(.cx-landing-main) .cx-testimonial-rating-title,
body:has(.cx-landing-main) .cx-price-card h3 {
    font-size: 1.215rem;
}

body:has(.cx-landing-main) .cx-why-col-title {
    font-size: 1.08rem;
}

body:has(.cx-landing-main) .cx-footer-heading {
    font-size: 0.945rem;
}

body:has(.cx-landing-main) .cx-faq-item summary {
    font-size: 0.918rem;
}

body:has(.cx-landing-main) .cx-modal h2 {
    font-size: 1.35rem;
}

@media (max-width: 768px) {
    body:has(.cx-landing-main) {
        --cx-marquee-pull: 0.9375rem;
        --cx-marquee-ribbon-gap: 0.2625rem;
    }

    body:has(.cx-landing-main) .cx-marquee-bar {
        padding: 0.825rem 0;
    }

    body:has(.cx-landing-main) .cx-marquee-phrase,
    body:has(.cx-landing-main) .cx-marquee-sep {
        font-size: clamp(1.2375rem, 4.5vw, 1.875rem);
        margin-left: 0.4875rem;
        margin-right: 0.4875rem;
    }
}

/* Landing page — use more width on large screens (less empty side space) */
@media (min-width: 1280px) {
    body:has(.cx-landing-main) {
        --cx-container-max: min(1560px, 94vw);
        --cx-container-pad: clamp(1.25rem, 1.6vw, 2rem);
    }

    body:has(.cx-landing-main) .cx-stats-band-inner {
        max-width: var(--cx-container-max);
    }

    body:has(.cx-landing-main) .cx-hero h1 {
        max-width: min(46rem, 100%);
    }

    body:has(.cx-landing-main) .cx-hero .cx-subtitle {
        max-width: 40rem;
    }

    body:has(.cx-landing-main) .cx-hero-visual {
        max-width: 38rem;
    }

    body:has(.cx-landing-main) .cx-platforms-title {
        max-width: 26rem;
    }

    body:has(.cx-landing-main) .cx-platform-promo-copy {
        max-width: 38rem;
    }

    body:has(.cx-landing-main) .cx-footer-about {
        max-width: 26rem;
    }

    body:has(.cx-landing-main) .cx-section-sub {
        max-width: 36rem;
    }

    body:has(.cx-landing-main) .cx-why-title {
        max-width: 20rem;
    }
}

@media (min-width: 1600px) {
    body:has(.cx-landing-main) {
        --cx-container-max: min(1720px, 92vw);
        --cx-container-pad: clamp(1.5rem, 1.4vw, 2.25rem);
    }

    body:has(.cx-landing-main) .cx-hero {
        gap: clamp(2.5rem, 3.5vw, 5rem);
    }

    body:has(.cx-landing-main) .cx-hero h1 {
        max-width: min(50rem, 100%);
    }

    body:has(.cx-landing-main) .cx-hero .cx-subtitle {
        max-width: 44rem;
    }

    body:has(.cx-landing-main) .cx-hero-visual {
        max-width: 42rem;
    }

    body:has(.cx-landing-main) .cx-platforms-inner {
        gap: clamp(2.5rem, 3.5vw, 4.5rem);
    }

    body:has(.cx-landing-main) .cx-platforms-title {
        max-width: 30rem;
    }

    body:has(.cx-landing-main) .cx-platforms-lead {
        max-width: 38rem;
    }

    body:has(.cx-landing-main) .cx-service-card {
        flex-basis: min(24rem, calc(100vw - (var(--cx-container-pad) * 2) - 2.5rem));
    }

    body:has(.cx-landing-main) .cx-pricing-head {
        max-width: 48rem;
    }

    body:has(.cx-landing-main) .cx-pricing-head .cx-section-sub {
        max-width: 40rem;
    }

    body:has(.cx-landing-main) .cx-footer-about {
        max-width: 30rem;
    }

    body:has(.cx-landing-main) .cx-section-sub {
        max-width: 40rem;
    }

    body:has(.cx-landing-main) .cx-why-title {
        max-width: 24rem;
    }
}

@media (min-width: 1920px) {
    body:has(.cx-landing-main) {
        --cx-container-max: min(1840px, 90vw);
    }
}
