/* ==========================================================================
   YRB Nova Shared Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg: #08080a;
    --bg-alt: #0e0e11;
    --surface: #16161a;
    --surface-2: #1e1e23;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.15);
    --text: #f5f5f2;
    --text-dim: #a3a0a5;
    --text-dimmer: #6d6a70;
    --accent: #4fc9ab;
    --accent-hover: #6cddc0;
    --accent-soft: rgba(79, 201, 171, 0.14);
    --accent-gradient: linear-gradient(90deg, #8b80e0 0%, #4fc9ab 100%);
    --nova: #8b80e0;
    --light-bg: #f5f4f1;
    --light-surface: #ffffff;
    --light-text: #17171a;
    --light-text-dim: #55555f;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--accent) var(--bg-alt); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 100px;
    border: 2px solid var(--bg-alt);
    background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background-color: var(--accent-hover); }
::-webkit-scrollbar-corner { background: var(--bg-alt); }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

p { margin: 0 0 16px; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.lede {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 640px;
}

.section {
    padding: 110px 0;
}

.section-tight { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-light { background: var(--light-bg); color: var(--light-text); }
.section-light .text-dim { color: var(--light-text-dim); }
.section-light .eyebrow { color: var(--accent); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =========================
   Buttons
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 10px 30px rgba(79, 201, 171, 0.35);
}

.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--line-strong);
}

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

.section-light .btn-outline { color: var(--light-text); border-color: rgba(0,0,0,0.18); }
.section-light .btn-outline:hover { border-color: var(--light-text); }

.btn-dark {
    background: var(--light-text);
    color: #fff;
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================
   Navigation
========================= */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 10, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

header.site-header nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    z-index: 1002;
    white-space: nowrap;
}

.site-logo .nav-logo-text span { color: var(--accent); }

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 480px) {
    .nav-logo-text { display: none; }
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 100px;
    background: var(--accent-gradient);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.nav-cta:hover { background: var(--accent-hover); transform: translateY(-2px); }

#menu-toggle { display: none; }
.menu-icon { display: none; }

@media (max-width: 860px) {
    header.site-header nav { padding: 16px 20px; }
    .menu-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px; height: 24px;
        cursor: pointer;
        z-index: 1002;
        flex-direction: column;
        gap: 5px;
    }
    .menu-icon span {
        display: block; width: 100%; height: 2px; background: var(--text);
        transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        background: rgba(8, 8, 10, 0.97);
        border-bottom: 1px solid var(--line);
        padding: 16px 24px 24px;
    }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 12px 0; font-size: 1rem; }
    .nav-links .nav-cta {
        margin-top: 10px;
        display: flex;
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 15px 22px;
        font-size: 0.95rem;
        box-sizing: border-box;
    }
    #menu-toggle:checked ~ .nav-links { display: flex; }
}

/* =========================
   Hero
========================= */
.hero {
    position: relative;
    height: 92vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slideshow .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease-in-out; }
.hero-slideshow .slide.active { opacity: 1; }
.hero-slideshow .slide img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    animation: heroKenBurns 12s ease-in-out infinite;
}

@keyframes heroKenBurns {
    0%   { transform: scale(1) translate(0, 0); }
    50%  { transform: scale(1.08) translate(-1%, -1%); }
    100% { transform: scale(1) translate(0, 0); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(6,6,8,0.92) 0%, rgba(6,6,8,0.55) 55%, rgba(6,6,8,0.72) 100%),
        linear-gradient(100deg, rgba(6,6,8,0.55) 10%, rgba(6,6,8,0.1) 60%);
}

.hero-content { position: relative; z-index: 2; padding-top: 40px; }
.hero-content .lede { color: #d8d8e0; }

.hero-wedge {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 64px;
    background: var(--bg-alt);
    clip-path: polygon(0 100%, 100% 35%, 100% 100%, 0 100%);
    z-index: 3;
}

@media (max-width: 768px) {
    .hero { height: auto; min-height: 0; padding: 150px 0 90px; }
    .hero-wedge { height: 36px; }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 26px;
    max-width: 880px;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero .lede { font-size: 1.2rem; margin-bottom: 40px; max-width: 600px; }

/* =========================
   Ticker band
========================= */
.ticker-band {
    position: relative;
    z-index: 4;
    background: var(--accent-gradient);
    transform: rotate(-1.1deg) scale(1.03);
    margin: -34px 0 -14px;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 14px 34px rgba(0,0,0,0.4);
}

.ticker-track {
    display: inline-flex;
    animation: tickerScroll 26s linear infinite;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    padding: 13px 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #06060a;
    white-space: nowrap;
}

.ticker-track i { font-style: normal; margin: 0 22px; color: rgba(6,6,10,0.55); font-size: 0.8em; }

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
}

@media (max-width: 640px) {
    .ticker-track span { font-size: 0.85rem; }
    .ticker-track i { margin: 0 14px; }
}

.page-hero {
    padding: 140px 0 80px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); max-width: 820px; }

.page-hero.has-media { color: #fff; }
.page-hero.has-media .lede { color: #d4d4dc; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,11,13,0.72), rgba(11,11,13,0.94) 85%);
}
.page-hero.has-media .container { position: relative; z-index: 1; }

/* =========================
   Marquee (proof strip)
========================= */
.marquee-wrap {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
    overflow: hidden;
    background: var(--bg-alt);
}

.marquee-label {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dimmer);
    margin-bottom: 20px;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-track img {
    height: 70px;
    width: 160px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    opacity: 0.85;
    transition: opacity 0.2s;
}

.marquee-track img:hover { opacity: 1; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; overflow-x: auto; }
}

/* =========================
   Grids & Cards
========================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

@media (max-width: 900px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover { transform: translateY(-6px) rotate(-0.6deg); border-color: var(--line-strong); }
.card .icon {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.card:hover .icon { transform: scale(1.15) rotate(-6deg); opacity: 1; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); margin-bottom: 0; font-size: 0.97rem; }

.section-light .card { background: var(--light-surface); border-color: rgba(0,0,0,0.08); }
.section-light .card p { color: var(--light-text-dim); }

/* =========================
   Work / Case Study Grid
========================= */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

@media (max-width: 800px) { .work-grid { grid-template-columns: 1fr; } }

.work-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    text-decoration: none;
    display: block;
    color: var(--text);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.work-card:hover { transform: translateY(-6px) rotate(-0.4deg); border-color: var(--line-strong); }

.work-card .thumb {
    aspect-ratio: 16/11;
    overflow: hidden;
    background: #000;
}

.work-card .thumb img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform 0.5s ease;
}

.work-card:hover .thumb img { transform: scale(1.05); }

.work-card .work-info { padding: 24px 26px 28px; }
.work-card .tag {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #06060a;
    background: var(--accent-gradient);
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    transform: rotate(-2deg);
    margin-bottom: 14px;
}
.work-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.work-card p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 0; }

.work-card.featured { grid-column: 1 / -1; }
.work-card.featured .thumb { aspect-ratio: 21/9; }

/* =========================
   Process
========================= */
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }

@media (max-width: 900px) { .process-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }

.process-step { padding-top: 6px; }
.process-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 14px;
    opacity: 0.55;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 0.95rem; }

/* =========================
   Animated Stats
========================= */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat-block {
    background: var(--surface);
    padding: 40px 24px;
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dimmer);
}

@media (max-width: 760px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-block { padding: 32px 18px; }
}

/* =========================
   Testimonials
========================= */
.carousel-container {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
}

.carousel { display: flex; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }

.review-card {
    min-width: 100%;
    padding: 60px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.review-card p { font-size: 1.2rem; color: var(--text); font-style: italic; margin-bottom: 22px; }
.review-card h4 { margin: 0; font-size: 0.85rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.review-card .stars { color: var(--nova); margin-bottom: 14px; font-size: 1.15rem; letter-spacing: 2px; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dots button {
    width: 8px; height: 8px; border-radius: 50%; border: none;
    background: var(--line-strong); cursor: pointer; padding: 0;
}
.carousel-dots button.active { background: var(--accent); }

@media (max-width: 768px) { .review-card { padding: 44px 24px; } }

/* =========================
   CTA Band
========================= */
.cta-band {
    background: linear-gradient(135deg, #12131a, #1c1e2c);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 70px 50px;
    text-align: center;
    margin: 0 24px;
}

.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.cta-band p { color: var(--text-dim); max-width: 560px; margin: 0 auto 32px; }

@media (max-width: 600px) { .cta-band { padding: 50px 26px; } }

/* =========================
   Blog
========================= */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.post-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.post-card .post-cover { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; transition: transform 0.5s ease; }
.post-card:hover .post-cover { transform: scale(1.04); }
.post-card .post-card-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.post-card .post-meta { display: inline-block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: #06060a; background: var(--accent-gradient); font-weight: 700; padding: 5px 12px; border-radius: 100px; transform: rotate(-2deg); margin-bottom: 14px; }
.post-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.post-card p { color: var(--text-dim); font-size: 0.93rem; margin-bottom: 0; flex-grow: 1; }
.post-card .read-more { margin-top: 20px; font-size: 0.85rem; font-weight: 600; color: var(--text); }

.article {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 110px;
}

.article .post-meta { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 18px; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 24px; }
.article-cover { width: 100%; border-radius: var(--radius); overflow: hidden; margin: 8px 0 40px; border: 1px solid var(--line); }
.article-cover img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.article h2 { font-size: 1.6rem; margin-top: 46px; margin-bottom: 16px; }
.article h3 { font-size: 1.25rem; margin-top: 34px; margin-bottom: 12px; }
.article p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 20px; }
.article ul, .article ol { color: var(--text-dim); font-size: 1.05rem; padding-left: 22px; margin-bottom: 20px; }
.article li { margin-bottom: 10px; }
.article strong { color: var(--text); }
.article blockquote {
    border-left: 3px solid var(--accent);
    margin: 32px 0;
    padding: 4px 0 4px 24px;
    font-size: 1.15rem;
    color: var(--text);
    font-style: italic;
}
.article-cta {
    margin-top: 50px;
    padding: 36px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}
.article-cta h3 { margin-bottom: 10px; }
.article-cta p { color: var(--text-dim); margin-bottom: 24px; }

/* =========================
   FAQ Accordion
========================= */
.accordion-container { max-width: 900px; margin: 0 auto; text-align: left; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header { background: var(--surface); padding: 22px 26px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.accordion-header:hover { background: var(--surface-2); }
.accordion-header h3 { margin: 0; font-size: 1.1rem; }
.accordion-icon { font-size: 1.4rem; font-weight: 700; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.accordion-toggle { display: none; }
.accordion-content { background: var(--bg-alt); padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; }
.accordion-toggle:checked + .accordion-header + .accordion-content { max-height: 300px; padding: 4px 26px 24px; }
.accordion-toggle:checked + .accordion-header .accordion-icon { transform: rotate(45deg); }
.accordion-content p { margin: 0; color: var(--text-dim); }

/* =========================
   Pricing
========================= */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .pricing-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.price-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.popular { border: 1px solid var(--accent); background: linear-gradient(160deg, #1a1c26, #17171b); position: relative; }
.price-card.popular::before {
    content: 'Most Popular';
    position: absolute; top: -13px; left: 30px;
    background: var(--accent-gradient); color: #fff; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; margin: 6px 0 6px; }
.price-card .price-note { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 26px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 30px; flex-grow: 1; }
.price-card li { padding: 10px 0; border-bottom: 1px dashed var(--line); position: relative; padding-left: 26px; font-size: 0.94rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; font-weight: 900; color: var(--accent); }
.price-card li:last-child { border-bottom: none; }
.price-card .btn { width: 100%; justify-content: center; }
.price-card-alt {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: none;
}
.price-card-alt:hover { color: var(--accent); }

/* =========================
   Footer
========================= */
footer.site-footer {
    background: #000;
    color: var(--text);
    border-top: 1px solid var(--line);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 24px 34px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.footer-brand { max-width: 320px; }

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}
.footer-logo span { color: var(--accent); }

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 10px;
    margin-bottom: 0;
}

.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dimmer); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 0.92rem; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-divider { height: 1px; background: var(--line); margin-bottom: 28px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

.footer-copy { font-size: 0.78rem; color: var(--text-dimmer); margin: 0; line-height: 1.6; }
.footer-copy a { color: var(--text-dim); text-decoration: none; }
.footer-copy a:hover { color: #fff; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 6px;
    color: var(--text-dim); transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.footer-social a:hover { color: #fff; border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width: 700px) {
    .footer-inner { padding: 48px 22px 26px; }
    .footer-top { flex-direction: column; gap: 30px; }
    .footer-cols { gap: 36px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================
   Back to Top
========================= */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    border: none;
    background: var(--accent-gradient);
    color: #fff;
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(79, 201, 171, 0.4);
    transition: background 0.2s, transform 0.2s;
}
#back-to-top:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* =========================
   Cookie Consent
========================= */
#cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 360px;
    max-width: calc(100% - 40px);
    background: var(--surface);
    border: 1px solid var(--line-strong);
    color: var(--text);
    padding: 24px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 0.9rem;
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 14px;
}

#cookie-consent-popup p { margin: 0; color: var(--text-dim); }

.cookie-buttons { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.cookie-buttons button {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-buttons button:hover { background: var(--accent-hover); }
.cookie-buttons button#deny-cookies, .cookie-buttons button#view-preferences {
    background: transparent; border: 1px solid var(--line-strong); color: var(--text);
}
.cookie-buttons a { color: var(--text-dim); text-decoration: underline; font-size: 0.82rem; }

#cookie-preferences-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    display: none; justify-content: center; align-items: center; z-index: 10000; padding: 20px;
}
#cookie-preferences-modal .modal-content {
    background: var(--surface); border: 1px solid var(--line-strong); color: var(--text);
    padding: 32px; border-radius: var(--radius); max-width: 440px; width: 100%;
}
#cookie-preferences-modal label { display: block; margin: 12px 0; text-align: left; color: var(--text-dim); font-size: 0.92rem; }
.modal-buttons { margin-top: 22px; display: flex; justify-content: flex-end; gap: 10px; }
.modal-buttons button { padding: 10px 20px; border-radius: 100px; border: none; cursor: pointer; font-weight: 600; font-size: 0.88rem; }
#save-preferences { background: var(--accent); color: #fff; }
#save-preferences:hover { background: var(--accent-hover); }
#close-modal { background: transparent; border: 1px solid var(--line-strong); color: var(--text); }

@media (max-width: 500px) {
    #cookie-consent-popup { left: 10px; right: 10px; width: auto; }
    .cookie-buttons button, .cookie-buttons a { width: 100%; text-align: center; }
}

/* =========================
   Mobile section spacing
========================= */
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section-tight { padding: 56px 0; }
    .page-hero { padding: 110px 0 56px; }
    .cta-band { margin: 0 16px; padding: 48px 24px; }
}
