:root {
    --navy: #071A2D;
    --deep-navy: #03111F;
    --gold: #C9A227;
    --soft-gold: #E7C766;
    --white: #FFFFFF;
    --light-bg: #F7F9FC;
    --text-dark: #1F2937;
    --muted: #6B7280;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
}

.premium-navbar {
    background: rgba(3, 17, 31, 0.96);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.brand-logo {
    color: var(--white) !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    color: var(--deep-navy);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.nav-link {
    color: rgba(255,255,255,0.82) !important;
    font-weight: 500;
    margin-left: 14px;
}

.nav-link:hover {
    color: var(--soft-gold) !important;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    color: var(--deep-navy);
    border: none;
    font-weight: 800;
    border-radius: 999px;
    padding: 12px 24px;
    box-shadow: 0 12px 30px rgba(201, 162, 39, 0.25);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    color: var(--deep-navy);
    transform: translateY(-2px);
}

.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(120deg, rgba(3,17,31,0.96), rgba(7,26,45,0.88)),
        url("/static/images/hero-bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow,
.eyebrow-dark {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 0.78rem;
    margin-bottom: 18px;
}

.eyebrow {
    color: var(--soft-gold);
}

.eyebrow-dark {
    color: var(--gold);
}

.hero-section h1 {
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 720px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    gap: 24px;
    margin-top: 46px;
    flex-wrap: wrap;
}

.hero-proof div {
    border-left: 2px solid var(--gold);
    padding-left: 16px;
}

.hero-proof strong {
    display: block;
    font-size: 1.4rem;
    color: var(--soft-gold);
}

.hero-proof span {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    backdrop-filter: blur(16px);
}

.hero-card h3 {
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-card li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.82);
}

.small-link {
    color: var(--soft-gold);
    font-weight: 800;
    text-decoration: none;
}

.section {
    padding: 110px 0;
}

.light-section {
    background: var(--light-bg);
}

.section-heading {
    max-width: 820px;
    margin: 0 auto;
}

.section-heading h2,
.navy-section h2,
.about-section h2,
.quote-section h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -1px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
}

.service-card {
    background: var(--white);
    border-radius: 26px;
    padding: 32px;
    min-height: 100%;
    border: 1px solid rgba(7,26,45,0.08);
    box-shadow: 0 18px 50px rgba(7,26,45,0.08);
    transition: all 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(7,26,45,0.14);
}

.featured-service {
    background: linear-gradient(145deg, var(--navy), var(--deep-navy));
    color: var(--white);
}

.service-number {
    color: var(--gold);
    font-weight: 900;
    display: block;
    margin-bottom: 18px;
}

.service-card h4 {
    font-weight: 850;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--muted);
}

.featured-service p,
.featured-service li {
    color: rgba(255,255,255,0.76);
}

.service-card h6 {
    font-weight: 850;
    margin-top: 22px;
    color: var(--gold);
}

.service-card ul {
    padding-left: 18px;
}

.service-card li {
    margin-bottom: 8px;
    color: var(--muted);
}

.navy-section {
    background:
        radial-gradient(circle at top left, rgba(201,162,39,0.15), transparent 35%),
        linear-gradient(135deg, var(--deep-navy), var(--navy));
    color: var(--white);
}

.navy-section p {
    color: rgba(255,255,255,0.76);
}

.portfolio-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 28px;
    padding: 36px;
    backdrop-filter: blur(16px);
}

.portfolio-badge {
    display: inline-block;
    background: rgba(201,162,39,0.18);
    color: var(--soft-gold);
    border: 1px solid rgba(201,162,39,0.35);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.mini-feature {
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px;
    height: 100%;
}

.mini-feature strong {
    display: block;
    color: var(--soft-gold);
    margin-bottom: 8px;
}

.mini-feature span {
    color: rgba(255,255,255,0.72);
}

.small-muted {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.62) !important;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stats-row div {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.12);
}

.stats-row strong {
    display: block;
    color: var(--soft-gold);
    font-size: 1.5rem;
}

.stats-row span {
    color: rgba(255,255,255,0.72);
}

.about-image-placeholder {
    min-height: 520px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(7,26,45,0.82), rgba(201,162,39,0.35)),
        url("/static/images/about-workspace.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    padding: 28px;
    color: var(--white);
    font-weight: 800;
}

.about-points {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.about-points div {
    background: var(--white);
    border-left: 4px solid var(--gold);
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(7,26,45,0.07);
}

.about-points strong {
    color: var(--gold);
    margin-right: 12px;
}

.process-section {
    background: var(--white);
}

.process-card {
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(7,26,45,0.08);
    height: 100%;
    box-shadow: 0 16px 45px rgba(7,26,45,0.06);
}

.process-card span {
    color: var(--gold);
    font-weight: 900;
}

.process-card h5 {
    font-weight: 850;
    margin: 16px 0 10px;
}

.process-card p {
    color: var(--muted);
}

.testimonials-section {
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    border: 1px solid rgba(7,26,45,0.08);
    box-shadow: 0 16px 45px rgba(7,26,45,0.07);
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-card strong {
    display: block;
    color: var(--navy);
}

.testimonial-card span {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}

.quote-section {
    background:
        linear-gradient(135deg, rgba(3,17,31,0.97), rgba(7,26,45,0.94)),
        url("/static/images/quote-bg.png");
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.quote-wrapper {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 34px;
    padding: 44px;
    backdrop-filter: blur(18px);
}

.quote-wrapper p {
    color: rgba(255,255,255,0.74);
}

.quote-contact-card {
    background: rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 24px;
    margin-top: 28px;
}

.quote-form {
    background: var(--white);
    border-radius: 28px;
    padding: 32px;
    color: var(--text-dark);
}

.quote-form label {
    font-weight: 800;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border-radius: 14px;
    padding: 13px 14px;
    border: 1px solid #D6DBE3;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201,162,39,0.15);
}

.footer {
    background: var(--deep-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer p {
    color: rgba(255,255,255,0.68);
}

.footer a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer a:hover {
    color: var(--soft-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.58);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-proof,
    .footer-bottom {
        flex-direction: column;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .quote-wrapper {
        padding: 24px;
    }

    .quote-form {
        padding: 22px;
    }

    .section {
        padding: 80px 0;
    }
}