:root {
    --primary: #0f2e55;
    --primary-2: #133967;
    --navy: #0b1f3a;
    --brand: #1a3b6b;
    --brand-2: #2d5fb0;
    --orange: #f29d62;
    --orange-2: #f2a871;
    --ink: #0b1b2e;
    --fg: #0f172a;
    --muted: #f6f7fb;
    --muted-2: #eef2f7;
    --card: #ffffff;
    --border: #e6e8ef;
    --accent: #ffd166;
    --success: #16a34a;
    --shadow: 0 16px 40px rgba(15, 30, 60, 0.12);
}

*, *::before, *::after {
    box-sizing: border-box;
}

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

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

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

a {
    text-decoration: none;
}

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

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
    min-width: 0;
    text-decoration: none;
}

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

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

nav {
    display: none;
    gap: 28px;
}

nav a {
    color: #111827;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

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

.header-secondary {
    font-weight: 600;
    color: var(--brand);
    border-color: rgba(15, 46, 85, 0.2);
}

.header-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
}

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

@media (max-width: 768px) {
    .header-inner {
        padding: 8px 0;
        gap: 10px;
    }

    .logo img {
        height: 34px;
    }

    .logo span {
        font-size: 16px;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-actions {
        gap: 8px;
    }

    .header-secondary {
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 10px;
        background: transparent;
    }

    header .btn-premium {
        padding: 8px 14px;
        border-radius: 10px;
        box-shadow: none;
    }

    .btn:hover {
        transform: none;
    }
}

@media (max-width: 420px) {
    .header-secondary {
        display: none;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 24px rgba(242, 157, 98, 0.3);
}

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

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

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

.btn-premium {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 24px rgba(242, 157, 98, 0.3);
}

.btn-premium:hover {
    background: var(--orange-2);
    color: #fff;
}

header .btn-premium {
    background: var(--orange);
    color: #fff !important;
    border-color: transparent;
    min-width: 96px;
}

header .btn-premium:hover {
    background: var(--orange-2);
    color: #fff !important;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

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

.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
}

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

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

.hero::after {
    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;
    z-index: 2;
    padding: 72px 0 96px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero-copy {
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 800;
}

.hero p.lead {
    font-size: clamp(16px, 2.1vw, 20px);
    opacity: 0.92;
    max-width: 640px;
    margin: 0 0 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 14px;
    color: #d6e6ff;
}

.hero-trust i {
    color: var(--orange);
    margin-right: 8px;
}

.hero-panel {
    display: flex;
    justify-content: flex-start;
}

.hero-card {
    background: rgba(255, 255, 255, 0.98);
    color: var(--fg);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.hero-card h2 {
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--brand);
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    font-size: 15px;
}

.hero-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.hero-card i {
    color: var(--success);
    font-size: 18px;
    margin-top: 2px;
}

.hero-card-footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: #4b5563;
}

.section {
    padding: 70px 0;
}

.section.muted {
    background: var(--muted);
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 40px);
    margin: 0 0 10px;
    font-weight: 800;
    color: var(--ink);
}

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

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(15, 30, 60, 0.08);
    text-align: left;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 59, 107, 0.08);
    color: var(--brand);
    margin-bottom: 14px;
    font-size: 20px;
}

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

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

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 18px rgba(15, 30, 60, 0.06);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 157, 98, 0.15);
    color: var(--orange);
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.feature-card p {
    margin: 0;
    color: #5b647b;
    line-height: 1.6;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.proof-card {
    background: linear-gradient(135deg, rgba(26, 59, 107, 0.08), rgba(242, 157, 98, 0.1));
    border: 1px solid rgba(26, 59, 107, 0.08);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
}

.proof-card h3 {
    font-size: 30px;
    margin: 0 0 8px;
    color: var(--brand);
}

.proof-card p {
    margin: 0;
    color: #4b5563;
}

.testimonial {
    margin-top: 30px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(15, 30, 60, 0.08);
}

.testimonial p {
    font-size: 16px;
    color: #3f4a63;
    margin: 0 0 10px;
}

.testimonial span {
    font-weight: 600;
    color: var(--brand);
}

.pricing {
    background: #fff;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.badge-discount {
    background: rgba(242, 157, 98, 0.2);
    color: var(--brand);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.plan-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px;
    position: relative;
    box-shadow: 0 12px 26px rgba(15, 30, 60, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.plan-highlight {
    border: 2px solid rgba(242, 157, 98, 0.6);
    box-shadow: 0 20px 40px rgba(242, 157, 98, 0.2);
}

.plan-badge {
    position: absolute;
    top: -14px;
    right: 22px;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
}

.plan-header h3 {
    margin: 0 0 6px;
    font-size: 22px;
    color: var(--brand);
}

.plan-header p {
    margin: 0;
    color: #5b647b;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 800;
    color: var(--ink);
}

.plan-price .price {
    font-size: 32px;
}

.plan-price .price-period {
    font-size: 14px;
    color: #6b7280;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: #334155;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plan-features i {
    color: var(--success);
    margin-top: 3px;
}

.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: 0.95;
    margin: 0 0 20px;
}

.cta-band .btn-primary {
    font-size: 16px;
    padding: 10px 22px;
    border-radius: 12px;
}

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

.mini-feats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 26px;
}

.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 {
    background: linear-gradient(180deg, #0f2e55, #0d2646);
    color: #cad7ee;
    padding: 40px 0 22px;
}

.footgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

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

footer a {
    color: #cad7ee;
}

footer a:hover {
    color: #fff;
}

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

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

@media (min-width: 768px) {
    .benefit-grid,
    .feature-grid,
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .benefit-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mini-feats {
        grid-template-columns: repeat(3, 1fr);
    }

    .footgrid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}
