:root {
    --navy: #0F1E35;
    --navy-mid: #1A2B4A;
    --amber: #E8952A;
    --amber-light: #F5A623;
    --bg: #F4F5F7;
    --white: #FFFFFF;
    --text: #1C1C1E;
    --text-muted: #6B7280;
    --border: #E2E4E9;
    --card-bg: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.04em;
    text-decoration: none;
}

.nav-logo span {
    color: var(--amber);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--amber);
}

.nav-link::after {
    content: '→';
    font-size: 0.9em;
}

/* HERO */
.hero {
    background: var(--navy);
    padding: 96px 48px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,149,42,0.08) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-inner {
    max-width: 720px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,149,42,0.15);
    border: 1px solid rgba(232,149,42,0.3);
    color: var(--amber-light);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero h1 em {
    font-style: italic;
    color: var(--amber-light);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin-bottom: 16px;
    font-weight: 300;
}

.hero-stats {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 40px;
}

.hero-stats strong {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amber);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

.btn-primary::after {
    content: '↓';
}

/* FEATURES */
.features {
    background: var(--white);
    padding: 72px 48px;
    border-bottom: 1px solid var(--border);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 28px 20px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: var(--amber);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    display: block;
}

.feature-card h3 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FOR WHO */
.for-who {
    padding: 72px 48px;
    background: var(--bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.for-who-text .section-title {
    margin-bottom: 20px;
}

.for-who-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.for-who-visual {
    background: var(--navy);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-stat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mini-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--amber-light);
    min-width: 52px;
}

.mini-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
}

/* CATALOGUE */
.catalogue {
    padding: 72px 48px;
    background: var(--white);
}

.catalogue-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.catalogue-header .section-title {
    margin-bottom: 0;
}

.region-count {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.region {
    margin-bottom: 48px;
}

.region-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.region-title span {
    font-size: 1.1rem;
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.operator-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
}

.operator-card:hover {
    border-color: var(--amber);
    box-shadow: 0 4px 20px rgba(232,149,42,0.1);
    transform: translateY(-2px);
}

.operator-flag {
    font-size: 1.4rem;
    & img{
        border: 1px solid var(--border);
    }
}

.operator-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    flex: 1;
}

.operator-country {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.operator-cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

/* FOOTER */
footer {
    background: var(--navy);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-left {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

.footer-left a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-left a:hover {
    color: var(--amber);
}

.footer-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--amber);
    text-decoration: none;
    border: 1px solid rgba(232,149,42,0.4);
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.2s;
}

.footer-right a:hover {
    background: rgba(232,149,42,0.1);
}

.footer-right a::after {
    content: '→';
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    animation: fadeUp 0.5s ease both;
}
.hero h1 {
    animation: fadeUp 0.5s 0.1s ease both;
}
.hero-sub {
    animation: fadeUp 0.5s 0.2s ease both;
}
.hero-stats {
    animation: fadeUp 0.5s 0.25s ease both;
}
.btn-primary {
    animation: fadeUp 0.5s 0.3s ease both;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .operators-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .for-who {
        grid-template-columns: 1fr;
    }
    .for-who-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    nav, .hero, .features, .for-who, .catalogue, footer {
        padding-left: 24px;
        padding-right: 24px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .operators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalogue-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .operators-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}
