/* ============================================
   Daglig — daglig.app
   Design System 2026
   ============================================ */

:root {
    --bg: #000000;
    --surface: #111113;
    --surface-2: #1c1c1e;
    --surface-3: #2c2c2e;
    --surface-border: rgba(255, 255, 255, 0.06);
    --surface-border-2: rgba(255, 255, 255, 0.1);
    --text: #f5f5f7;
    --text-secondary: #86868b;
    --text-tertiary: #48484a;
    --accent: #e74c5e;
    --accent-hover: #d4354a;
    --accent-soft: rgba(231, 76, 94, 0.1);
    --accent-glow: rgba(231, 76, 94, 0.3);
    --blue: #0a84ff;
    --blue-soft: rgba(10, 132, 255, 0.08);
    --green: #30d158;
    --orange: #ff9f0a;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --max-w: 1100px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur: 0.25s;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Static ambient fallback (before orbs load) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(231,76,94,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(10,132,255,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

a { color: var(--blue); text-decoration: none; transition: color var(--dur); }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ============================================
   ANIMATED BACKGROUND ORBS
   ============================================ */
.bg-orbs {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}
.orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}
.orb-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(231,76,94,0.10) 0%, rgba(231,76,94,0.03) 40%, transparent 70%);
    top: -15%; left: -10%;
    animation: orbFloat1 22s ease-in-out infinite;
}
.orb-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(10,132,255,0.07) 0%, rgba(10,132,255,0.02) 40%, transparent 70%);
    top: 35%; right: -12%;
    animation: orbFloat2 28s ease-in-out infinite;
}
.orb-3 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(231,76,94,0.06) 0%, transparent 60%);
    bottom: 0%; left: 20%;
    animation: orbFloat3 32s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(80px,50px) scale(1.06); }
    66% { transform: translate(-40px,90px) scale(0.95); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(-60px,40px) scale(1.08); }
    66% { transform: translate(50px,-50px) scale(0.94); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(50px,-40px) scale(1.04); }
    66% { transform: translate(-70px,30px) scale(0.96); }
}

/* ============================================
   NAV
   ============================================ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(0,0,0,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--surface-border);
    height: 52px;
    transition: background var(--dur), box-shadow var(--dur);
}
nav.scrolled {
    background: rgba(0,0,0,0.88);
    box-shadow: 0 1px 20px rgba(0,0,0,0.4);
}
nav .inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo:hover { text-decoration: none; }
.nav-icon {
    width: 30px; height: 30px;
    border-radius: 7px;
    background: linear-gradient(145deg, #e74c5e, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
}
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    transition: color var(--dur), background var(--dur);
}
.nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.06);
    text-decoration: none;
}
.nav-links a.active { color: var(--text); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; padding: 4px; }

@media (max-width: 680px) {
    .nav-links {
        display: none; position: absolute; top: 52px; left: 0; right: 0;
        background: rgba(0,0,0,0.96);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        flex-direction: column; padding: 16px 24px; gap: 4px;
        border-bottom: 1px solid var(--surface-border);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 0; font-size: 1rem; }
    .nav-toggle { display: block; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur), background var(--dur);
    cursor: pointer;
    border: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,255,255,0.15); }
.btn-secondary { background: var(--surface-2); color: var(--text); border: 1px solid var(--surface-border-2); }
.btn-secondary:hover { background: var(--surface-3); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 8px 30px var(--accent-glow); }
.btn svg { width: 20px; height: 20px; }

/* ============================================
   SECTION HELPERS
   ============================================ */
.section { padding: 100px 24px; }
.section-sm { padding: 60px 24px; }
.section-label {
    font-size: 0.78rem; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 14px;
}
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 560px; line-height: 1.6; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-alt { background: var(--surface); }
.dot-grid {
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 140px 24px 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(231,76,94,0.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}
.hero-split {
    display: flex;
    align-items: center;
    gap: 56px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.hero-text { flex: 1; }
.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1.06;
    margin-bottom: 24px;
    animation: heroIn 1s var(--ease-out) both;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 36px;
    animation: heroIn 1s var(--ease-out) 0.12s both;
}
.hero-buttons {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: heroIn 1s var(--ease-out) 0.24s both;
}
.hero-phone {
    flex: 0 0 auto;
    position: relative;
    animation: heroIn 1.2s var(--ease-out) 0.3s both;
}
.hero-phone::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 360px; height: 500px;
    background: radial-gradient(ellipse, rgba(231,76,94,0.20) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}
.hero-phone .phone-mock {
    width: 300px;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* gradient-text defined in animated section below */

@media (max-width: 768px) {
    .hero { padding: 120px 24px 60px; }
    .hero-split { flex-direction: column; text-align: center; gap: 40px; }
    .hero-buttons { justify-content: center; }
    .hero-phone .phone-mock { width: 240px; height: 516px; }
}
@media (max-width: 480px) {
    .hero { padding: 110px 20px 48px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
}

/* ============================================
   TICKER / MARQUEE
   ============================================ */
.ticker {
    overflow: hidden;
    padding: 28px 0;
    position: relative;
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}
.ticker::before, .ticker::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.ticker::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.ticker-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: tickerScroll 35s linear infinite;
}
.ticker-item {
    padding: 10px 22px;
    background: var(--surface);
    border: 1px solid var(--surface-border-2);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--dur), border-color var(--dur);
}
.ticker-item:hover {
    color: var(--text);
    border-color: var(--accent);
}

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

/* ============================================
   STATS
   ============================================ */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 36px 0;
}
.stat { text-align: center; }
.stat-value { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em; }
.stat-label { font-size: 0.82rem; color: var(--text-secondary); margin-top: 2px; }

@media (max-width: 768px) {
    .stats-row { gap: 32px; }
    .stat-value { font-size: 1.4rem; }
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: transform var(--dur) var(--ease-spring), background var(--dur), border-color var(--dur), box-shadow var(--dur);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, var(--accent), var(--blue), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.card:hover {
    transform: translateY(-4px);
    background: var(--surface-2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.card:hover::before { opacity: 1; }

/* ============================================
   GRID
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================
   DIVIDERS
   ============================================ */
.divider { border: none; border-top: 1px solid var(--surface-border); margin: 0; }
.glow-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--blue) 70%, transparent 100%);
    opacity: 0.25;
    margin: 0 auto;
    max-width: 700px;
}

/* ============================================
   FEATURE DETAIL
   ============================================ */
.feature-detail {
    display: flex; align-items: center; gap: 64px; padding: 60px 0;
}
.feature-detail.reverse { flex-direction: row-reverse; }
.feature-detail .fd-content { flex: 1; }
.feature-detail .fd-content .s-label {
    font-size: 0.78rem; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px;
}
.feature-detail .fd-content h3 {
    font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px;
}
.feature-detail .fd-content p {
    font-size: 1rem; color: var(--text-secondary); line-height: 1.7;
}
.feature-detail .fd-content ul { list-style: none; margin-top: 20px; }
.feature-detail .fd-content ul li { padding: 7px 0; color: var(--text-secondary); font-size: 0.95rem; }
.feature-detail .fd-content ul li::before { content: "\2713\00a0\00a0"; color: var(--accent); font-weight: 700; }
.feature-detail .fd-visual { flex: 1; display: flex; justify-content: center; }

@media (max-width: 768px) {
    .feature-detail, .feature-detail.reverse { flex-direction: column; gap: 40px; text-align: center; }
    .feature-detail .fd-content h3 { font-size: 1.5rem; }
}

/* ============================================
   PHONE MOCKUP
   ============================================ */
.phone-mock {
    width: 280px;
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
    flex-shrink: 0;
}
.phone-mock img {
    width: 100%; height: auto;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
}
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.feature-detail.reverse .phone-mock { animation-delay: -3s; }

/* Phone glow effect */
.phone-glow { position: relative; }
.phone-glow::before {
    content: ''; position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 320px; height: 440px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.35;
    z-index: -1;
}

@media (max-width: 768px) {
    .phone-mock { width: 220px; }
    .hero-phone .phone-mock { width: 230px; }
}

/* ============================================
   TIMELINE — "Din dag med Daglig"
   ============================================ */
.timeline {
    position: relative;
    max-width: 560px;
    margin: 56px auto 0;
    padding-left: 36px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 19px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--blue), var(--accent));
    opacity: 0.3;
    border-radius: 2px;
}
.timeline-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    align-items: flex-start;
    position: relative;
}
.timeline-dot {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-left: -36px;
    box-shadow: 0 0 16px var(--accent-glow);
}
.timeline-content { padding-top: 6px; }
.timeline-time {
    font-size: 0.8rem; font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.timeline-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.timeline-content p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

@media (max-width: 480px) {
    .timeline { padding-left: 28px; }
    .timeline-dot { margin-left: -28px; width: 36px; height: 36px; font-size: 1rem; }
}

/* ============================================
   STEPS — "Slik fungerer det"
   ============================================ */
.steps {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    justify-content: center;
}
.step { text-align: center; flex: 1; max-width: 300px; }
.step-number {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 30px var(--accent-glow);
}
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

@media (max-width: 680px) {
    .steps { flex-direction: column; align-items: center; gap: 40px; }
}

/* ============================================
   TRUST / PRIVACY
   ============================================ */
.trust-section { text-align: center; }
.trust-icon { font-size: 48px; margin-bottom: 14px; }
.trust-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.trust-text { color: var(--text-secondary); font-size: 1rem; max-width: 500px; margin: 0 auto 20px; line-height: 1.6; }
.trust-link { color: var(--blue); font-weight: 500; }

/* ============================================
   CTA
   ============================================ */
.cta-section { text-align: center; border-top: 1px solid rgba(231,76,94,0.08); }
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px;
}
.cta-subtitle { color: var(--text-secondary); font-size: 1.1rem; max-width: 440px; margin: 0 auto 32px; }

/* ============================================
   FAQ
   ============================================ */
.faq-item { border-bottom: 1px solid var(--surface-border); padding: 24px 0; }
.faq-item summary {
    font-size: 1.05rem; font-weight: 600; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    transition: color var(--dur);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; font-size: 1.4rem; color: var(--text-secondary); font-weight: 300;
    transition: transform var(--dur) var(--ease-out), color var(--dur);
    flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item p { margin-top: 12px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.65; max-width: 640px; }
.faq-item p a { color: var(--blue); }

/* ============================================
   CONTACT CARD
   ============================================ */
.contact-card {
    text-align: center;
    background: var(--surface); border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    max-width: 600px; margin: 0 auto 80px; padding: 48px 32px;
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.lang-toggle { display: flex; gap: 8px; margin-bottom: 40px; }
.lang-toggle button {
    padding: 8px 24px; border-radius: 100px;
    border: 1.5px solid var(--accent); background: transparent;
    color: var(--accent); font-size: 0.9rem; font-weight: 500;
    cursor: pointer; transition: all var(--dur); font-family: inherit;
}
.lang-toggle button.active { background: var(--accent); color: #fff; }
.lang-toggle button:hover:not(.active) { background: var(--accent-soft); }

/* Privacy highlights row */
.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.privacy-highlight {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: transform var(--dur) var(--ease-spring), border-color var(--dur), box-shadow var(--dur);
}
.privacy-highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(231,76,94,0.2);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.privacy-highlight .ph-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}
.privacy-highlight .ph-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}
.privacy-highlight .ph-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
@media (max-width: 768px) {
    .privacy-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .privacy-highlights { grid-template-columns: 1fr; }
}

/* Privacy summary */
.privacy-summary {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    border-radius: var(--radius);
    padding: 28px 28px 28px 32px;
    margin-bottom: 48px;
    border-left: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
}
.privacy-summary::after {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 100px; height: 100px;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.privacy-summary p { color: var(--text); font-weight: 500; font-size: 0.95rem; line-height: 1.7; margin: 0; position: relative; z-index: 1; }

/* Privacy section blocks */
.privacy-content h2 {
    font-size: 1.15rem; font-weight: 600; margin-top: 40px; margin-bottom: 12px; color: var(--text);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--surface-border);
    display: flex; align-items: center; gap: 10px;
}
.privacy-content h2 .sec-icon {
    font-size: 1rem;
    width: 28px; height: 28px;
    background: var(--accent-soft);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.privacy-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.privacy-content ul { padding-left: 20px; margin-bottom: 16px; }
.privacy-content li {
    color: var(--text-secondary); font-size: 0.95rem; line-height: 1.65; margin-bottom: 8px;
    position: relative;
}
.privacy-content strong { color: var(--text); font-weight: 600; }
.privacy-content a { color: var(--blue); }

/* Privacy contact card */
.privacy-contact {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 48px;
    text-align: center;
}
.privacy-contact p { margin: 0; color: var(--text-secondary); font-size: 0.95rem; }
.privacy-contact strong { color: var(--text); }
.privacy-contact a { color: var(--blue); }

/* Privacy quick-nav */
.privacy-quicknav {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 48px;
}
.privacy-quicknav h3 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.privacy-quicknav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.privacy-quicknav-list a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--surface-2);
    border: 1px solid var(--surface-border-2);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--dur), border-color var(--dur), background var(--dur);
}
.privacy-quicknav-list a:hover {
    color: var(--text);
    border-color: var(--accent);
    background: var(--accent-soft);
    text-decoration: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer { border-top: 1px solid var(--surface-border); padding: 48px 24px 32px; }
footer .inner {
    max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
footer .brand p { color: var(--text-secondary); font-size: 0.88rem; margin-top: 8px; max-width: 280px; line-height: 1.5; }
footer .col h4 { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
footer .col a { display: block; color: var(--text-tertiary); text-decoration: none; font-size: 0.88rem; padding: 5px 0; transition: color var(--dur); }
footer .col a:hover { color: var(--text); text-decoration: none; }
.footer-bottom {
    max-width: var(--max-w); margin: 32px auto 0;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-tertiary); font-size: 0.78rem; }
.footer-bottom .footer-links { display: flex; gap: 20px; }
.footer-bottom .footer-links a { color: var(--text-tertiary); font-size: 0.78rem; text-decoration: none; transition: color var(--dur); }
.footer-bottom .footer-links a:hover { color: var(--text-secondary); }
@media (max-width: 680px) {
    footer .inner { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */
.page-hero { padding: 120px 24px 60px; text-align: center; }
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700; letter-spacing: -0.03em; margin-bottom: 14px;
    animation: heroIn 0.8s var(--ease-out) both;
}
.page-hero p {
    font-size: 1.15rem; color: var(--text-secondary); max-width: 520px; margin: 0 auto;
    animation: heroIn 0.8s var(--ease-out) 0.1s both;
}
@media (max-width: 680px) { .page-hero { padding: 100px 24px 40px; } }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-scale {
    opacity: 0; transform: scale(0.94);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
    opacity: 1; transform: none;
}
.stagger > :nth-child(1) { transition-delay: 0s; }
.stagger > :nth-child(2) { transition-delay: 0.08s; }
.stagger > :nth-child(3) { transition-delay: 0.16s; }
.stagger > :nth-child(4) { transition-delay: 0.24s; }
.stagger > :nth-child(5) { transition-delay: 0.32s; }
.stagger > :nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   ANIMATED GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: linear-gradient(90deg, #e74c5e, #ff6b6b, #f06, #0a84ff, #e74c5e);
    background-size: 300% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   CARD 3D TILT
   ============================================ */
.card {
    transform-style: preserve-3d;
    perspective: 800px;
}

/* Phone shine removed — looked distracting on mockup images */

/* ============================================
   STAT COUNTER
   ============================================ */
.stat-value {
    font-variant-numeric: tabular-nums;
}

/* ============================================
   BUTTON SHIMMER
   ============================================ */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.25) 50%,
        transparent 70%
    );
    animation: btnShimmer 3.5s ease-in-out infinite;
}
@keyframes btnShimmer {
    0%, 100% { left: -100%; }
    30%, 70% { left: 150%; }
}

/* ============================================
   SECTION GLOW PULSE
   ============================================ */
.section-glow {
    position: relative;
}
.section-glow::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(231,76,94,0.06) 0%, transparent 70%);
    filter: blur(60px);
    animation: sectionGlowPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}
@keyframes sectionGlowPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
    .phone-mock, .orb { animation: none; }
    .ticker-track { animation: none; }
    .hero-title, .hero-subtitle, .hero-buttons, .hero-phone,
    .page-hero h1, .page-hero p { animation: none; }
    .gradient-text { animation: none; }
    .btn-primary::after { animation: none; display: none; }
    .section-glow::before { animation: none; }
    html { scroll-behavior: auto; }
}
