/* Samla — Shared styles
 * Identisk med index.html sin <style>-blokk
 * for konsistent branding på alle web-sider
 */


        :root {
            --primary: #7D9F85;
            --primary-light: #E8F0EC;
            --primary-lighter: #F4F8F6;
            --primary-dark: #6B8B73;
            --primary-darker: #5A7A62;
            --secondary: #F0E6D8;
            --secondary-light: #FAF8F5;
            --secondary-warm: #F5EDE2;
            --accent: #D4845F;
            --accent-light: #F9EDE8;
            --accent-soft: #E8A585;
            --background: #FAFBF7;
            --surface: #FFFFFF;
            --text-primary: #2C3E32;
            --text-secondary: #5C6D5E;
            --text-muted: #9BA8A1;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--background);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ── NAV ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(250, 251, 247, 0.85);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(125, 159, 133, 0.1);
        }
        .nav-inner {
            max-width: 1200px; margin: 0 auto;
            padding: 14px 24px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .nav-logo {
            display: flex; align-items: center; gap: 10px;
            text-decoration: none; color: var(--text-primary);
        }
        .nav-logo-icon {
            width: 36px; height: 36px;
            background: var(--primary-light); border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
        }
        .nav-logo-icon svg { width: 24px; height: 24px; }
        .nav-logo-text {
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
            font-size: 1.3rem; font-weight: 700; color: var(--primary-darker);
        }
        .nav-links { display: flex; gap: 32px; align-items: center; }
        .nav-links a {
            text-decoration: none; color: var(--text-secondary);
            font-size: 0.9rem; font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--primary-darker); }
        .nav-cta {
            background: var(--primary) !important; color: white !important;
            padding: 10px 22px; border-radius: 100px;
            font-weight: 600 !important; font-size: 0.9rem !important;
            transition: background 0.2s, transform 0.15s !important;
        }
        .nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

        /* Mobile nav handled by responsive.css */

        /* ── HERO ── */
        .hero {
            padding: 140px 24px 80px;
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero::before {
            content: '';
            position: absolute; top: -200px; right: -200px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
            opacity: 0.6; z-index: 0;
        }
        .hero::after {
            content: '';
            position: absolute; bottom: -100px; left: -150px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
            opacity: 0.5; z-index: 0;
        }
        .hero > * { position: relative; z-index: 1; }
        .hero-split {
            display: flex; align-items: center; gap: 60px;
        }
        .hero-text { flex: 1; min-width: 0; }
        .hero-phone { flex-shrink: 0; }
        @media (max-width: 960px) {
            .hero-split { flex-direction: column; text-align: center; }
            .hero-text { text-align: center; order: -1; }
            .hero-phone { order: 0; margin-top: 20px; }
            .hero-sub { margin: 0 auto 32px; }
            .hero-actions { justify-content: center; }
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--primary-light); color: var(--primary-darker);
            padding: 8px 18px; border-radius: 100px;
            font-size: 0.85rem; font-weight: 600;
            margin-bottom: 28px;
            animation: fadeUp 0.8s ease both;
        }
        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            font-weight: 800; line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            animation: fadeUp 0.8s 0.1s ease both;
        }
        .hero h1 .accent { color: var(--primary); }
        .hero-sub {
            font-size: clamp(1.1rem, 2.5vw, 1.35rem);
            color: var(--text-secondary);
            max-width: 520px; margin: 0 0 40px;
            line-height: 1.7;
            animation: fadeUp 0.8s 0.2s ease both;
        }
        .hero-actions {
            display: flex; gap: 16px; flex-wrap: wrap;
            animation: fadeUp 0.8s 0.3s ease both;
        }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--text-primary); color: white;
            padding: 16px 32px; border-radius: 14px;
            text-decoration: none; font-weight: 700; font-size: 1.05rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(44, 62, 50, 0.2); }
        .btn-primary svg { width: 22px; height: 22px; }
        .btn-secondary {
            display: inline-flex; align-items: center; gap: 8px;
            background: transparent; color: var(--text-primary);
            padding: 16px 28px; border-radius: 14px;
            text-decoration: none; font-weight: 600; font-size: 1.05rem;
            border: 2px solid rgba(125, 159, 133, 0.3);
            transition: border-color 0.2s, background 0.2s;
        }
        .btn-secondary:hover { border-color: var(--primary); background: var(--primary-lighter); }

        .hero-phone {
            animation: fadeUp 0.8s 0.4s ease both;
        }
        .demo-hint {
            text-align: center; font-size: 0.85rem; font-weight: 600;
            color: var(--primary-darker); margin-bottom: 16px; opacity: 0.7;
        }
        /* ── TRUST ── */
        .trust {
            padding: 40px 24px;
            text-align: center;
        }
        .trust-items {
            display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
            color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
        }
        .trust-items span { display: flex; align-items: center; gap: 8px; }

        /* ── SECTION SHARED ── */
        section { padding: 100px 24px; }
        .section-inner { max-width: 1100px; margin: 0 auto; }
        .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--primary-darker); font-size: 0.85rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.08em;
            margin-bottom: 16px;
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800; line-height: 1.15;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        .section-desc {
            font-size: 1.1rem; color: var(--text-secondary);
            max-width: 600px; line-height: 1.7;
            margin-bottom: 48px;
        }

        /* ── DIFFERENTIATORS ── */
        .diff-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
        }
        .diff-card {
            background: var(--surface);
            border-radius: 20px; padding: 36px;
            border: 1px solid rgba(125, 159, 133, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .diff-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(44, 62, 50, 0.08);
        }
        .diff-card.featured {
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
            border-color: transparent;
        }
        .diff-icon {
            width: 52px; height: 52px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; margin-bottom: 20px;
        }
        .diff-icon.green { background: var(--primary-light); }
        .diff-icon.orange { background: var(--accent-light); }
        .diff-icon.beige { background: var(--secondary); }
        .diff-card h3 {
            font-size: 1.2rem; font-weight: 700; margin-bottom: 10px;
        }
        .diff-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.65; }

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

        /* ── DEMO PHONE ── */
        .iphone-demo{user-select:none;display:flex;justify-content:center}
        .iphone-frame{width:300px;height:640px;border-radius:44px;background:#1A1A1A;padding:11px;box-shadow:0 30px 80px rgba(0,0,0,.22),0 0 0 1px rgba(255,255,255,.08);position:relative;overflow:hidden}
        .di{position:absolute;top:7px;left:50%;transform:translateX(-50%);width:82px;height:22px;background:#000;border-radius:12px;z-index:100}
        .sb{height:40px;display:flex;align-items:flex-end;justify-content:space-between;padding:0 20px 3px;font-size:11px;font-weight:600;color:#2C3E32;z-index:50;position:relative}
        .sb-time{font-size:12px;font-weight:700}
        .sb-icons{display:flex;gap:3px;align-items:center}
        .iphone-frame *{font-family:'Plus Jakarta Sans',system-ui,sans-serif}

        /* Demo screens */
        .dscreens{height:calc(100% - 40px - 50px);overflow:hidden;position:relative;background:#FAFAF8;border-radius:0}
        .dscreen{position:absolute;inset:0;padding:10px 14px;overflow-y:auto;scrollbar-width:none;opacity:0;transform:translateY(5px);transition:opacity .25s,transform .25s;pointer-events:none}
        .dscreen::-webkit-scrollbar{display:none}
        .dscreen.active{opacity:1;transform:translateY(0);pointer-events:all}

        /* Demo tab bar */
        .dtabs{position:absolute;left:8px;right:8px;bottom:10px;height:42px;display:flex;align-items:center;justify-content:space-around;background:rgba(255,255,255,0.94);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border:1px solid rgba(44,62,50,0.06);border-radius:9999px;box-shadow:0 6px 18px rgba(44,62,50,0.12);padding:0 4px}
        .dtab{flex:1;height:34px;display:flex;flex-direction:row;align-items:center;justify-content:center;gap:4px;cursor:pointer;transition:all 0.25s ease;font-size:9px;font-weight:600;color:#A0ACAA;-webkit-tap-highlight-color:transparent;border-radius:9999px}
        .dtab span{display:none}
        .dtab.active{color:#7D9F85;background:rgba(125,159,133,0.12)}
        .dtab.active span{display:inline}
        .dtab svg{width:15px;height:15px}
        .dtab svg *{vector-effect:non-scaling-stroke}
        .dtab[data-ds="calendar"].active{color:#5B8FB9;background:rgba(91,143,185,0.12)}
        .dtab[data-ds="tasks"].active{color:#D4845F;background:rgba(212,132,95,0.12)}
        .dtab[data-ds="shopping"].active{color:#C49A3C;background:rgba(196,154,60,0.12)}
        .dtab[data-ds="chat"].active{color:#8B7CC4;background:rgba(139,124,196,0.12)}

        /* Demo inner elements */
        .hib{width:26px;height:26px;border-radius:13px;background:#fff;border:1px solid #E2DDD8;display:flex;align-items:center;justify-content:center;cursor:pointer}
        .fav{width:34px;height:34px;border-radius:17px;display:flex;align-items:center;justify-content:center;border:2px solid #E2DDD8;background:#fff;font-size:16px;position:relative}
        .fav.me{border-color:#7D9F85;background:#E8F0EC}
        .fbb{position:absolute;top:-3px;right:-3px;background:#D4845F;border-radius:6px;min-width:12px;height:12px;font-size:6px;font-weight:800;color:#fff;display:flex;align-items:center;justify-content:center;padding:0 2px}
        .fan{font-size:8px;color:#6B7A6E;font-weight:500;max-width:44px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:center}
        .fan.me{color:#7D9F85;font-weight:600}
        .ctr{flex:1;display:flex;align-items:center;justify-content:center;gap:5px;padding:8px 0;background:#fff;border-radius:8px;border:1px solid #EDEBE6}
        .ci{width:20px;height:20px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:9px}
        .cdchip{display:inline-flex;align-items:center;gap:3px;padding:4px 8px;border-radius:16px;background:rgba(212,132,95,.08);border:1px solid rgba(212,132,95,.15);font-size:9px;font-weight:600;color:#D4845F;white-space:nowrap}
        .tli{display:flex;align-items:center;gap:6px;background:#fff;border-radius:8px;padding:7px;margin-bottom:4px;position:relative;font-size:11px;box-shadow:0 1px 2px rgba(0,0,0,.03)}
        .tld{position:absolute;left:-16px;width:8px;height:8px;border-radius:4px;border:2px solid #FAFAF8}

        /* Calendar screen */
        .cwd{font-size:7px;font-weight:600;color:#A0ACAA;padding:3px 0}
        .cd2{font-size:10px;font-weight:500;color:#2C3E32;padding:5px 0;border-radius:6px;text-align:center}
        .cd2.tod{background:#7D9F85;color:#fff;font-weight:700;border-radius:50%;width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin:0 auto}
        .cd2.he{position:relative}.cd2.he::after{content:'';position:absolute;bottom:1px;left:50%;transform:translateX(-50%);width:3px;height:3px;border-radius:2px;background:#7D9F85}
        .cev{display:flex;align-items:center;gap:6px;border-radius:8px;padding:8px;margin-bottom:5px;background:#fff;border-left:3px solid #7D9F85;box-shadow:0 1px 2px rgba(0,0,0,.03);font-size:12px}
        .ctag{font-size:7px;font-weight:700;padding:2px 6px;border-radius:8px}
        .mpl{display:flex;justify-content:space-between;padding:5px 8px;background:#fff;border-radius:6px;font-size:9px;color:#6B7A6E;margin-bottom:3px}
        .mpl.act{border-left:3px solid #E8A87C;font-weight:600;color:#E8A87C}
        .mpl span{color:#2C3E32}

        /* Calendar pill tabs & week strip */
        .ptab{flex:1;text-align:center;padding:6px;border-radius:16px;font-size:9px;font-weight:600;color:#6B7A6E;cursor:pointer}
        .ptab.on{background:#7D9F85;color:#fff}
        .vmtog{font-size:8px;font-weight:600;color:#6B7A6E;padding:3px 8px;border-radius:10px;cursor:pointer}
        .vmtog.on{background:#E8F0EC;color:#7D9F85}
        .wd{font-size:11px;font-weight:500;color:#2C3E32;padding:6px 0;border-radius:8px;text-align:center}
        .wd.tod{background:#7D9F85;color:#fff;font-weight:700;border-radius:10px}
        .wd.he{position:relative}.wd.he::after{content:'';position:absolute;bottom:1px;left:50%;transform:translateX(-50%);width:3px;height:3px;border-radius:2px;background:#7D9F85}

        /* Tasks screen */
        .ttab{flex:1;text-align:center;padding:6px;border-radius:6px;font-size:10px;font-weight:600;color:#6B7A6E;cursor:pointer}
        .ttab.on{background:#7D9F85;color:#fff}
        .tsk{display:flex;align-items:center;gap:6px;padding:8px;margin-bottom:4px;background:#fff;border-radius:8px;box-shadow:0 1px 2px rgba(0,0,0,.03);transition:opacity .2s}
        .tbar{width:3px;height:20px;border-radius:2px;flex-shrink:0}
        .tchk{width:15px;height:15px;border-radius:8px;border:2px solid #E2DDD8;cursor:pointer;flex-shrink:0;display:flex;align-items:center;justify-content:center;transition:all .2s}
        .tchk.done{background:#E8F4EC;border-color:#4A8B5A}
        .tchk.done::after{content:'\2713';font-size:8px;color:#4A8B5A;font-weight:700}
        .ttxt{font-size:10px;font-weight:500;color:#2C3E32;flex:1}
        .ttxt.dne{text-decoration:line-through;color:#A0ACAA}

        /* Shopping screen */
        .scat{font-size:8px;font-weight:700;color:#6B7A6E;margin:8px 0 4px;text-transform:uppercase;letter-spacing:.3px}
        .sitm{display:flex;align-items:center;gap:6px;padding:6px 8px;margin-bottom:2px;background:#fff;border-radius:6px}
        .scir{width:13px;height:13px;border-radius:7px;border:1.5px solid #E2DDD8;cursor:pointer;flex-shrink:0;transition:all .2s}
        .scir.done{background:#E8F4EC;border-color:#4A8B5A}
        .stxt{font-size:10px;color:#2C3E32;flex:1;transition:all .2s}

        /* Chat screen */
        .cmsg{display:flex;gap:6px;margin-bottom:8px}
        .cav{width:24px;height:24px;border-radius:12px;background:#E8F0EC;display:flex;align-items:center;justify-content:center;font-size:12px;flex-shrink:0}
        .cbub{background:#fff;border-radius:8px;padding:6px 8px;flex:1;border:1px solid #EDEBE6;box-shadow:0 1px 2px rgba(0,0,0,.02)}
        .csn{font-size:8px;font-weight:700;color:#7D9F85;margin-bottom:1px}
        .ctx{font-size:10px;color:#2C3E32;line-height:1.4}
        .ctm{font-size:7px;color:#A0ACAA;text-align:right;margin-top:2px}

        /* Bordered tab buttons (tasks/shopping/chat) */
        .btab{flex:1;display:flex;align-items:center;justify-content:center;gap:3px;padding:7px;border-radius:20px;font-size:9px;font-weight:600;color:#6B7A6E;border:1.5px solid #E2DDD8;cursor:pointer;transition:all .15s;background:transparent}
        .btab.on{background:#7D9F85;color:#fff;border-color:#7D9F85}
        .btab.star.on{background:#F9A825;color:#fff;border-color:#F9A825}
        .filt{font-size:8px;font-weight:600;color:#6B7A6E;padding:4px 10px;border-radius:12px;cursor:pointer;background:transparent;border:1px solid #E2DDD8}
        .filt.on{background:#E8F0EC;color:#7D9F85;border-color:#7D9F85}

        /* ── MODULES ── */
        .modules-section { background: var(--surface); }
        .modules-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
        }
        .module-card {
            display: flex; align-items: center; gap: 14px;
            padding: 20px; border-radius: 16px;
            background: var(--background);
            border: 1px solid rgba(125, 159, 133, 0.08);
            transition: transform 0.2s, border-color 0.2s;
        }
        .module-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .module-icon {
            width: 44px; height: 44px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            color: var(--primary);
        }
        .module-card:nth-child(2) .module-icon { color: var(--accent); }
        .module-card:nth-child(3) .module-icon { color: #D4845F; }
        .module-card:nth-child(4) .module-icon { color: #8B7CC4; }
        .module-card:nth-child(5) .module-icon { color: #C45BA0; }
        .module-card:nth-child(6) .module-icon { color: var(--primary); }
        .module-card:nth-child(7) .module-icon { color: #C49A3C; }
        .module-card:nth-child(8) .module-icon { color: #8B6F47; }
        .module-card:nth-child(9) .module-icon { color: #5A8CA8; }
        .module-card:nth-child(10) .module-icon { color: #9B7A5F; }
        .module-card:nth-child(11) .module-icon { color: #5B7B9C; }
        .module-card:nth-child(12) .module-icon { color: var(--text-muted); }
        .module-name { font-size: 0.95rem; font-weight: 600; }
        .module-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

        /* ── HOW IT WORKS ── */
        .steps {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
            counter-reset: step;
        }
        .step { position: relative; }
        .step::before {
            counter-increment: step;
            content: counter(step);
            display: flex; align-items: center; justify-content: center;
            width: 48px; height: 48px;
            background: var(--primary); color: white;
            border-radius: 14px;
            font-size: 1.2rem; font-weight: 800;
            margin-bottom: 20px;
        }
        .step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
        .step p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.65; }
        @media (max-width: 768px) {
            .steps { grid-template-columns: 1fr; }
        }

        /* ── PRICING ── */
        .pricing-card {
            max-width: 480px; margin: 0 auto;
            background: var(--surface); border-radius: 24px;
            padding: 48px; text-align: center;
            border: 2px solid var(--primary);
            box-shadow: 0 20px 60px rgba(125, 159, 133, 0.15);
        }
        .pricing-badge {
            display: inline-block;
            background: var(--primary); color: white;
            padding: 6px 16px; border-radius: 100px;
            font-size: 0.8rem; font-weight: 700;
            margin-bottom: 20px;
        }
        .pricing-price {
            font-size: 3.5rem; font-weight: 800;
            line-height: 1; margin-bottom: 4px;
        }
        .pricing-price span { font-size: 1.2rem; font-weight: 500; color: var(--text-secondary); }
        .pricing-period { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
        .pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
        .pricing-features li {
            padding: 10px 0; font-size: 0.95rem;
            display: flex; align-items: center; gap: 12px;
            border-bottom: 1px solid rgba(125, 159, 133, 0.1);
        }
        .pricing-features li:last-child { border-bottom: none; }
        .check {
            width: 22px; height: 22px; border-radius: 50%;
            background: var(--primary-light); color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; font-size: 0.7rem; font-weight: 800;
        }
        .pricing-cta {
            display: block; width: 100%;
            background: var(--primary); color: white;
            padding: 16px; border-radius: 14px;
            text-decoration: none; font-weight: 700; font-size: 1.1rem;
            transition: background 0.2s, transform 0.15s;
            border: none; cursor: pointer;
        }
        .pricing-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
        .pricing-note { margin-top: 12px; font-size: 0.8rem; color: var(--text-muted); }

        /* ── FAQ ── */
        .faq-list { max-width: 700px; margin: 0 auto; }
        .faq-item {
            border-bottom: 1px solid rgba(125, 159, 133, 0.15);
        }
        .faq-q {
            width: 100%; padding: 20px 0;
            display: flex; justify-content: space-between; align-items: center;
            background: none; border: none; cursor: pointer;
            font-family: inherit; font-size: 1.05rem; font-weight: 600;
            color: var(--text-primary); text-align: left;
        }
        .faq-q::after {
            content: '+'; font-size: 1.4rem; color: var(--primary);
            transition: transform 0.3s;
        }
        .faq-q.open::after { transform: rotate(45deg); }
        .faq-a {
            max-height: 0; overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s;
        }
        .faq-a.open { max-height: 300px; padding-bottom: 20px; }
        .faq-a p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

        /* ── FOOTER ── */
        footer {
            background: var(--text-primary); color: rgba(255,255,255,0.7);
            padding: 60px 24px 40px;
        }
        .footer-inner {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
        }
        .footer-brand-text {
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
            font-size: 1.4rem; font-weight: 700; color: white;
            margin-bottom: 8px;
        }
        .footer-brand p { font-size: 0.9rem; line-height: 1.6; }
        .footer-col h4 {
            color: white; font-size: 0.85rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.08em;
            margin-bottom: 16px;
        }
        .footer-col a {
            display: block; color: rgba(255,255,255,0.6);
            text-decoration: none; font-size: 0.9rem;
            padding: 4px 0; transition: color 0.2s;
        }
        .footer-col a:hover { color: white; }
        .footer-bottom {
            max-width: 1100px; margin: 40px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 12px;
            font-size: 0.8rem;
        }
        .footer-langs { display: flex; gap: 12px; }
        .footer-langs a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8rem; }
        .footer-langs a:hover { color: white; }

        @media (max-width: 768px) {
            .footer-inner { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 480px) {
            .footer-inner { grid-template-columns: 1fr; }
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .reveal {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
    
        .lang-switch { display: flex; gap: 2px; align-items: center; background: var(--primary-light); border-radius: 8px; padding: 2px; }
        .lang-btn { background: none; border: none; border-radius: 6px; padding: 4px 8px; cursor: pointer; font-size: 0.7rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.03em; transition: all 0.2s; font-family: inherit; }
        .lang-btn.active { background: white; color: var(--primary-darker); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
        .lang-btn:hover { color: var(--primary-darker); }
    
/* ============================================
   LEGAL/INFO-SIDER (om-oss, support, vilkår etc)
   ============================================ */
main.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 130px 24px 80px;
}
main.legal-page h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-darker);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
main.legal-page .last-updated {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  margin-bottom: 32px;
}
main.legal-page h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}
main.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 22px;
  margin-bottom: 8px;
}
main.legal-page p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 0.95rem;
}
main.legal-page ul,
main.legal-page ol {
  margin: 14px 0 18px 24px;
  color: var(--text-secondary);
}
main.legal-page ul li,
main.legal-page ol li {
  margin-bottom: 8px;
  line-height: 1.65;
  font-size: 0.95rem;
}
main.legal-page a {
  color: var(--primary-darker);
  text-decoration: underline;
  text-decoration-color: rgba(125, 159, 133, 0.4);
  text-underline-offset: 3px;
}
main.legal-page a:hover {
  color: var(--accent-dark);
  text-decoration-color: var(--accent);
}
main.legal-page strong { color: var(--text-primary); font-weight: 600; }
main.legal-page hr {
  border: 0;
  border-top: 1px solid var(--border-light);
  margin: 32px 0;
}

/* Hero for om-oss og support */
main.legal-page .hero-section {
  text-align: center;
  margin-bottom: 48px;
}
main.legal-page .hero-section .icon-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 24px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
}
main.legal-page .hero-section h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}
main.legal-page .hero-section p.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ-stil for support-siden */
main.legal-page details {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
main.legal-page details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main.legal-page details summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.2s;
}
main.legal-page details[open] summary::after {
  content: '−';
}
main.legal-page details p {
  margin-top: 12px;
  margin-bottom: 0;
}

/* Section card for om-oss */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
}
.value-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-darker);
  font-size: 1.4rem;
}
.value-card h3 {
  margin-top: 0 !important;
  margin-bottom: 8px;
}
.value-card p { font-size: 0.9rem; }

/* CTA-blokk på legal-sider */
.cta-block {
  background: var(--primary-light);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  margin: 48px 0 0;
}
.cta-block h2 {
  margin-top: 0 !important;
  font-size: 1.6rem;
  color: var(--primary-darker) !important;
}
.cta-block p {
  margin-bottom: 24px;
}
.cta-block .btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.cta-block .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: white;
}

/* Forfatter-info på om-oss */
.author-box {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 32px 0;
}
.author-box .avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem; font-weight: 700;
}
.author-box .content { flex: 1; }
.author-box h3 { margin: 0 0 4px !important; font-size: 1.1rem; }
.author-box .role {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.author-box p { margin-bottom: 0; font-size: 0.9rem; }

@media (max-width: 600px) {
  main.legal-page { padding-top: 100px; }
  main.legal-page h1 { font-size: 1.8rem; }
  main.legal-page .hero-section h1 { font-size: 2rem; }
  .author-box { flex-direction: column; text-align: center; }
}

/* ============================================
   HERO PÅ LEGAL/INFO-SIDER (mindre enn forsidens)
   ============================================ */
main.legal-page .hero,
.legal-hero {
  padding: 40px 0 32px !important;
  text-align: center;
  max-width: none !important;
  background: none !important;
  overflow: visible !important;
}
main.legal-page .hero::before,
main.legal-page .hero::after,
.legal-hero::before,
.legal-hero::after {
  display: none !important;
}
main.legal-page .hero h1,
.legal-hero h1 {
  font-size: 2.6rem !important;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  color: var(--text-primary);
}
main.legal-page .hero h1 .accent,
.legal-hero h1 .accent {
  color: var(--accent);
}
main.legal-page .hero .hero-sub,
main.legal-page .hero p,
.legal-hero .hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
main.legal-page .hero-emoji,
.legal-hero .hero-emoji {
  display: inline-block;
  margin-bottom: 24px;
}

/* ============================================
   SUPPORT-SIDEN — Topics + FAQ + Contact
   ============================================ */
.topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 32px 0 48px;
}
.topic-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.topic-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125, 159, 133, 0.1);
}
.topic-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.topic-card:nth-child(2) .topic-icon { background: var(--accent-light); }
.topic-card:nth-child(3) .topic-icon { background: rgba(139, 124, 196, 0.15); }
.topic-card:nth-child(4) .topic-icon { background: rgba(196, 154, 60, 0.15); }
.topic-card:nth-child(5) .topic-icon { background: rgba(196, 91, 160, 0.15); }
.topic-card:nth-child(6) .topic-icon { background: rgba(91, 143, 185, 0.15); }
.topic-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.topic-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* FAQ-section */
.faq-section {
  margin: 48px 0;
}
.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--primary-lighter); }
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.2s;
  margin-left: 12px;
  flex-shrink: 0;
}
.faq-q.open::after {
  content: '−';
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a.open {
  max-height: 500px;
}
.faq-a p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Contact-card */
.contact-card {
  background: var(--primary-light);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  margin: 48px 0 0;
}
.contact-card h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: var(--primary-darker);
}
.contact-card p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}
.contact-card a {
  display: inline-block;
  background: var(--primary);
  color: white !important;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.contact-card a:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ============================================
   OM-OSS — Story + Values + Author
   ============================================ */
.story {
  margin: 0 0 48px;
}
.story p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.story p:first-of-type {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Values-grid */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0 48px;
}
.value {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.value-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.value:nth-child(2) .value-icon { background: var(--accent-light); }
.value:nth-child(3) .value-icon { background: rgba(196, 154, 60, 0.15); }
.value h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.value p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Author-card (om-oss bio) */
.author {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 32px 0 48px;
}
.author-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
}
.author-text { flex: 1; }
.author h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-primary);
}
.author .role {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.author p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Section-tittel for om-oss og support */
main.legal-page > section + section,
main.legal-page > div + div h2,
main.legal-page > section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 20px;
}

/* CTA-blokk på legal-sider (om-oss "Bli med i familien") */
.cta-section {
  background: var(--primary-light);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  margin: 48px 0 0;
}
.cta-section h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  color: var(--primary-darker);
}
.cta-section p {
  margin-bottom: 24px;
  color: var(--text-secondary);
}
.cta-section a.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.cta-section a.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: white;
}

@media (max-width: 600px) {
  .author { flex-direction: column; text-align: center; }
  .topic-card, .value, .contact-card { padding: 20px; }
}

/* Override om-oss hero-emoji-spam som kommer som rare ikon-symboler */
main.legal-page section h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
}
main.legal-page section .accent { color: var(--accent); }

/* Hero-tittel skal være sterk farge på legal-sider */
main.legal-page .hero h1 {
  color: var(--text-primary);
}
main.legal-page .hero h1 .accent {
  color: var(--accent);
}
main.legal-page .hero p,
main.legal-page .hero .hero-sub {
  color: var(--text-secondary);
  opacity: 1;
}

/* ============================================
   OM-OSS — Story-section (legacy klasse-navn)
   ============================================ */
.story-inner,
.values-inner {
  margin: 0 auto;
}
.story-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-darker);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.story-section h2,
.values-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}
.story-divider {
  height: 1px;
  background: var(--border-light);
  margin: 32px 0;
}
.story-highlight {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.story-highlight p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Values-grid (legacy fra om-oss) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0 48px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125, 159, 133, 0.08);
}
.value-emoji {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Founder-card */
.founder-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 32px 0 48px;
}
.founder-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.8rem;
}
.founder-text h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
}
.founder-role {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.founder-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTA-section (om-oss "Bli med i familien") */
.cta-inner {
  background: var(--primary-light);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  margin: 48px 0 0;
}
.cta-inner h2 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  color: var(--primary-darker);
}
.cta-inner p {
  margin-bottom: 28px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}
.cta-inner .cta-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.cta-inner .cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: white;
}

/* Section-tittel for legal sections — gjelder generelt */
main.legal-page section {
  margin-bottom: 48px;
}
main.legal-page section > h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

/* Hero-section labels */
.values-section .values-title { text-align: center; }

/* ─────────────────────────────────────────────────────────────────
   Inline-ikoner — erstatter emoji som UI-elementer.
   Bruk: <svg class="ico"> ... </svg> eller med size-modifier
   ───────────────────────────────────────────────────────────────── */
.ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  flex-shrink: 0;
}
.ico-sm { width: 14px; height: 14px; }
.ico-md { width: 20px; height: 20px; }
.ico-lg { width: 28px; height: 28px; }
.ico-xl { width: 40px; height: 40px; }
.ico-stroke { stroke-width: 1.5; }
.ico-thin { stroke-width: 1.25; }


/* Check-mark og flower-decoration som SVG (erstatter ✓ og ✿). */
.check-svg { width: 14px; height: 14px; vertical-align: -2px; }
.flower-svg { width: 14px; height: 14px; vertical-align: -2px; }



/* === DEMO PHONE (inline embed) === */
.demo-phone {
  --bg:#FAFBF7;--surface:#FFFFFF;--surface-pressed:#F4F8F4;
  --text:#2C3E32;--text2:#5C6D5E;--text3:#8A9B8C;--text-muted:#A0ACAA;
  --border:#E2DDD8;--border-light:#EDEBE6;--border-soft:#F0EDE7;
  --primary:#7D9F85;--primary-light:#E8F0EC;--primary-lighter:#F4F8F5;--primary-dark:#5A7A62;
  --accent:#D4845F;--accent-light:#F9EDE8;--accent-dark:#B36B47;
  --info:#5B8FB9;--info-light:#EBF3F9;
  --warning:#C49A3C;--warning-light:#FBF4E4;
  --success:#5A9B6E;--success-light:#E8F0EC;
  --request:#8B7CC4;--request-light:#F0EBF9;
  --meal:#E8A87C;--meal-light:#FDF5EF;
}
.demo-phone * {box-sizing:border-box;margin:0;padding:0;-webkit-font-smoothing:antialiased}
.demo-phone {font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;color:var(--text);display:flex;justify-content:center}
.demo-phone .demo-header {text-align:center;margin-bottom:24px}
.demo-phone .demo-header h1 {font-size:1.5rem;font-weight:800;color:var(--primary-dark);margin-bottom:4px;display:flex;align-items:center;justify-content:center;gap:8px}
.demo-phone .demo-header p {color:var(--text2);font-size:.9rem}

.demo-phone .iphone {width:320px;height:660px;border-radius:48px;background:#1A1A1A;padding:12px;position:relative;box-shadow:0 30px 80px rgba(0,0,0,.25),0 0 0 1px rgba(255,255,255,.1),inset 0 0 0 1px rgba(255,255,255,.05)}
.demo-phone .iphone-screen {width:296px;height:636px;border-radius:36px;overflow:hidden;background:linear-gradient(180deg,#F9EDE8 0%,#FAFBF7 35%,#FAFBF7 100%);position:relative}
.demo-phone .dynamic-island {position:absolute;top:8px;left:50%;transform:translateX(-50%);width:90px;height:24px;background:#000;border-radius:14px;z-index:100}
.demo-phone .status-bar {position:absolute;top:0;left:0;right:0;height:44px;display:flex;align-items:flex-end;justify-content:space-between;padding:0 24px 4px;font-size:12px;font-weight:600;color:var(--text);z-index:50}
.demo-phone .status-time {font-size:14px;font-weight:700;letter-spacing:-.3px}
.demo-phone .status-icons {display:flex;gap:5px;align-items:center}
.demo-phone .status-icons svg {width:16px;height:11px}

.demo-phone .screens {position:absolute;left:0;right:0;top:44px;bottom:84px;overflow:hidden}
.demo-phone .screen {position:absolute;inset:0;padding:0 18px;overflow-y:auto;scrollbar-width:none;opacity:0;transform:translateY(8px);transition:opacity .25s,transform .25s;pointer-events:none}
.demo-phone .screen::-webkit-scrollbar {display:none}
.demo-phone .screen.active {opacity:1;transform:translateY(0);pointer-events:all}

/* HOME */
.demo-phone .greeting {display:flex;justify-content:space-between;align-items:flex-start;padding-top:14px;margin-bottom:8px}
.demo-phone .greeting-time {font-size:11px;color:var(--text3);text-transform:uppercase;letter-spacing:1.6px;font-weight:600;display:flex;align-items:center;gap:6px;margin-bottom:2px}
.demo-phone .greeting-time .flower {color:#E8A0B5;font-size:13px}
.demo-phone .greeting-name {font-size:30px;font-weight:800;color:var(--text);letter-spacing:-1px;line-height:1.05}
.demo-phone .greeting-sub {font-size:11.5px;color:var(--text2);margin-top:6px;display:flex;align-items:center;gap:5px}
.demo-phone .greeting-icons {display:flex;gap:4px;flex-shrink:0}
.demo-phone .gicon {width:30px;height:30px;border-radius:50%;background:var(--surface);border:1px solid var(--border-light);display:flex;align-items:center;justify-content:center;box-shadow:0 1px 3px rgba(0,0,0,.04)}
.demo-phone .gicon svg {width:14px;height:14px;color:var(--text);stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}

.demo-phone .fam-row {display:flex;gap:6px;padding:12px 0 8px;align-items:flex-end;justify-content:space-between}
.demo-phone .fam-member {display:flex;flex-direction:column;align-items:center;gap:2px;position:relative;flex-shrink:0}
.demo-phone .fam-avatar {width:38px;height:38px;border-radius:19px;display:flex;align-items:center;justify-content:center;border:2px solid transparent;font-size:14px;font-weight:700;color:#FFF;position:relative}
.demo-phone .fam-avatar.me {border-color:var(--primary);box-shadow:0 0 0 2px rgba(125,159,133,.18)}
.demo-phone .fam-avatar .live {position:absolute;bottom:-1px;right:-1px;width:9px;height:9px;border-radius:50%;background:var(--success);border:2px solid var(--bg)}
.demo-phone .fam-name {font-size:10px;color:var(--text3);font-weight:500;margin-top:1px}
.demo-phone .fam-name.me {color:var(--primary);font-weight:600}
.demo-phone .fam-divider {width:1px;height:24px;background:var(--border);align-self:center;margin:0 1px;flex-shrink:0}

.demo-phone .cd-chip {display:inline-flex;align-items:center;gap:5px;padding:6px 12px;background:var(--accent-light);color:var(--accent-dark);border-radius:100px;font-size:11.5px;font-weight:600;margin:8px 0 14px}
.demo-phone .cd-chip svg {width:11px;height:11px;stroke:currentColor;stroke-width:2;fill:none}

.demo-phone .stat-grid {display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:12px}
.demo-phone .stat-card {background:linear-gradient(110deg,var(--surface) 0%,var(--surface) 50%,var(--card-tint,#FAFBF7) 100%);border:1px solid var(--border-light);border-radius:14px;padding:12px 14px 14px;min-height:90px;position:relative}
.demo-phone .stat-card[data-c="shop"] {--card-tint:#FBF4E4}
.demo-phone .stat-card[data-c="tasks"] {--card-tint:#F9EDE8}
.demo-phone .stat-card[data-c="chat"] {--card-tint:#F0EBF9}
.demo-phone .stat-card[data-c="wait"] {--card-tint:#F9EDE8}
.demo-phone .stat-icon {width:28px;height:28px;border-radius:8px;display:flex;align-items:center;justify-content:center;margin-bottom:8px}
.demo-phone .stat-icon svg {width:16px;height:16px;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
.demo-phone .stat-card[data-c="shop"] .stat-icon {background:rgba(196,154,60,.14);color:var(--warning)}
.demo-phone .stat-card[data-c="tasks"] .stat-icon {background:rgba(212,132,95,.14);color:var(--accent)}
.demo-phone .stat-card[data-c="chat"] .stat-icon {background:rgba(139,124,196,.14);color:var(--request)}
.demo-phone .stat-card[data-c="wait"] .stat-icon {background:rgba(212,132,95,.10);color:var(--accent);font-size:14px}
.demo-phone .stat-val {font-size:22px;font-weight:800;color:var(--text);line-height:1;letter-spacing:-.5px}
.demo-phone .stat-label {font-size:11.5px;color:var(--text2);font-weight:500;margin-top:3px}

.demo-phone .weekly {background:var(--surface);border:1px solid var(--border-light);border-radius:14px;padding:10px 14px 12px;margin-bottom:14px}
.demo-phone .weekly-head {display:flex;align-items:center;gap:5px;color:var(--accent);font-size:13px;font-weight:600;margin-bottom:4px}
.demo-phone .weekly-head svg {width:14px;height:14px;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
.demo-phone .weekly-text {display:flex;align-items:center;gap:5px;font-size:11.5px;color:var(--text2)}
.demo-phone .weekly-text svg {width:11px;height:11px;color:var(--accent);stroke:currentColor;stroke-width:1.6;fill:none}

.demo-phone .section-row {display:flex;justify-content:space-between;align-items:center;margin:6px 0 10px}
.demo-phone .section-title {font-size:18px;font-weight:800;color:var(--text);letter-spacing:-.3px}
.demo-phone .section-link {font-size:13px;color:var(--primary);font-weight:500}

.demo-phone .timeline {position:relative;padding-left:14px}
.demo-phone .timeline::before {content:'';position:absolute;left:4px;top:6px;bottom:6px;width:2px;background:var(--border-soft)}
.demo-phone .tl-item {display:flex;gap:10px;align-items:center;background:var(--surface);border:1px solid var(--border-light);border-radius:14px;padding:10px 12px;margin-bottom:8px;position:relative}
.demo-phone .tl-dot {position:absolute;left:-14px;top:50%;transform:translateY(-50%);width:9px;height:9px;border-radius:50%;background:var(--accent);border:2px solid var(--bg)}
.demo-phone .tl-icon {width:36px;height:36px;border-radius:18px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.demo-phone .tl-icon svg {width:18px;height:18px;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
.demo-phone .tl-text {flex:1;min-width:0}
.demo-phone .tl-title {font-size:14px;font-weight:600;color:var(--text);line-height:1.2}
.demo-phone .tl-sub {font-size:11px;color:var(--text3);margin-top:2px;line-height:1.3}
.demo-phone .tl-arrow svg {width:14px;height:14px;color:var(--text-muted);stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round}

/* TAB-BAR */
.demo-phone .tab-bar {position:absolute;left:12px;right:12px;bottom:14px;height:62px;display:flex;align-items:center;justify-content:space-between;background:rgba(255,255,255,.94);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid rgba(44,62,50,.05);border-radius:9999px;box-shadow:0 8px 24px rgba(44,62,50,.08);padding:0 8px;z-index:60}
/* Tab-bar — ikon over tekst, alltid synlig (matcher app) */
.demo-phone .tab {flex:1;height:54px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;cursor:pointer;color:var(--text-muted);position:relative;transition:color .2s;border-radius:9999px}
.demo-phone .tab svg {width:22px;height:22px;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
.demo-phone .tab .label {font-size:10px;font-weight:500;line-height:1}
.demo-phone .tab.active {color:var(--primary)}
.demo-phone .tab.active svg {stroke-width:2.2}
.demo-phone .tab.active .label {font-weight:600}
.demo-phone .tab[data-screen="calendar"].active {color:var(--info)}
.demo-phone .tab[data-screen="tasks"].active {color:var(--accent)}
.demo-phone .tab[data-screen="shopping"].active {color:var(--warning)}
.demo-phone .tab[data-screen="chat"].active {color:var(--request)}
.demo-phone .tab .badge {position:absolute;top:0;right:-2px;min-width:16px;height:16px;border-radius:8px;background:var(--accent);color:#FFF;font-size:9px;font-weight:800;display:flex;align-items:center;justify-content:center;padding:0 4px;border:1.5px solid var(--surface)}

/* CALENDAR */
.demo-phone .cal-head {padding-top:14px;display:flex;align-items:center;gap:10px;margin-bottom:14px}
.demo-phone .cal-back {width:32px;height:32px;border-radius:10px;background:var(--primary-light);color:var(--primary);display:flex;align-items:center;justify-content:center}
.demo-phone .cal-back svg {width:16px;height:16px;stroke:currentColor;stroke-width:2;fill:none}
.demo-phone .cal-title {font-size:22px;font-weight:800;color:var(--text);flex:1}
.demo-phone .cal-tabs {display:flex;gap:6px;margin-bottom:14px}
.demo-phone .cal-tab {flex:1;padding:8px 10px;font-size:11px;font-weight:600;border-radius:100px;border:1px solid var(--border-light);color:var(--text-muted);background:transparent;display:flex;align-items:center;justify-content:center;gap:5px}
.demo-phone .cal-tab svg {width:11px;height:11px;stroke:currentColor;stroke-width:1.6;fill:none}
.demo-phone .cal-tab.active {background:var(--primary-light);color:var(--primary);border-color:var(--primary-light)}
.demo-phone .cal-week-head {display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.demo-phone .cal-uke {font-size:11px;color:var(--text3);font-weight:600;letter-spacing:.5px}
.demo-phone .cal-mode {display:flex;background:var(--surface);border-radius:100px;padding:2px;border:1px solid var(--border-light)}
.demo-phone .cal-mode-btn {padding:4px 12px;font-size:10px;font-weight:600;color:var(--text-muted);border-radius:100px}
.demo-phone .cal-mode-btn.active {background:var(--primary-light);color:var(--primary)}
.demo-phone .cal-strip {display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin-bottom:14px}
.demo-phone .cal-day {padding:10px 2px 8px;text-align:center;border-radius:14px;border:1px solid transparent}
.demo-phone .cal-day.active {background:var(--primary-light);border-color:var(--primary-light)}
.demo-phone .cal-day .dow {font-size:10px;color:var(--text3);font-weight:500}
.demo-phone .cal-day .num {font-size:16px;font-weight:700;color:var(--text);margin-top:2px}
.demo-phone .cal-day.active .num {color:var(--primary)}
.demo-phone .cal-day .dot {width:3px;height:3px;border-radius:50%;background:var(--primary);margin:3px auto 0;opacity:.6}
.demo-phone .cal-day.no-event .dot {opacity:0}
.demo-phone .cal-events-head {display:flex;justify-content:space-between;align-items:center;margin:6px 0 10px}
.demo-phone .cal-events-head .day-label {font-size:18px;font-weight:800;color:var(--text)}
.demo-phone .cal-events-head .count {font-size:11px;color:var(--text-muted)}
.demo-phone .cal-filter {display:flex;gap:6px;margin-bottom:10px;overflow-x:auto;padding-bottom:2px}
.demo-phone .cal-filter::-webkit-scrollbar {display:none}
.demo-phone .cal-filter-chip {padding:5px 10px;font-size:11px;font-weight:500;border-radius:100px;border:1px solid var(--border-light);color:var(--text-muted);white-space:nowrap;flex-shrink:0;display:flex;align-items:center;gap:5px}
.demo-phone .cal-filter-chip.active {background:var(--primary-light);color:var(--primary);border-color:var(--primary-light);font-weight:600}
.demo-phone .cal-filter-chip .mini-av {width:14px;height:14px;border-radius:7px;display:flex;align-items:center;justify-content:center;font-size:8px;font-weight:700;color:#FFF}
.demo-phone .cal-event {display:flex;background:var(--surface);border:1px solid var(--border-light);border-radius:14px;padding:11px 14px;margin-bottom:8px;align-items:center;gap:11px}
.demo-phone .cal-event-icon {width:32px;height:32px;border-radius:16px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.demo-phone .cal-event-icon svg {width:16px;height:16px;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
.demo-phone .cal-event-text {flex:1;min-width:0}
.demo-phone .cal-event-title {font-size:14px;font-weight:600;color:var(--text)}
.demo-phone .cal-event-time {font-size:11px;color:var(--text3);margin-top:2px}
.demo-phone .cal-event-tag {display:inline-flex;align-items:center;gap:3px;padding:3px 8px;border-radius:100px;font-size:10px;font-weight:600;flex-shrink:0}
.demo-phone .cal-event-tag svg {width:9px;height:9px;stroke:currentColor;stroke-width:2;fill:none}
.demo-phone .cal-assignee {width:22px;height:22px;border-radius:11px;display:flex;align-items:center;justify-content:center;font-size:9px;font-weight:700;color:#FFF;flex-shrink:0}
.demo-phone .cal-fab {position:absolute;right:24px;bottom:96px;width:44px;height:44px;border-radius:50%;background:var(--primary);color:#FFF;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 16px rgba(125,159,133,.45);z-index:50}
.demo-phone .cal-fab svg {width:20px;height:20px;stroke:currentColor;stroke-width:2;fill:none}

/* TASKS */
.demo-phone .tasks-tabs {display:flex;gap:6px;margin-bottom:10px;padding-top:14px}
.demo-phone .task-tab {flex:1;padding:9px;font-size:12px;font-weight:600;border-radius:100px;background:var(--primary-light);color:var(--primary);display:flex;align-items:center;justify-content:center;gap:5px}
.demo-phone .task-tab:not(.active) {background:transparent;color:var(--text-muted);border:1px solid var(--border-light)}
.demo-phone .task-tab svg {width:13px;height:13px;stroke:currentColor;stroke-width:1.6;fill:none}
.demo-phone .task-filter {display:flex;gap:6px;margin-bottom:12px;overflow-x:auto;padding-bottom:2px}
.demo-phone .task-filter::-webkit-scrollbar {display:none}
.demo-phone .task-filter-chip {padding:5px 11px;font-size:11px;font-weight:500;border-radius:100px;border:1px solid var(--border-light);color:var(--text-muted);white-space:nowrap;flex-shrink:0}
.demo-phone .task-filter-chip.active {background:var(--primary-light);color:var(--primary);border-color:var(--primary-light);font-weight:600}
.demo-phone .task-item {display:flex;align-items:center;gap:11px;padding:13px 14px;background:var(--surface);border:1px solid var(--border-light);border-left:3px solid var(--accent);border-radius:14px;margin-bottom:7px}
.demo-phone .task-item.high {border-left-color:#E74C3C}
.demo-phone .task-item.med {border-left-color:var(--warning)}
.demo-phone .task-item.low {border-left-color:var(--primary)}
.demo-phone .task-item.done {opacity:.5}
.demo-phone .tcb {width:22px;height:22px;border:1.8px solid var(--border);border-radius:6px;flex-shrink:0}
.demo-phone .tcb.done {background:var(--success);border-color:var(--success);display:flex;align-items:center;justify-content:center}
.demo-phone .tcb.done svg {width:13px;height:13px;color:#FFF;stroke:currentColor;stroke-width:3;fill:none}
.demo-phone .task-content {flex:1;min-width:0}
.demo-phone .task-title {font-size:13.5px;font-weight:500;color:var(--text);display:flex;align-items:center;gap:6px}
.demo-phone .task-title.done {text-decoration:line-through;color:var(--text-muted)}
.demo-phone .task-mod-icon svg {width:13px;height:13px;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
.demo-phone .task-meta {display:flex;align-items:center;gap:6px;margin-top:3px;font-size:10.5px;color:var(--text3)}
.demo-phone .person-mini {width:14px;height:14px;border-radius:7px;display:flex;align-items:center;justify-content:center;font-size:7px;font-weight:700;color:#FFF}
.demo-phone .task-due {display:inline-flex;align-items:center;gap:3px;padding:2px 7px;background:var(--accent-light);color:var(--accent-dark);border-radius:100px;font-size:9.5px;font-weight:600}
.demo-phone .task-due svg {width:9px;height:9px;stroke:currentColor;stroke-width:2;fill:none}

/* SHOPPING */
.demo-phone .shop-tabs {display:flex;gap:6px;margin-bottom:10px;padding-top:14px}
.demo-phone .shop-tab {flex:1;padding:9px;font-size:12px;font-weight:600;border-radius:100px;background:var(--primary-light);color:var(--primary);display:flex;align-items:center;justify-content:center;gap:5px}
.demo-phone .shop-tab:not(.active) {background:transparent;color:var(--text-muted);border:1px solid var(--border-light)}
.demo-phone .shop-tab svg {width:13px;height:13px;stroke:currentColor;stroke-width:1.6;fill:none}
.demo-phone .shop-add {display:flex;align-items:center;gap:10px;padding:11px 14px;background:var(--surface);border:1px solid var(--border-light);border-radius:100px;margin-bottom:12px}
.demo-phone .shop-add svg {width:14px;height:14px;color:var(--primary);stroke:currentColor;stroke-width:2;fill:none}
.demo-phone .shop-add-text {font-size:13px;color:var(--text-muted);flex:1}
.demo-phone .shop-cat {display:flex;align-items:center;gap:6px;margin:14px 0 6px;font-size:10.5px;font-weight:700;letter-spacing:.5px;color:var(--text3);text-transform:uppercase}
.demo-phone .shop-cat svg {width:12px;height:12px}
.demo-phone .shop-item {display:flex;align-items:center;gap:11px;padding:11px 14px;background:var(--surface);border:1px solid var(--border-light);border-radius:14px;margin-bottom:6px}
.demo-phone .shop-circle {width:20px;height:20px;border-radius:50%;border:1.8px solid var(--border);flex-shrink:0}
.demo-phone .shop-circle.checked {background:var(--success);border-color:var(--success);display:flex;align-items:center;justify-content:center}
.demo-phone .shop-circle.checked svg {width:11px;height:11px;color:#FFF;stroke:currentColor;stroke-width:3;fill:none}
.demo-phone .shop-text {font-size:13px;color:var(--text);flex:1}
.demo-phone .shop-text.checked {text-decoration:line-through;color:var(--text-muted)}
.demo-phone .shop-meal-link {display:flex;align-items:center;gap:7px;margin-top:14px;padding:9px 14px;background:var(--success-light);border-radius:14px;font-size:11.5px;font-weight:600;color:var(--success)}
.demo-phone .shop-meal-link svg {width:13px;height:13px;stroke:currentColor;stroke-width:1.6;fill:none}

/* CHAT */
.demo-phone #screen-chat {padding-top:14px;padding-bottom:80px}
.demo-phone .chat-day-divider {text-align:center;margin:14px 0 10px}
.demo-phone .chat-day-divider span {display:inline-block;background:rgba(255,255,255,.85);padding:5px 14px;border-radius:100px;font-size:11px;color:var(--text-muted);font-weight:500;border:1px solid var(--border-light)}
.demo-phone .chat-msg {display:flex;gap:8px;margin-bottom:10px;align-items:flex-end}
.demo-phone .chat-msg.me {flex-direction:row-reverse}
.demo-phone .chat-avatar {width:28px;height:28px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:#FFF;flex-shrink:0}
.demo-phone .chat-bubble {max-width:75%;padding:9px 13px;background:var(--surface);border:1px solid var(--border-light);border-radius:16px;border-bottom-left-radius:5px}
.demo-phone .chat-msg.me .chat-bubble {background:var(--primary-light);border-color:transparent;border-bottom-left-radius:16px;border-bottom-right-radius:5px}
.demo-phone .chat-name {font-size:10px;font-weight:600;color:var(--text3);margin-bottom:2px}
.demo-phone .chat-msg.me .chat-name {color:var(--primary-dark);text-align:right}
.demo-phone .chat-text {font-size:13px;color:var(--text);line-height:1.4}
.demo-phone .chat-time {font-size:9.5px;color:var(--text-muted);margin-top:3px}
.demo-phone .chat-msg.me .chat-time {text-align:right}
.demo-phone .chat-input-bar {position:absolute;left:14px;right:14px;bottom:90px;background:rgba(255,255,255,.98);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid var(--border-light);border-radius:24px;padding:8px 10px;display:flex;align-items:center;gap:8px;box-shadow:0 -2px 12px rgba(44,62,50,.05);z-index:50}
.demo-phone .chat-input-bar svg {width:18px;height:18px;color:var(--text-muted);stroke:currentColor;stroke-width:1.6;fill:none}
.demo-phone .chat-input-text {flex:1;font-size:12.5px;color:var(--text-muted);padding:6px 10px;border-radius:18px;background:var(--bg)}
.demo-phone .chat-send {width:32px;height:32px;border-radius:16px;background:var(--primary);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.demo-phone .chat-send svg {color:#FFF}

.demo-phone .animate {animation:fadeUp .4s ease both}
.demo-phone .d1 {animation-delay:.04s}.d2{animation-delay:.08s}.d3{animation-delay:.12s}
.demo-phone .d4 {animation-delay:.16s}.d5{animation-delay:.2s}.d6{animation-delay:.24s}
.demo-phone .d7 {animation-delay:.28s}.d8{animation-delay:.32s}
@keyframes fadeUp{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}


/* TabHeader (matcher components/TabHeader.tsx) */
.demo-phone .tab-header {padding-top:14px;display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.demo-phone .th-left {display:flex;align-items:center;gap:10px;flex:1}
.demo-phone .th-home {width:36px;height:36px;border-radius:11px;background:var(--primary-light);color:var(--primary);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.demo-phone .th-home svg {width:18px;height:18px;stroke:currentColor;stroke-width:1.8;fill:none;stroke-linecap:round;stroke-linejoin:round}
.demo-phone .th-title {font-size:22px;font-weight:800;color:var(--text);letter-spacing:-.5px}
.demo-phone .th-icons {display:flex;gap:6px;flex-shrink:0}
.demo-phone .th-ic {width:32px;height:32px;border-radius:50%;background:var(--surface);border:1px solid var(--border-light);display:flex;align-items:center;justify-content:center;box-shadow:0 1px 3px rgba(0,0,0,.04)}
.demo-phone .th-ic svg {width:14px;height:14px;color:var(--text-muted);stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}

/* Modul-tabs (Kalender/Ukemeny/Rutiner og lignende) */
.demo-phone .modtab-row {display:flex;gap:6px;margin-bottom:12px;background:var(--surface);border-radius:9999px;padding:3px;border:1px solid var(--border-light)}
.demo-phone .modtab {flex:1;padding:8px 8px;font-size:11.5px;font-weight:600;border-radius:9999px;color:var(--text2);display:flex;align-items:center;justify-content:center;gap:5px;cursor:pointer}
.demo-phone .modtab svg {width:13px;height:13px;stroke:currentColor;stroke-width:1.7;fill:none;stroke-linecap:round;stroke-linejoin:round}
.demo-phone .modtab.active {background:var(--primary);color:#FFF}
.demo-phone .modtab.kids.active {background:#F9A825;color:#FFF}

/* Cal mode-row (kun Uke/Mnd-toggle, ingen "UKE 14") */
.demo-phone .cal-mode-row {display:flex;justify-content:flex-end;margin-bottom:8px}

/* Filter-chip count badge */
.demo-phone .task-filter-chip .cnt {margin-left:4px;font-size:10px;font-weight:700;opacity:.7}
.demo-phone .task-filter-chip.active .cnt {color:#FFF;opacity:1;background:rgba(255,255,255,.25);padding:1px 6px;border-radius:8px}


/* Felles input-bar — sticky over tab-bar (matcher app) */
.demo-phone .input-bar {position:absolute;left:14px;right:14px;bottom:90px;background:rgba(255,255,255,.98);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid var(--border-light);border-radius:24px;padding:8px 10px;display:flex;align-items:center;gap:10px;box-shadow:0 -2px 12px rgba(44,62,50,.05);z-index:50}
.demo-phone .input-bar svg {width:14px;height:14px;color:var(--primary);stroke:currentColor;stroke-width:2;fill:none}
.demo-phone .input-bar-text {flex:1;font-size:13px;color:var(--text-muted);padding:6px 4px}
.demo-phone .input-bar-send {width:30px;height:30px;border-radius:15px;background:var(--primary);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.demo-phone .input-bar-send svg {color:#FFF;width:14px;height:14px}

/* Padding på skjermer som har input-bar — så innholdet ikke blir gjemt */
.demo-phone #screen-shopping, .demo-phone #screen-tasks, .demo-phone #screen-chat {padding-bottom:80px}

.demo-phone .demo-footer {text-align:center;margin-top:24px;font-size:11px;color:var(--text2);max-width:320px}

