:root {
    --primary: #0d2a4d;
    --accent: #f7941d;
    --teal: #1d9d8b;
    --bg: #f8fafc;
    --text: #1f2937;
    --muted: #64748b;
    --surface: #ffffff;
    --border: rgba(13, 42, 77, 0.1);
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
}

body.no-scroll {
    overflow: hidden;
}

.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar-brand, .nav-link {
    color: var(--primary) !important;
}

.btn-premium {
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border: none;
    color: white;
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.btn-premium,
button.btn-premium {
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 14px 30px rgba(13, 42, 77, 0.16);
}

.card-surface {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.hero {
    background: linear-gradient(135deg, var(--primary), #183b67 55%, var(--teal));
    color: white;
    padding: 96px 0 80px;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    font-weight: 800;
}

.hero .accent {
    color: #ffd48a;
}

.section {
    padding: 78px 0;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.1rem;
    padding-bottom: 0.6rem;
    color: var(--primary);
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 82px;
    height: 4px;
    background: var(--accent);
    border-radius: 999px;
}

.pill {
    display: inline-block;
    background: rgba(247,148,29,0.14);
    color: var(--accent);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    margin: 0.25rem 0.25rem 0.25rem 0;
    font-weight: 600;
}

.modal-shell {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.74);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2000;
}

.modal-shell.open {
    display: flex;
}

.modal-panel {
    width: min(1180px, 100%);
    max-height: 92vh;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.35);
    position: relative;
}

.modal-frame {
    width: 100%;
    height: min(86vh, 900px);
    border: 0;
    display: block;
    background: white;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.94);
    color: #0f172a;
    z-index: 20;
}

.protected {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.protected img,
.protected video,
.protected a {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.protected img {
    pointer-events: none;
}

.protected video,
.protected video ~ * {
    pointer-events: auto !important;
}

.protected video {
    pointer-events: auto !important;
}

.protected video::-webkit-media-controls,
.protected video::-webkit-media-controls-enclosure {
    pointer-events: auto !important;
}

video {
    pointer-events: auto;
}

.modal-frame,
.modal-frame * {
    pointer-events: auto;
}

@media print {
    body.protected * {
        visibility: hidden !important;
    }
    body.protected,
    body.protected * {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 72px 0 56px;
    }
}
