/* GeoQuest — Promotional Website */

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

/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
    --bg:          #0d0d0d;
    --bg2:         #111111;
    --card:        #161616;
    --card-hover:  #1c1c1c;
    --border:      #252525;
    --border-hover:#f97316;
    --accent:      #f97316;
    --accent-dark: #ea6b0a;
    --gold:        #f59e0b;
    --glow:        rgba(249,115,22,0.18);
    --text:        #f0f0f0;
    --muted:       #888;
    --muted2:      #555;
    --radius:      14px;
    --radius-lg:   22px;
    --shadow:      0 4px 32px rgba(0,0,0,0.5);
    --font-head:   'Outfit', sans-serif;
    --font-body:   'Inter', sans-serif;
    --max:         1180px;
    --nav-h:       70px;
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; font-weight: 700; }

.eyebrow {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: .75rem;
}

/* ─── Layout helpers ─────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}
.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: .75rem;
    line-height: 1.75;
}

/* ─── Scroll animations ──────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 100px;
    font-size: .95rem;
    font-weight: 600;
    transition: all .22s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 0 0 var(--glow);
}
.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 0 28px var(--glow);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .3s, backdrop-filter .3s, border-color .3s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(16px);
    border-color: var(--border);
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text);
}
.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-login-btn {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: .35rem .85rem !important;
    color: var(--muted) !important;
    transition: border-color .2s, color .2s !important;
}
.nav-login-btn:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

.nav-cta { margin-left: 1rem; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    transition: color .2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 1.5rem;
    color: var(--muted);
    background: none;
    border: none;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-h);
}

/* Atmospheric glow orbs */
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::before {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
    top: -10%; left: -5%;
    filter: blur(50px);
    animation: driftA 12s ease-in-out infinite alternate;
}
.hero::after {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
    bottom: 5%; right: -5%;
    filter: blur(70px);
    animation: driftB 15s ease-in-out infinite alternate;
}

@keyframes driftA { from { transform: translate(0,0); } to { transform: translate(40px,30px); } }
@keyframes driftB { from { transform: translate(0,0); } to { transform: translate(-30px,-40px); } }

/* Grid lines background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero-content h1 {
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #fff 40%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 2.25rem;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badges {
    margin-top: 3.5rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--muted);
}
.hero-badge span:first-child {
    font-size: 1.1rem;
    color: var(--accent);
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: var(--muted2);
    font-size: .75rem;
    animation: bounce 2s ease-in-out infinite;
}
.scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--muted2), transparent);
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-6px); } }

/* ─── Features strip ─────────────────────────────────────────────────────── */
.features-strip {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}
.features-strip .container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.feat-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--muted);
}
.feat-item .icon { font-size: 1.3rem; }

/* ─── About section ──────────────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 1.75rem; }
.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(245,158,11,.1));
}
.about-placeholder {
    font-size: 5rem;
    position: relative;
    z-index: 1;
    opacity: .4;
}

/* ─── Game modes ─────────────────────────────────────────────────────────── */
.modes-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.modes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.mode-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.mode-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.mode-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(249,115,22,.1);
}

.mode-card.tidsjakt { --gradient: linear-gradient(90deg, #f97316, #f59e0b); }
.mode-card.rebusloep { --gradient: linear-gradient(90deg, #6366f1, #8b5cf6); }

.mode-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}
.mode-card h3 {
    font-size: 1.6rem;
    font-family: var(--font-head);
    font-weight: 800;
    margin-bottom: .4rem;
}
.mode-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .2rem .65rem;
    border-radius: 100px;
    margin-bottom: 1.1rem;
}
.tidsjakt .mode-tag { background: rgba(249,115,22,.15); color: #f97316; }
.rebusloep .mode-tag { background: rgba(99,102,241,.15); color: #818cf8; }

.mode-card p { color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; font-size: .95rem; }

.mode-features { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.mode-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    color: var(--muted);
}
.mode-features li::before {
    content: '→';
    color: var(--accent);
    flex-shrink: 0;
    font-weight: 700;
    margin-top: .05rem;
}

/* ─── Task types ─────────────────────────────────────────────────────────── */
.tasks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.task-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: border-color .25s, transform .25s;
}
.task-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.task-icon { font-size: 2rem; display: block; margin-bottom: .6rem; }
.task-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; font-family: var(--font-head); }
.task-card p  { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* ─── How it works ───────────────────────────────────────────────────────── */
.howto-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    z-index: 0;
}
.step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    font-family: var(--font-head);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px var(--glow);
}
.step h4 { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; font-family: var(--font-head); }
.step p  { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* ─── Audience ───────────────────────────────────────────────────────────── */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.audience-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    transition: border-color .25s, transform .25s;
}
.audience-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.audience-icon { font-size: 2.2rem; flex-shrink: 0; }
.audience-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; font-family: var(--font-head); }
.audience-card p  { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ─── Why GeoQuest ───────────────────────────────────────────────────────── */
.why-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; margin-top: 1.5rem; }
.why-list li {
    display: flex;
    gap: .85rem;
    font-size: .95rem;
    line-height: 1.6;
}
.why-list .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(249,115,22,.15);
    color: var(--accent);
    font-size: .7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .15rem;
    font-weight: 800;
}
.why-quote {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
}
.why-quote blockquote {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text);
}
.why-quote cite {
    font-size: .85rem;
    color: var(--muted);
    font-style: normal;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color .25s, transform .25s;
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: .85rem; letter-spacing: .1em; }
.testimonial-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .88rem; }
.author-role { font-size: .78rem; color: var(--muted); margin-top: .1rem; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s;
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    gap: 1rem;
    text-align: left;
    background: none;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
    transition: transform .3s, border-color .3s, background .3s;
    color: var(--muted);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--accent);
    background: var(--accent);
    color: white;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── Availability ───────────────────────────────────────────────────────── */
.availability-section { padding: 1.5rem 0; }
.availability-banner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(249,115,22,0.07);
    border: 1px solid rgba(249,115,22,0.25);
    border-radius: 14px;
    padding: 1.25rem 1.75rem;
    max-width: 720px;
    margin: 0 auto;
}
.availability-icon { font-size: 1.75rem; flex-shrink: 0; }
.availability-banner strong {
    display: block;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: .25rem;
}
.availability-banner p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ─── CTA / Contact ─────────────────────────────────────────────────────── */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 60%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.cta-section h2 { margin-bottom: .75rem; }
.cta-section p { color: var(--muted); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-email {
    margin-top: 1.5rem;
    font-size: .88rem;
    color: var(--muted);
}
.cta-email a { color: var(--accent); font-weight: 600; }

/* ─── Booking form ───────────────────────────────────────────────────────── */
.booking-form {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.bf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.bf-field { display: flex; flex-direction: column; gap: .4rem; }
.bf-field.bf-full { margin-bottom: 1rem; }
.bf-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .3px;
}
.bf-req { color: var(--accent); }
.booking-form input,
.booking-form select,
.booking-form textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .75rem .9rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
}
.booking-form textarea { resize: vertical; min-height: 96px; font-family: var(--font-body); }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--glow);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--muted2); }
.booking-form input[type="date"] { color-scheme: dark; }
.bf-honey {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.bf-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    margin-top: .5rem;
}
.bf-actions .btn { min-width: 220px; }
.bf-disclaimer { font-size: .78rem; color: var(--muted); text-align: center; }
.bf-result {
    margin-top: 1rem;
    padding: .9rem 1rem;
    border-radius: 10px;
    font-size: .95rem;
    text-align: center;
}
.bf-result.ok    { background: rgba(34,197,94,0.12);  border: 1px solid rgba(34,197,94,0.4);  color: #86efac; }
.bf-result.error { background: rgba(220,38,38,0.12);  border: 1px solid rgba(220,38,38,0.4);  color: #fca5a5; }
#booking-form.submitting #bf-submit { opacity: .6; cursor: wait; }
@media (max-width: 640px) {
    .bf-row { grid-template-columns: 1fr; }
    .booking-form { padding: 1.25rem; }
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: .75rem; }
.footer-brand p { color: var(--muted); font-size: .88rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .88rem; color: var(--muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: var(--muted2); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    section { padding: 4rem 0; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .about-grid, .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-visual { aspect-ratio: 16/9; }
    .modes-grid { grid-template-columns: 1fr; }
    .tasks-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    h1 { font-size: 2.4rem; }
    .tasks-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .hero-badges { gap: 1.25rem; }
    .features-strip .container { gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
