:root {
    --bg: #0b1220;
    --bg-soft: #111a2c;
    --surface: #ffffff;
    --surface-soft: #f3f6fb;
    --text: #18202f;
    --text-light: #6a7588;
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --line: #e5eaf2;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(17, 26, 44, 0.08);
    --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--surface);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(11, 18, 32, 0.88);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}
.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    padding: 6px;
}
.brand strong { display: block; font-size: 1rem; }
.brand span { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(255,255,255,0.82);
}
.nav a:hover { color: var(--white); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--primary);
    color: #251605;
    font-weight: 700;
    transition: 0.2s ease;
    border: 1px solid transparent;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.22);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 18px; }
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--white);
    font-size: 1.8rem;
}
.hero {
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.25), transparent 25%), linear-gradient(180deg, var(--bg) 0%, #0d1627 100%);
    color: var(--white);
    padding: 88px 0 56px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.14);
    color: #ffd089;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}
.hero h1 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.08;
    margin: 0 0 16px;
}
.hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.06rem;
    line-height: 1.8;
    margin: 0;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 32px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.hero-stats div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-stats strong { display: block; margin-bottom: 6px; }
.hero-stats span { color: rgba(255,255,255,0.68); font-size: 0.92rem; }
.hero-media img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
}
.section {
    padding: 90px 0;
}
.section-alt {
    background: var(--surface-soft);
}
.section-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 34px;
}
.section-head.left {
    text-align: left;
    margin-left: 0;
}
.section-head h2, .two-col h2, .cta-wrap h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.15;
    margin: 0 0 12px;
}
.section-head p, .two-col p, .card p, .check-list li, .contact-list span, .contact-list a {
    color: var(--text-light);
    line-height: 1.8;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
}
.accent-card {
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
    border-color: #f6d9a8;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.feature-card { height: 100%; }
.icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: #fff3dc;
    color: #b96b00;
    margin-bottom: 14px;
}
.split-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}
.check-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-dark);
    font-size: 1.4rem;
    line-height: 1;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-item {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.video-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    background: #000;
}
.video-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.testimonial-card strong { display: block; margin-top: 16px; }
.testimonial-card span { color: var(--text-light); }
.cta-band {
    padding: 26px 0 0;
}
.cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 34px;
    background: linear-gradient(135deg, #161f31 0%, #0b1220 100%);
    color: var(--white);
    border-radius: 32px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}
.contact-list {
    display: grid;
    gap: 14px;
}
.contact-list .card {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-card { background: var(--surface-soft); }
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}
.form-card .btn-outline { color: var(--text); border-color: var(--line); }
.form-card .btn-outline:hover { background: #e8edf6; }
.site-footer {
    background: #0b1220;
    color: rgba(255,255,255,0.82);
    padding: 28px 0;
    margin-top: 34px;
}
.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-footer p { margin: 6px 0 0; color: rgba(255,255,255,0.64); }
.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.socials a { color: rgba(255,255,255,0.82); }
.socials a:hover { color: var(--white); }

@media (max-width: 980px) {
    .hero-grid,
    .two-col,
    .split-list,
    .contact-grid,
    .grid-3,
    .video-grid,
    .gallery-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #101a2d;
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav.open { display: flex; }
    .menu-toggle { display: block; }
}

@media (max-width: 640px) {
    .section { padding: 72px 0; }
    .hero { padding-top: 58px; }
    .cta-wrap,
    .footer-wrap { flex-direction: column; align-items: flex-start; }
    .gallery-item img { height: 220px; }
}
