/* ==========================================================================
   G LANDING PRO — PREMIUM STYLESHEET v3.0
   Fixes: glass-card naming, tablet breakpoints, reduced-motion, scroll margins
   ========================================================================== */

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
    /* Colors */
    --c-bg:           #03050a;
    --c-bg-2:         #060c18;
    --c-bg-glass:     rgba(10, 15, 28, 0.55);
    --c-text:         #f0f4f8;
    --c-muted:        #8b99af;

    --c-accent:       #00f0ff;
    --c-accent-dark:  #0051ff;
    --c-success:      #00ffd1;
    --c-danger:       #ff2a5f;
    --c-warning:      #ffb830;

    --c-border:           rgba(255, 255, 255, 0.07);
    --c-border-highlight: rgba(0, 240, 255, 0.3);

    /* Typography */
    --f-head: 'Space Grotesk', 'Segoe UI', Arial, sans-serif;
    --f-body: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;

    /* Layout */
    --w-container: 1200px;
    --w-inner:      800px;
    --r-sm:  8px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;
    --s-sec: 7rem 1.5rem;

    /* Transitions */
    --ease-expo: 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-ui:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--f-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Accessibility: reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ── Ambient Background ──────────────────────────────────────────────────── */
.ambient-glow {
    position: fixed;
    width: 65vw; height: 65vw;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.14;
    z-index: -3;
    pointer-events: none;
}
.glow-primary   { top: -20%; left: -20%;   background: var(--c-accent-dark); }
.glow-secondary { bottom: -20%; right: -15%; background: var(--c-accent); opacity: 0.08; }

.particles-layer {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--c-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.35;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 25%, black 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 25%, black 100%);
}

/* ── Utilities ───────────────────────────────────────────────────────────── */
.container {
    max-width: var(--w-container);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 0 1.5rem;
}
.inner-container { max-width: var(--w-inner); margin: 0 auto; }
.text-center { text-align: center; }
.text-muted   { color: var(--c-muted); }

h1, h2, h3, h4, .btn, .badge-premium, .pre-title { font-family: var(--f-head); }

.gradient-text {
    background: linear-gradient(130deg, var(--c-accent) 0%, #a8d8ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.gradient-text-alt {
    background: linear-gradient(130deg, #a8ff78, #78ffd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section { padding: var(--s-sec); }

/* scroll-margin-top: fix header overlap on anchor jump */
section[id] { scroll-margin-top: 90px; }

.glass-panel {
    background: var(--c-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
}

.box-glow-hover {
    transition: box-shadow var(--ease-ui), border-color var(--ease-ui);
}
.box-glow-hover:hover {
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.12);
    border-color: var(--c-border-highlight);
}

.pre-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ── Animations ──────────────────────────────────────────────────────────── */
.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity var(--ease-expo),
        transform var(--ease-expo);
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: var(--f-head);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--ease-ui);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--c-text);
    color: var(--c-bg);
}
.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(240, 244, 248, 0.22);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--c-border);
    color: var(--c-text);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.25);
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.88rem; }

.btn-huge {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--c-accent-dark), var(--c-accent));
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.35);
}
.btn-huge:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.6);
}

.btn-icon { transition: transform var(--ease-ui); }
.btn:hover .btn-icon { transform: translateY(3px); }

.btn-shine {
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    animation: shine 4s ease-in-out infinite 3s;
}
@keyframes shine {
    0%   { left: -100%; }
    20%  { left: 200%; }
    100% { left: 200%; }
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1.4rem 1.5rem;
    z-index: 100;
    transition: padding var(--ease-ui), background var(--ease-ui), border-color var(--ease-ui);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    padding: 0.9rem 1.5rem;
    background: rgba(3, 5, 10, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--c-border);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-link { display: flex; }
.logo-image {
    height: 36px;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.35));
}
.header-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
    color: var(--c-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color var(--ease-ui);
}
.nav-link:hover { color: var(--c-text); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 7rem 1.5rem 5rem;
}
.hero-container { max-width: 860px; margin: 0 auto; }

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--c-border);
    padding: 0.45rem 1rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--c-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--c-accent);
    animation: blinkDot 2s ease-in-out infinite;
}
@keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--c-muted);
    max-width: 660px;
    margin: 0 auto 2.8rem;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-proof-micro {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.82rem;
    color: var(--c-muted);
}
.avatars { display: flex; align-items: center; }
.avatar {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid var(--c-bg);
    margin-left: -9px;
    background: var(--c-muted);
}
.avatar:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, var(--c-accent-dark), var(--c-accent)); }
.av-2 { background: linear-gradient(135deg, #7c3aed, #c026d3); }
.av-3 { background: linear-gradient(135deg, var(--c-danger), #ff6b9d); }

/* ── Identification ──────────────────────────────────────────────────────── */
.identification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.id-content .section-desc { margin-bottom: 2rem; }

.question-list { display: flex; flex-direction: column; gap: 0; }
.q-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.97rem;
}
.q-item:last-child { border-bottom: none; }
.q-icon { font-size: 1.2rem; min-width: 26px; margin-top: 1px; }

/* comparative card */
.comparative-card { padding: 1.75rem; }
.card-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 1rem;
}
.comp-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    margin-bottom: 0.75rem;
    background: rgba(255,255,255,0.02);
}
.comp-row.good {
    border-color: rgba(0, 255, 209, 0.25);
    background: rgba(0, 255, 209, 0.04);
}
.status-indicator {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.status-indicator.red   { background: var(--c-danger);  box-shadow: 0 0 8px var(--c-danger); }
.status-indicator.green { background: var(--c-success); box-shadow: 0 0 8px var(--c-success); }
.comp-label { flex: 1; font-size: 0.88rem; font-weight: 500; }
.comp-value { font-family: var(--f-head); font-weight: 700; }
.comp-row.bad  .comp-value { color: var(--c-danger); }
.comp-row.good .comp-value { color: var(--c-success); }

.abstract-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
    margin-top: 1.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--c-border);
}
.bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--c-border); }
.bar-1 { height: 30%; }
.bar-2 { height: 48%; }
.bar-3 { height: 38%; }
.highlight-bar {
    height: 100%;
    background: linear-gradient(to top, var(--c-accent-dark), var(--c-accent));
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
}
.chart-note {
    font-size: 0.72rem;
    color: var(--c-muted);
    margin-top: 0.5rem;
    text-align: right;
}

/* ── Pain ────────────────────────────────────────────────────────────────── */
.alert-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.25rem 2.5rem;
    border-color: rgba(255, 42, 95, 0.25);
    background: rgba(255, 42, 95, 0.04);
}
.alert-icon { font-size: 2rem; flex-shrink: 0; }
.alert-text {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ── Revelation ──────────────────────────────────────────────────────────── */
.revelation {
    background: linear-gradient(to right, transparent, rgba(0,240,255,0.03), transparent);
    border-top: 1px solid rgba(0,240,255,0.08);
    border-bottom: 1px solid rgba(0,240,255,0.08);
}
.revelation-text {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-family: var(--f-head);
    font-weight: 700;
    margin-top: 1rem;
}

/* ── Solution ────────────────────────────────────────────────────────────── */
.solution-showcase {
    margin-top: 3.5rem;
    display: flex;
    align-items: stretch;
    background: var(--c-bg-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.showcase-content {
    flex: 1;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.showcase-content h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.showcase-content > p {
    color: var(--c-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}
.feature-minimal-list { list-style: none; }
.feature-minimal-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--c-border);
    font-weight: 500;
    font-size: 0.97rem;
}
.feature-minimal-list li:last-child { border-bottom: none; }
.check { color: var(--c-success); font-weight: 700; flex-shrink: 0; }

.showcase-visual {
    flex: 0 0 360px;
    background: linear-gradient(145deg, rgba(255,255,255,0.02), transparent);
    border-left: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}
.wireframe-animation {
    width: 240px; height: 320px;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    background: rgba(3, 5, 10, 0.6);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: perspective(800px) rotateY(-12deg);
    transition: transform 0.5s ease;
}
.solution-showcase:hover .wireframe-animation {
    transform: perspective(800px) rotateY(0deg);
}
.w-head { height: 18px; background: rgba(255,255,255,0.06); border-radius: 4px; }
.w-hero { height: 100px; background: rgba(255,255,255,0.02); border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.w-lines { display: flex; flex-direction: column; gap: 6px; }
.w-line { height: 9px; background: rgba(255,255,255,0.06); border-radius: 4px; }
.w-line.short { width: 60%; }
.w-cta {
    margin-top: auto;
    height: 36px;
    background: linear-gradient(90deg, var(--c-accent-dark), var(--c-accent));
    border-radius: 20px;
    width: 65%;
    align-self: center;
}
.pulse-glow { animation: pulseCta 2.5s ease-in-out infinite; }
@keyframes pulseCta {
    0%   { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.5); }
    70%  { box-shadow: 0 0 0 12px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

/* ── Desire ──────────────────────────────────────────────────────────────── */
.desire-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.desire-step {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    background: var(--c-bg-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color var(--ease-ui), transform var(--ease-ui);
}
.desire-step:hover {
    border-color: var(--c-border-highlight);
    transform: translateY(-4px);
}
.ds-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.desire-step p { font-size: 0.93rem; color: var(--c-muted); }
.desire-step p strong { color: var(--c-text); }
.desire-arrow {
    font-size: 1.5rem;
    color: var(--c-muted);
    flex-shrink: 0;
}

/* ── Benefits (Bento) ────────────────────────────────────────────────────── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.bento-item {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform var(--ease-ui), border-color var(--ease-ui);
}
.bento-item:hover {
    transform: translateY(-4px);
    border-color: var(--c-border-highlight);
}
.bento-item.span-2 { grid-column: span 2; }
.bento-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}
.bento-item h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.bento-item p  { color: var(--c-muted); font-size: 0.92rem; line-height: 1.55; }
.accent-panel {
    background: linear-gradient(135deg, rgba(0,81,255,0.08), rgba(0,240,255,0.04));
    border-color: rgba(0, 240, 255, 0.18);
}

/* ── Proof (Testimonials) ────────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--ease-ui), border-color var(--ease-ui);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-border-highlight);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px; right: 16px;
    font-size: 7rem;
    font-family: serif;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
}
.stars { color: var(--c-warning); margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    color: var(--c-muted);
}
.client-info { display: flex; align-items: center; gap: 0.85rem; }
.client-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
}
.av-blue   { background: linear-gradient(135deg, var(--c-accent-dark), var(--c-accent)); }
.av-teal   { background: linear-gradient(135deg, #00b4d8, var(--c-success)); }
.av-purple { background: linear-gradient(135deg, #7c3aed, #c026d3); }
.client-name { font-weight: 600; font-size: 0.92rem; }
.client-role { font-size: 0.78rem; color: var(--c-muted); }

/* ── Objections ──────────────────────────────────────────────────────────── */
.objections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.obj-title {
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--c-border);
}
.obj-block { padding: 2.5rem; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 1.35rem; }
.check-list li { display: flex; align-items: flex-start; gap: 1rem; }
.check-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.check-list strong { display: block; font-size: 0.97rem; }
.check-list p  { font-size: 0.85rem; color: var(--c-muted); margin-top: 0.2rem; }

.filter-block { display: flex; flex-direction: column; gap: 1rem; }
.filter-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
}
.filter-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.filter-yes { border-color: rgba(0, 255, 209, 0.2); background: rgba(0, 255, 209, 0.04); }
.filter-no  { border-color: rgba(255, 42, 95, 0.2);  background: rgba(255, 42, 95, 0.04); }
.filter-card strong { display: block; font-size: 0.97rem; }
.filter-card p { font-size: 0.84rem; color: var(--c-muted); margin-top: 0.25rem; }

/* ── CTA Final ───────────────────────────────────────────────────────────── */
.cta-master {
    padding: 5rem 2.5rem 4rem;
    position: relative;
    overflow: hidden; /* clips pulsing-circle overflow */
    border-color: rgba(0, 240, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pulsing-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    /* Use % so it never exceeds the container width */
    width: min(700px, 200%);
    height: min(700px, 200%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,240,255,0.08), transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 255, 209, 0.06);
    border: 1px solid rgba(0, 255, 209, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-success);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.urgency-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--c-success);
    box-shadow: 0 0 10px var(--c-success);
    animation: blinkDot 1.5s ease-in-out infinite;
}
.cta-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}
.cta-subtitle {
    font-size: 1.15rem;
    color: var(--c-muted);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}
.cta-subtitle strong { color: var(--c-text); }
.security-note {
    font-size: 0.82rem;
    color: var(--c-muted);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--c-border);
    padding: 2.5rem 1.5rem;
    background: #010204;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo { height: 22px; filter: grayscale(1) opacity(0.45); margin-bottom: 0.4rem; }
.copyright { font-size: 0.78rem; color: var(--c-muted); }
.parent-brand { font-size: 0.78rem; color: var(--c-muted); letter-spacing: 0.3px; }
.parent-brand strong { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

/* Tablet large (900–1100px) */
@media (max-width: 1100px) {
    .bento-grid          { grid-template-columns: 1fr 1fr; }
    .bento-item.span-2   { grid-column: span 2; }
    .testimonials-grid   { grid-template-columns: 1fr 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; }
}

/* Tablet (600–900px) */
@media (max-width: 900px) {
    :root { --s-sec: 5rem 1.5rem; }

    .identification-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .solution-showcase   { flex-direction: column; }
    .showcase-visual     { flex: unset; border-left: none; border-top: 1px solid var(--c-border); min-height: 280px; }
    .objections-grid     { grid-template-columns: 1fr; }
    .footer-content      { flex-direction: column; gap: 1rem; text-align: center; }
    .hidden-mobile       { display: none; }
}

/* Mobile (<600px) */
@media (max-width: 600px) {
    /* Prevent ANY element from creating horizontal overflow */
    body { overflow-x: hidden; }
    .container { padding: 0 1.25rem; }

    .hero { padding: 6rem 1.25rem 4rem; min-height: 90svh; }
    .hero-title  { letter-spacing: -1px; font-size: clamp(2.2rem, 10vw, 3rem); }
    .hero-subtitle { font-size: 1rem; }

    .bento-grid  { grid-template-columns: 1fr; }
    .bento-item.span-2 { grid-column: span 1; }
    .bento-item { padding: 1.75rem; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }

    .desire-steps { flex-direction: column; align-items: center; }
    .desire-step  { max-width: 100%; width: 100%; }
    .desire-arrow { transform: rotate(90deg); font-size: 1.2rem; }

    .alert-block  { flex-direction: column; text-align: center; gap: 1rem; padding: 1.75rem 1.25rem; }

    .cta-master   { padding: 3.5rem 1.25rem 3rem; }
    .cta-headline { font-size: clamp(1.7rem, 7vw, 2.2rem); }
    .btn-huge     { padding: 1.1rem 1.75rem; font-size: 1rem; width: 100%; justify-content: center; }

    .wireframe-animation { width: 200px; height: 260px; }
    .obj-block    { padding: 1.75rem 1.25rem; }
    .comparative-card { padding: 1.25rem; }
    .section-title { letter-spacing: -0.5px; }
}
