/* Color palette */
:root {
    --navy: #0b1f3a;
    --gold: #c6a35a;
    --white: #ffffff;
    --muted-bg: #f8f9fb;
    --accent-dark: #8c6f3e;
}

body {
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial;
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.display-4 {
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* NAV */
.navbar {
    background: linear-gradient(
        90deg,
        rgba(11, 31, 58, 1) 0%,
        rgba(8, 28, 50, 1) 100%
    );
}

.nav-link,
.navbar-brand {
    color: rgba(255, 255, 255, 0.95) !important;
}

.brand-gold {
    color: var(--gold);
    letter-spacing: 0.12em;
    font-weight: 700;
}

/* HERO */
.hero {
    background: linear-gradient(
        180deg,
        rgba(11, 31, 58, 0.02),
        rgba(255, 255, 255, 0)
    );
    padding: 6rem 0 2rem;
}

.hero-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(11, 31, 58, 0.08);
    overflow: hidden;
}

.hero-cta {
    background: var(--gold);
    color: var(--navy);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    box-shadow: 0 6px 12px rgba(198, 163, 90, 0.12);
}

.badge-premium {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    border-radius: 6px;
    padding: 0.35rem 0.6rem;
    letter-spacing: 0.06em;
}

/* Gold band */
.gold-band {
    background: linear-gradient(
        90deg,
        rgba(198, 163, 90, 1) 0%,
        rgba(151, 120, 68, 1) 100%
    );
    color: white;
    padding: 2rem 1rem;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 2rem;
}

/* Features */
.feature-card {
    border-radius: 14px;
    border: 1px solid rgba(11, 31, 58, 0.06);
    padding: 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: white;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(11, 31, 58, 0.06);
}

/* Pricing */
.price-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: #bfa145;
    /* Gold */
    box-shadow: 0 10px 25px rgba(191, 161, 69, 0.25);
}

.price-card h5 {
    color: #0d1b2a;
    /* Navy */
    font-weight: 600;
}

.price-card .price {
    font-size: 2rem;
    color: #bfa145;
    /* Gold */
    font-weight: 700;
}

.price-card .price-cta,
.price-card .price-cta-outline {
    background-color: #bfa145;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.price-card .price-cta:hover {
    background-color: #0d1b2a;
    /* Navy */
    color: #fff;
}

.price-card .price-cta-outline {
    background-color: transparent;
    color: #0d1b2a;
    border: 2px solid #0d1b2a;
}

.price-card .price-cta-outline:hover {
    background-color: #bfa145;
    color: #fff;
    border-color: #bfa145;
}

/* Testimonials */
.testimonial {
    background: var(--muted-bg);
    padding: 1.25rem;
    border-radius: 12px;
}

/* Footer */
.site-footer {
    background: #0b1726;
    color: #c9d5df;
    padding: 2.5rem 0;
}

.social-icon {
    background: rgba(255, 255, 255, 0.06);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

/* Responsive hero image */
.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* FAQ */
.accordion-button:focus {
    box-shadow: none;
}

/* Small utilities */
.muted-small {
    color: rgba(11, 31, 58, 0.6);
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 3.5rem;
    }
}
