
:root {
    --navy: #071a34;
    --navy-2: #0d274d;
    --gold: #d4af5a;
    --gold-soft: #f0dfaf;
    --white: #ffffff;
    --text: #17304f;
    --muted: #5d7088;
    --bg: #f6f8fb;
    --border: rgba(7, 26, 52, 0.10);
    --shadow: 0 16px 40px rgba(7, 26, 52, 0.10);
    --radius: 24px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}
.narrow { max-width: 860px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(7, 26, 52, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 92px;
}
.brand img, .custom-logo { max-height: 62px; width: auto; }
.main-nav .menu, .nav-list {
    list-style: none;
    display: flex;
    gap: 22px;
    padding: 0;
    margin: 0;
    color: #f4f7fb;
}
.main-nav a { font-weight: 600; }
.header-cta { display: inline-flex; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 700;
    transition: 0.25s ease;
}
.button:hover { transform: translateY(-1px); }
.button-gold {
    background: linear-gradient(135deg, var(--gold), #f0d796);
    color: var(--navy);
    box-shadow: var(--shadow);
}
.button-outline {
    border: 1px solid rgba(255,255,255,0.28);
    color: var(--white);
}
.button-dark {
    background: var(--navy);
    color: var(--white);
}

.hero {
    background:
      radial-gradient(circle at top right, rgba(212,175,90,0.18), transparent 28%),
      linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
    padding: 72px 0 64px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}
.hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.02;
    margin: 0 0 16px;
}
.hero p {
    font-size: 19px;
    max-width: 680px;
    color: rgba(255,255,255,0.88);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 22px;
}
.hero-points {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.hero-points li::before {
    content: "•";
    color: var(--gold);
    margin-right: 10px;
}
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.section { padding: 88px 0; }
.section-dark {
    background: var(--navy);
    color: var(--white);
}
.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}
.section-heading h2, .about-grid h2, .contact-grid h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    margin: 0 0 12px;
}
.section-heading p, .about-grid p, .contact-grid p {
    color: var(--muted);
    font-size: 18px;
}
.section-dark p { color: rgba(255,255,255,0.82); }

.service-grid, .process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.service-card, .process-card, .content-card, .contact-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
}
.service-card h3, .process-card h3 { margin-top: 0; font-size: 22px; }
.service-card p, .process-card p, .content-card p { color: var(--muted); }

.about-grid, .contact-grid, .cta-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 24px;
}
.stat-card strong {
    display: block;
    font-size: 30px;
    color: var(--gold-soft);
    margin-bottom: 8px;
}

.process-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-band {
    background: linear-gradient(135deg, #f8f2e2, #fdf9ef);
    padding: 42px 0;
}
.cta-band-inner h2 { margin: 0; }

.contact-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}
.contact-list li { margin-bottom: 10px; }
.contact-box {
    background: var(--bg);
}

.site-footer {
    background: #061427;
    color: rgba(255,255,255,0.86);
    padding-top: 56px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 0.8fr;
    gap: 28px;
    padding-bottom: 30px;
}
.footer-logo { max-width: 280px; margin-bottom: 14px; }
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0 28px;
    color: rgba(255,255,255,0.64);
}

@media (max-width: 960px) {
    .hero-grid, .about-grid, .contact-grid, .cta-band-inner, .footer-grid,
    .service-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .main-nav { display: none; }
    .header-cta { display: none; }
}

@media (max-width: 640px) {
    .section { padding: 68px 0; }
    .hero { padding-top: 48px; }
    .stats-grid { grid-template-columns: 1fr; }
}
