:root {
    --bg: #09090B;
    --surface: #141416;
    --surface-up: #1C1C1F;
    --text: #F7F7F6;
    --text-mid: #B8B8B5;
    --text-dim: #858580;
    --accent: #F59E0B;
    --accent-bright: #FBBF24;
    --accent-glow: rgba(245,158,11,0.08);
    --accent-glow-strong: rgba(245,158,11,0.15);
    --border: #1F1F22;
    --border-light: #2A2A2D;
    --display: 'Sora', sans-serif;
    --body: 'DM Sans', sans-serif;
    --max-w: 1140px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent); color: var(--bg); }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
.label {
    font-family: var(--display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; position: relative; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--display);
    font-size: 0.88rem; font-weight: 600;
    transition: all 0.35s var(--ease);
}
.btn-primary {
    padding: 0.95rem 2.2rem;
    background: var(--accent);
    color: var(--bg);
    border-radius: 8px;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(245,158,11,0.25), 0 0 80px rgba(245,158,11,0.08);
}
.btn-ghost {
    color: var(--text-mid);
    font-weight: 500;
}
.btn-ghost:hover { color: var(--text); }
.btn-ghost::after {
    content: '→'; margin-left: 0.4rem;
    transition: transform 0.3s var(--ease);
    display: inline-block;
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── Reveals ── */
.r {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.r.v { opacity: 1; transform: translateY(0); }
.r-d1 { transition-delay: 0.08s; }
.r-d2 { transition-delay: 0.16s; }
.r-d3 { transition-delay: 0.24s; }
.r-d4 { transition-delay: 0.32s; }

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.4rem 0;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    padding: 0.85rem 0;
    background: rgba(9,9,11,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    font-family: var(--display); font-size: 1.3rem; font-weight: 800;
    letter-spacing: -0.04em; color: var(--text);
}
.nav-logo span { color: var(--text-dim); font-weight: 400; }
.nav-logo .logo-sub { font-weight: 400; font-size: 0.65em; color: var(--text-dim); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
    font-size: 0.82rem; font-weight: 500;
    color: var(--text-dim); transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta.btn-primary { padding: 0.6rem 1.4rem; font-size: 0.78rem; }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s var(--ease); }
.mobile-menu {
    display: none; position: fixed; inset: 0; background: var(--bg); z-index: 99;
    padding: 7rem 2rem 2rem; flex-direction: column; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--display); font-size: 1.8rem; font-weight: 700; color: var(--text-mid); }
.mobile-menu a:hover { color: var(--text); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding-top: 5rem;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -10%; left: 50%; transform: translateX(-50%);
    width: 900px; height: 700px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; }
.hero .label {
    margin-bottom: 2rem;
    opacity: 0; animation: fadeUp 0.7s 0.2s var(--ease) forwards;
}
.hero h1 {
    margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.35s var(--ease) forwards;
}
.hero h1 .accent-grad {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.1rem; color: var(--text-mid);
    max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75;
    opacity: 0; animation: fadeUp 0.7s 0.5s var(--ease) forwards;
}
.hero-buttons {
    display: flex; gap: 1.5rem; justify-content: center; align-items: center;
    flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.7s 0.65s var(--ease) forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Stats strip ── */
.stats {
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-row { display: flex; }
.stats-item { flex: 1; padding: 2rem 0; text-align: center; }
.stats-item:not(:last-child) { border-right: 1px solid var(--border); }
.stats-num {
    font-family: var(--display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.stats-text { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.3rem; }

/* ══════════════════════════════════════
   PROBLEM
   ══════════════════════════════════════ */
.problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.problem-left h2 { margin-bottom: 1.5rem; }
.problem-left p { color: var(--text-mid); font-size: 1.05rem; }
.problem-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.problem-card {
    display: flex; gap: 1.25rem; align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    transition: all 0.35s var(--ease);
}
.problem-card:hover { border-color: var(--border-light); background: var(--surface-up); }
.problem-card-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--accent);
    letter-spacing: -0.03em;
    flex-shrink: 0;
    min-width: 72px;
}
.problem-card h3 { margin-bottom: 0.3rem; }
.problem-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ══════════════════════════════════════
   AGITATION
   ══════════════════════════════════════ */
.agitation { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.agitation-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.agitation-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.agitation-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 2.5rem; line-height: 1.25; }
.agitation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}
.agitation-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem 1.2rem;
}
.agitation-icon { font-size: 1.4rem; display: block; margin-bottom: 0.6rem; }
.agitation-item p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; margin: 0; }
.agitation-close {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    font-style: italic;
}

/* ══════════════════════════════════════
   METHOD
   ══════════════════════════════════════ */
.method { border-top: 1px solid var(--border); }
.method-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 3rem; margin-bottom: 4rem;
}
.method-header h2 { max-width: 450px; }
.method-header p { color: var(--text-mid); max-width: 380px; text-align: right; font-size: 0.95rem; }
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.method-step {
    padding: 2rem;
    border: 1px solid var(--border);
    margin-left: -1px;
    position: relative;
    transition: all 0.35s var(--ease);
}
.method-step:first-child { border-radius: 10px 0 0 10px; margin-left: 0; }
.method-step:last-child { border-radius: 0 10px 10px 0; }
.method-step:hover { background: var(--surface); z-index: 1; border-color: var(--border-light); }
.method-step-num {
    font-family: var(--display); font-weight: 800;
    font-size: 2.5rem; color: var(--border-light);
    line-height: 1; margin-bottom: 1.5rem;
    transition: color 0.35s var(--ease);
}
.method-step:hover .method-step-num { color: var(--accent); }
.method-step-week {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.5rem;
}
.method-step h3 { margin-bottom: 0.6rem; }
.method-step p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

/* ══════════════════════════════════════
   RESULTS TABLE
   ══════════════════════════════════════ */
.results { border-top: 1px solid var(--border); }
.results-header { margin-bottom: 3rem; }
.results-header .label { margin-bottom: 1rem; }
.results-header h2 { max-width: 500px; }
.results-table {
    width: 100%;
    border-collapse: collapse;
}
.results-table thead th {
    font-family: var(--display);
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-dim);
    text-align: left;
    padding: 0 0 0.75rem;
    border-bottom: 1px solid var(--border-light);
}
.results-table thead th:nth-child(n+3) { text-align: right; }
.results-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
.results-table tbody tr:hover { background: var(--accent-glow); }
.results-table td {
    padding: 1.1rem 0;
    font-size: 0.92rem;
}
.results-table td:first-child {
    font-family: var(--display);
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent);
    width: 90px;
}
.results-table td:nth-child(3) {
    text-align: right; color: var(--text-dim);
    text-decoration: line-through;
    text-decoration-color: var(--text-dim);
    font-size: 0.85rem;
}
.results-table td:nth-child(4) {
    text-align: right;
    font-family: var(--display);
    font-weight: 700;
    color: var(--accent);
}
.results-table td:last-child { text-align: right; width: 70px; }
.badge {
    font-family: var(--display);
    font-size: 0.68rem; font-weight: 700;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    border: 1px solid rgba(245,158,11,0.15);
}

/* ══════════════════════════════════════
   ROI
   ══════════════════════════════════════ */
.roi {
    text-align: center;
    padding: 8rem 0;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.roi::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, var(--accent-glow-strong) 0%, transparent 65%);
    pointer-events: none;
}
.roi-big {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(4rem, 12vw, 9rem);
    letter-spacing: -0.04em;
    line-height: 1;
    position: relative;
}
.roi-big .accent-grad {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.roi-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-top: 1.5rem;
    max-width: 440px;
    margin-left: auto; margin-right: auto;
}
.roi-details {
    display: flex; justify-content: center; gap: 3rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}
.roi-detail-item { text-align: center; }
.roi-detail-num {
    font-family: var(--display); font-weight: 700;
    font-size: 1.4rem; color: var(--text);
}
.roi-detail-text { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.2rem; }
.roi-note {
    margin-top: 3rem;
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about { border-top: 1px solid var(--border); }
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}
.about-left .label { margin-bottom: 1.2rem; }
.about-left h2 { margin-bottom: 1.5rem; }
.about-left p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.98rem; }
.about-left p strong { color: var(--text); }
.about-quote {
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
}
.about-tags { display: flex; gap: 0.6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.about-tag {
    font-family: var(--display);
    font-size: 0.7rem; font-weight: 600;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    color: var(--text-mid);
}
.about-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-visual-text {
    font-family: var(--display);
    font-weight: 800;
    font-size: 5rem;
    color: var(--border-light);
    letter-spacing: -0.04em;
}
.about-visual-badge {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    background: var(--accent);
    color: var(--bg);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
}
.about-visual-badge-num {
    font-family: var(--display); font-weight: 800;
    font-size: 1.8rem; line-height: 1; letter-spacing: -0.03em;
}
.about-visual-badge-text {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    opacity: 0.7;
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq { border-top: 1px solid var(--border); }
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}
.faq-left .label { margin-bottom: 1rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.3rem 0;
    font-family: var(--display);
    font-size: 0.95rem; font-weight: 600;
    text-align: left;
    color: var(--text-mid);
    transition: color 0.3s;
}
.faq-q:hover { color: var(--text); }
.faq-chevron {
    width: 16px; height: 16px;
    stroke: var(--text-dim); fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    transition: transform 0.4s var(--ease);
    flex-shrink: 0; margin-left: 1rem;
}
.faq-item.active .faq-q { color: var(--text); }
.faq-item.active .faq-chevron { transform: rotate(180deg); stroke: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding: 0 0 1.3rem; color: var(--text-mid); font-size: 0.9rem; line-height: 1.8; }

/* ══════════════════════════════════════
   CTA + CONTACT
   ══════════════════════════════════════ */
.cta-section {
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
}
.cta-section::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse at center bottom, var(--accent-glow) 0%, transparent 65%);
    pointer-events: none;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--text-mid); max-width: 480px; margin: 0 auto 2.5rem; }

.contact { border-top: 1px solid var(--border); }
.contact-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: start;
}
.contact-left .label { margin-bottom: 1.2rem; }
.contact-left h2 { margin-bottom: 1rem; }
.contact-left p { color: var(--text-mid); margin-bottom: 2rem; }
.contact-detail {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 0.6rem;
    font-size: 0.88rem; color: var(--text-dim);
}
.contact-detail svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-group { margin-bottom: 1.15rem; }
.form-group label {
    display: block; font-family: var(--display);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 0.4rem; color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--surface);
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.3rem; }

/* ── Footer ── */
.footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.78rem; color: var(--text-dim); transition: color 0.3s; }
.footer-links a:hover { color: var(--text-mid); }
.footer-tagline { font-size: 0.78rem; color: var(--text-dim); font-style: italic; }

/* ══════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════ */
.portfolio { border-top: 1px solid var(--border); }
.portfolio-header { margin-bottom: 3rem; }
.portfolio-header .label { margin-bottom: 1rem; }
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.portfolio-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.35s var(--ease);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    color: inherit;
}
.portfolio-card:hover {
    border-color: var(--accent);
    background: var(--surface-up);
    transform: translateY(-2px);
}
.portfolio-name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.2rem;
}
.portfolio-client {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}
.portfolio-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.65;
    flex: 1;
}
.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s var(--ease);
}
.portfolio-link::after {
    content: '→';
    font-size: 0.85rem;
    transition: transform 0.3s var(--ease);
}
.portfolio-card:hover .portfolio-link { gap: 0.7rem; }
.portfolio-trust {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-dim);
}
.portfolio-trust strong { color: var(--text); font-weight: 600; }
.portfolio-footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* ══════════════════════════════════════
   PRICING
   ══════════════════════════════════════ */
.pricing { border-top: 1px solid var(--border); }
.pricing-header { margin-bottom: 3rem; text-align: center; }
.pricing-header .label { margin-bottom: 1rem; }
.pricing-header h2 { margin-bottom: 1rem; }
.pricing-header p { color: var(--text-mid); max-width: 500px; margin: 0 auto; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.pricing-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    margin-left: -1px;
    position: relative;
    transition: all 0.35s var(--ease);
}
.pricing-card:first-child { border-radius: 10px 0 0 10px; margin-left: 0; }
.pricing-card:last-child { border-radius: 0 10px 10px 0; }
.pricing-card:hover { background: var(--surface); z-index: 1; border-color: var(--border-light); }
.pricing-card.featured {
    background: var(--surface);
    border-color: var(--accent);
    z-index: 2;
}
.pricing-card-label {
    font-family: var(--display);
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.5rem;
}
.pricing-card h3 { margin-bottom: 0.8rem; }
.pricing-card-price {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
}
.pricing-card-price-note {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}
.pricing-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.pricing-card-features li {
    font-size: 0.85rem;
    color: var(--text-mid);
    padding-left: 1.4rem;
    position: relative;
}
.pricing-card-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}
.pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials { border-top: 1px solid var(--border); }
.testimonials-header { margin-bottom: 3rem; }
.testimonials-header .label { margin-bottom: 1rem; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.35s var(--ease);
}
.testimonial-card:hover { border-color: var(--border-light); background: var(--surface-up); }
.testimonial-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.1em; }
.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--border-light);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dim);
    flex-shrink: 0;
}
.testimonial-name { font-family: var(--display); font-size: 0.85rem; font-weight: 600; }
.testimonial-role { font-size: 0.75rem; color: var(--text-dim); }

/* ══════════════════════════════════════
   CASE DETAIL PAGES
   ══════════════════════════════════════ */
.case-detail-hero {
    padding: 11rem 0 5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.case-detail-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
    pointer-events: none;
}
.case-detail-hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.case-detail-hero .label { margin-bottom: 1.5rem; }
.case-detail-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 1rem;
}
.case-detail-hero h1 .accent-grad {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.case-detail-hero-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.case-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: var(--accent-glow);
    border: 1px solid rgba(245,158,11,0.25);
    font-family: var(--display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2rem;
}
.case-pill-dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 0.5rem;
    box-shadow: 0 0 0 0 var(--accent);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245,158,11,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
    100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}
.case-section { border-top: 1px solid var(--border); }
.case-section-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}
.case-section-label { color: var(--accent); }
.case-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.case-section p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
.case-section p strong { color: var(--text); }
.case-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.case-flow-step {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    transition: all 0.35s var(--ease);
}
.case-flow-step:hover { border-color: var(--border-light); background: var(--surface-up); }
.case-flow-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}
.case-flow-step h3 { margin-bottom: 0.4rem; font-size: 1rem; }
.case-flow-step p { font-size: 0.85rem; color: var(--text-mid); margin: 0; line-height: 1.6; }
.case-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--display);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.3s, gap 0.3s var(--ease);
    margin-bottom: 2rem;
}
.case-back::before { content: '←'; }
.case-back:hover { color: var(--text); gap: 0.7rem; }

/* ══════════════════════════════════════
   CASES HUB
   ══════════════════════════════════════ */
.cases-hub-hero {
    padding: 11rem 0 5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.cases-hub-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
    pointer-events: none;
}
.cases-hub-hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cases-hub-hero .label { margin-bottom: 1.5rem; }
.cases-hub-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 1.5rem;
}
.cases-hub-hero p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
}
.cases-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* ── Case showcase cards (used on hub + homepage) ── */
.case-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    color: inherit;
    cursor: pointer;
    position: relative;
}
.case-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -20px rgba(245,158,11,0.25), 0 0 0 1px var(--accent);
}
.case-frame {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1f 0%, #0d0d10 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.case-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, var(--accent-glow-strong) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(245,158,11,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.case-frame-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 2;
}
.case-frame-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--border-light);
}
.case-frame-url {
    flex: 1;
    margin-left: 0.6rem;
    padding: 0.3rem 0.8rem;
    background: rgba(0,0,0,0.5);
    border-radius: 6px;
    font-family: 'DM Sans', monospace;
    font-size: 0.72rem;
    color: var(--text-dim);
    text-align: center;
    border: 1px solid var(--border);
}
.case-frame-url-live {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #10B981;
    margin-right: 0.4rem;
    vertical-align: middle;
    animation: pulse-green 2.5s infinite;
}
@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.case-frame-canvas {
    position: absolute;
    inset: 38px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
}
.case-frame-img {
    position: absolute;
    inset: 38px 0 0 0;
    width: 100%;
    height: calc(100% - 38px);
    object-fit: cover;
    object-position: top center;
    background: #fff;
    transition: transform 0.6s var(--ease);
}
.case-card:hover .case-frame-img { transform: scale(1.03); }
.case-frame-logo {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
.case-frame-tagline {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 500;
    max-width: 80%;
    line-height: 1.4;
}
.case-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.case-meta {
    font-family: var(--display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.case-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.case-card-body p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}
.case-card-trust {
    font-size: 0.78rem;
    color: var(--text-dim);
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-bottom: 1rem;
}
.case-card-trust strong { color: var(--text); font-weight: 600; }
.case-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
    transition: gap 0.3s var(--ease);
}
.case-card-cta::after {
    content: '→';
    transition: transform 0.3s var(--ease);
}
.case-card:hover .case-card-cta { gap: 0.7rem; }
.case-card:hover .case-card-cta::after { transform: translateX(3px); }

/* ══════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════ */
.trust-strip {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(20,20,22,0.4);
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 2rem;
    font-family: var(--display);
    font-size: 0.78rem;
    color: var(--text-dim);
}
.trust-strip-label {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 0.7rem;
}
.trust-strip-item {
    color: var(--text-mid);
    transition: color 0.3s;
}
.trust-strip-item:hover { color: var(--accent); }
.trust-strip-sep {
    color: var(--border-light);
}

/* ══════════════════════════════════════
   FIT / NO-FIT
   ══════════════════════════════════════ */
.fit { border-top: 1px solid var(--border); }
.fit-header { text-align: center; margin-bottom: 3rem; }
.fit-header .label { margin-bottom: 1rem; }
.fit-header h2 { max-width: 600px; margin: 0 auto 1rem; }
.fit-header p { color: var(--text-mid); max-width: 540px; margin: 0 auto; }
.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.fit-col {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
}
.fit-col-yes { border-left: 3px solid var(--accent); }
.fit-col-no { opacity: 0.85; }
.fit-col h3 {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.fit-col-yes h3 { color: var(--accent); }
.fit-col-no h3 { color: var(--text-dim); }
.fit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.fit-list li {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.55;
    padding-left: 1.7rem;
    position: relative;
}
.fit-col-yes .fit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
}
.fit-col-no .fit-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text-dim);
    font-weight: 700;
    font-size: 0.95rem;
}
.fit-col-no .fit-list li { color: var(--text-dim); }

/* ══════════════════════════════════════
   GUARANTEE
   ══════════════════════════════════════ */
.guarantee {
    margin-top: 3rem;
    padding: 2rem;
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 12px;
    background: var(--accent-glow);
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.guarantee-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    flex-shrink: 0;
}
.guarantee-block { }
.guarantee-block-label {
    font-family: var(--display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}
.guarantee-block h4 {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text);
}
.guarantee-block p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.55;
    margin: 0;
}
.scarcity-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.88rem;
    color: var(--text-mid);
    font-style: italic;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.scarcity-note strong { color: var(--accent); font-style: normal; font-weight: 600; }

/* ── Mobile sticky ── */
.sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    padding: 1rem 1.5rem;
    background: rgba(9,9,11,0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    z-index: 90;
    transform: translateY(100%); transition: transform 0.3s var(--ease);
}
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .problem-layout { grid-template-columns: 1fr; gap: 3rem; }
    .method-grid { grid-template-columns: repeat(2, 1fr); }
    .method-step { margin-left: 0; border-radius: 0 !important; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { margin-left: 0; border-radius: 0 !important; }
    .pricing-card:first-child { border-radius: 10px 10px 0 0 !important; }
    .pricing-card:last-child { border-radius: 0 0 10px 10px !important; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .case-section-layout { grid-template-columns: 1fr; gap: 2rem; }
    .cases-hub-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .fit-grid { grid-template-columns: 1fr; }
    .guarantee { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .guarantee-icon { margin: 0 auto; }
}
@media (max-width: 768px) {
    section { padding: 5rem 0; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { min-height: auto; padding: 9rem 0 4rem; }
    .stats-row { flex-direction: column; }
    .stats-item { padding: 1.5rem 2rem; text-align: left; display: flex; align-items: center; gap: 1rem; }
    .stats-item:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
    .method-grid { grid-template-columns: 1fr; }
    .method-header { flex-direction: column; gap: 1rem; }
    .method-header p { text-align: left; }
    .table-wrap { overflow-x: auto; margin: 0 -2rem; padding: 0 2rem; }
    .results-table { min-width: 580px; }
    .roi-details { gap: 2rem; }
    .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .sticky-cta { display: block; }
    body { padding-bottom: 5rem; }
    .agitation-grid { grid-template-columns: 1fr; }
    .case-flow { grid-template-columns: 1fr; }
    .case-detail-hero, .cases-hub-hero { padding: 8rem 0 3.5rem; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn-primary { width: 100%; justify-content: center; }
}
