        :root {
            --primary: #0e3a6f;
            --primary-2: #113f7c;
            --navy: #0f2e55;
            --brand: #1a3b6b;
            --brand-2: #2b5aa8;
            --orange: #f29d62;
            --orange-2: #f2a871;
            --ink: #0b1b2e;
            --fg: #0f172a;
            --muted: #f6f7fb;
            --muted-2: #eef2f7;
            --card: #ffffff;
            --border: #e6e8ef;
            --accent: #ffd166;
            --success: #16a34a;
        }

        /* reset */
        *, *::before, *::after {
            box-sizing: border-box
        }

        html, body {
            margin: 0;
            padding: 0
        }

        body {
            font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Inter, Arial, 'Noto Sans';
            color: var(--fg);
            background: #fff
        }

        input, textarea, select {
            color: var(--fg);
            color-scheme: light;
        }

        img {
            display: block;
            max-width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px
        }

        /* header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255,255,255,.95);
            backdrop-filter: blur(6px);
            border-bottom: 1px solid var(--border)
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

            .logo img {
                height: 46px !important;
                width: auto
            }

            .logo span {
                font-weight: 800;
                font-size: 20px;
                color: var(--brand)
            }

        nav {
            display: none
        }
        @media (min-width: 768px) {
            nav {
                display: flex;
                gap: 28px;
            }
        }

        nav a {
            color: #111827;
            text-decoration: none;
            font-weight: 500
        }

            nav a:hover {
                color: var(--brand)
            }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 10px;
            padding: 10px 14px;
            border: 1px solid transparent;
            white-space: nowrap
        }

        .btn-ghost {
            border-color: #d1d5db;
            color: #111827;
            background: #fff
        }

            .btn-ghost:hover {
                border-color: var(--brand);
                color: var(--brand)
            }

.btn-primary {
    background: var(--orange);
    color: #fff
}

    .btn-primary:hover {
        background: var(--orange-2)
    }

.btn.btn-premium {
    background: #f6b17a;
    color: #1a3b6b;
}

.btn.btn-premium:hover {
    background: #e89c5c;
    color: #1a3b6b;
}

/* hero */
.hero {
    position: relative;
    color: #fff;
        }

            .hero .bg {
                position: absolute;
                inset: 0;
                background-image: url('../assets/futvolei.png');
                background-size: cover;
                background-position: center;
                z-index: 0;
                filter: brightness(.6);
            }

            .hero::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(10,26,52,.9), rgba(20,48,92,.95));
                z-index: 1;
            }

            .hero::after {
                /* bottom fade */
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 140px;
                background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,1));
            }

            .hero .inner {
                position: relative;
                padding: 80px 0 120px;
                text-align: center;
                z-index: 2;
            }

            .hero h1 {
                font-size: clamp(28px, 5vw, 54px);
                line-height: 1.1;
                margin: 0 0 12px;
                font-weight: 900;
                text-shadow: 0 2px 4px rgba(0,0,0,.5);
            }

            .hero .accent {
                color: var(--orange)
            }

            .hero p.lead {
                font-size: clamp(16px, 2.2vw, 20px);
                opacity: .95;
                max-width: 900px;
                margin: 0 auto 26px
            }

            .hero .actions {
                display: flex;
                gap: 14px;
                justify-content: center;
                flex-wrap: wrap;
                margin-bottom: 16px
            }

        .btn-lg {
            padding: 14px 22px;
            border-radius: 12px
        }

        .hero .benefits {
            color: #cfe2ff;
            font-size: 14px;
            opacity: .95
        }

            .hero .benefits svg {
                width: 16px;
                height: 16px;
                vertical-align: -2px
            }

        /* features section */
        .section {
            padding: 70px 0
        }

            .section.muted {
                background: #f7f9fc
            }

            .section h2 {
                font-size: clamp(24px, 4vw, 40px);
                text-align: center;
                margin: 0 0 10px;
                font-weight: 800
            }

            .section p.sub {
                color: #55607a;
                text-align: center;
                max-width: 760px;
                margin: 0 auto 36px;
                font-size: clamp(15px, 2vw, 18px);
            }

        .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 22px
        }
        @media (min-width: 900px) {
            .grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 600px) and (max-width: 899px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: 0 8px 18px rgba(15,30,60,.06)
        }

            .card .pad {
                padding: 24px;
                text-align: center
            }

        .icon-wrap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 999px;
            background: #eef2f7;
            margin-bottom: 12px
        }

            .icon-wrap svg {
                width: 28px;
                height: 28px;
                stroke-width: 2;
                fill: none
            }

        .card h3 {
            margin: 6px 0 8px;
            font-size: 20px
        }

        .card p {
            margin: 0;
            color: #4b5563;
            line-height: 1.6
        }

        /* pricing */
        .pricing {
            padding: 70px 0
        }

            .pricing .columns {
                display: grid;
                grid-template-columns: 1fr;
                gap: 28px
            }
        @media (min-width: 900px) {
            .pricing .columns {
                grid-template-columns: 1fr 1fr;
            }
        }

        .plan {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: 0 10px 24px rgba(0,0,0,.06);
            padding: 26px
        }

            .plan.popular {
                border-color: #f2b27b;
                box-shadow: 0 18px 32px rgba(242,157,98,.25);
                position: relative
            }

        .badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: #f2a871;
            color: #fff;
            font-weight: 800;
            font-size: 12px;
            padding: 6px 12px;
            border-radius: 999px;
            border: 2px solid #fff
        }

        .price {
            font-weight: 900;
            font-size: 36px;
            color: #0b1b2e
        }

        .plan h4 {
            font-size: 22px;
            margin: 8px 0 4px
        }

        .muted {
            color: #5b647b
        }

        .features-list {
            margin: 16px 0 20px;
            padding: 0;
            list-style: none
        }

            .features-list li {
                display: flex;
                align-items: flex-start;
                gap: 10px;
                padding: 6px 0;
                color: #334155
            }

            .features-list svg {
                width: 18px;
                height: 18px;
                stroke: var(--success)
            }

        .btn-full {
            display: block;
            width: 100%;
            text-align: center;
            margin-top: 6px;
            padding: 12px 16px;
            border-radius: 10px;
            font-weight: 800;
            text-decoration: none
        }

        .btn-outline {
            border: 2px solid var(--brand);
            color: #fff;
            background: var(--brand)
        }

            .btn-outline:hover {
                background: var(--brand-2)
            }

        /* bottom CTA band */
        .cta-band {
            background: linear-gradient(90deg, var(--brand), var(--brand-2));
            color: #fff;
            padding: 60px 0 40px;
            text-align: center
        }

            .cta-band h3 {
                font-size: clamp(24px, 4vw, 40px);
                margin: 0 0 10px
            }

            .cta-band p {
                opacity: .95;
                margin: 0 0 20px
            }

            .cta-band .btn-primary {
                font-size: 16px;
                padding: 8px 20px;
                border-radius: 12px;
                line-height: 1
            }

            .cta-band .btn-primary svg {
                width: 20px;
                height: 20px
            }

        .mini-feats {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 26px;
        }
        @media (min-width: 900px) {
            .mini-feats {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .mini-feats .item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #eaf1ff
        }

        .mini-feats svg {
            width: 32px;
            height: 32px;
            stroke: var(--orange)
        }

        /* footer */
        footer {
            background: linear-gradient(180deg, #0f2e55, #0d2646);
            color: #cad7ee;
            padding: 40px 0 22px
        }

        .footgrid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 22px;
        }
        @media (min-width: 900px) {
            .footgrid {
                grid-template-columns: 1.2fr 1fr 1fr;
            }
        }

        footer h5 {
            color: #fff;
            margin: 0 0 10px;
            font-size: 16px
        }

        footer a {
            color: #cad7ee;
            text-decoration: none
        }

            footer a:hover {
                color: #fff
            }

        .foot-logo {
            display: flex;
            align-items: center;
            gap: 94px;
            color: #fff
        }

            .foot-logo img {
                height: 34px
            }

        .copy {
            border-top: 1px solid rgba(255,255,255,.1);
            margin-top: 24px;
            padding-top: 16px;
            text-align: center;
            font-size: 13px;
            color: #a9b8d4
        }

