*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #23466C;
    --navy-dark: #162d46;
    --navy-light: #2f5a8a;
    --gold: #c8a850;
    --gold-light: #d4bb70;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ─── Header / Nav ───────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 36, 64, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 168, 80, 0.2);
    transition: background 0.3s;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-brand img {
    height: 44px;
    width: 44px;
    object-fit: contain;
}
.nav-brand span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 5px;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}
.btn-login:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,168,80,0.3); }
.btn-login svg { width: 16px; height: 16px; }

/* ─── Mobile Nav ─────────────────────────────────────────────────── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: 0.3s; }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
    padding: 10rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(200,168,80,0.06) 0%, transparent 60%);
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-logo {
    width: 320px;
    height: 320px;
    object-fit: contain;
    margin: 0 auto 2rem;
    display: block;
}
.hero h1 {
    font-size: 2.75rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold);
}
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,168,80,0.3); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(35,70,108,0.3); }

/* ─── Section Base ───────────────────────────────────────────────── */
.section {
    padding: 5rem 2rem;
}
.section-dark {
    background: var(--gray-50);
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.section-header h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 0.75rem;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}
.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* ─── Features Grid ──────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
}
.feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold);
    font-size: 1.5rem;
}
.feature-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ─── Stats Bar ──────────────────────────────────────────────────── */
.stats-bar {
    background: var(--navy);
    padding: 3rem 2rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ─── Compliance Section ─────────────────────────────────────────── */
.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.compliance-list {
    list-style: none;
}
.compliance-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}
.compliance-list li:last-child { border-bottom: none; }
.check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.compliance-image {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compliance-image img {
    width: 320px;
    height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

/* ─── CTA Section ────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-section h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(200,168,80,0.15);
    padding: 3rem 2rem 2rem;
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
}
.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 300px;
}
.footer-col h4 {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
}

/* ─── Page Hero (inner pages) ───────────────────────────────────── */
.page-hero {
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
    padding: 8rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(200,168,80,0.08) 0%, transparent 60%);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.page-hero .page-hero-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-size: 2.25rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.page-hero h1 em {
    font-style: normal;
    color: var(--gold);
}
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb {
    padding: 0.75rem 2rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.breadcrumb-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.breadcrumb a {
    color: var(--navy-light);
    font-weight: 500;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.4rem; opacity: 0.5; }

/* ─── Feature Detail ────────────────────────────────────────────── */
.feature-detail {
    padding: 3rem 2rem 5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-detail h2 {
    font-size: 1.6rem;
    color: var(--navy);
    margin: 3.5rem 0 1rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 0.75rem;
}
.feature-detail h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}
.feature-detail h2:first-child {
    margin-top: 0;
}
.feature-detail > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}
.detail-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 1.75rem;
    border-left: 4px solid var(--navy);
    transition: all 0.3s;
}
.detail-card:hover {
    border-left-color: var(--gold);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.detail-card h4 {
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.detail-card h4 .icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    line-height: 1;
}
.detail-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.6;
}

.detail-list {
    list-style: none;
    margin: 1rem 0 2rem;
    background: var(--gray-50);
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gray-200);
}
.detail-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.detail-list li:last-child { border-bottom: none; }
.detail-list .bullet {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── CFR Badge ─────────────────────────────────────────────────── */
.cfr-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin: 0.25rem 0.25rem 0.25rem 0;
}

/* ─── Feature CTA Banner ───────────────────────────────────────── */
.feature-cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border: none;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 3.5rem 0 0;
}
.feature-cta h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 800;
}
.feature-cta p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}
.feature-cta .hero-buttons {
    justify-content: center;
}

/* ─── Nav Dropdown ──────────────────────────────────────────────── */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 2px;
    transition: transform 0.2s;
}
.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    border: 1px solid rgba(200,168,80,0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    z-index: 200;
    padding-top: 0.75rem;
    background-clip: padding-box;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}
.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover {
    background: rgba(200,168,80,0.1);
}

/* ─── Active nav link ───────────────────────────────────────────── */
.nav-links a.active {
    color: var(--gold);
}

/* ─── Feature cards as links ────────────────────────────────────── */
a.feature-card {
    display: block;
    text-decoration: none;
}
a.feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* ─── Highlight row (alternating feature sections) ──────────────── */
.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}
.feature-highlight.reverse {
    direction: rtl;
}
.feature-highlight.reverse > * {
    direction: ltr;
}
.feature-highlight-visual {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}
.feature-highlight-visual .big-icon {
    font-size: 5rem;
    filter: grayscale(0.2);
}

/* ─── Stock Image Sections ──────────────────────────────────────── */
.img-section {
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
}
.img-section img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.img-section.img-tall img {
    height: 360px;
}

/* Image + text side by side */
.img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin: 2.5rem 0;
}
.img-row.reverse {
    direction: rtl;
}
.img-row.reverse > * {
    direction: ltr;
}
.img-row-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.img-row-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.img-row-text h3 {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.img-row-text p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Full-width hero image banner */
.hero-image-banner {
    position: relative;
    overflow: hidden;
}
.hero-image-banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.hero-image-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(22,45,70,0.6) 0%, rgba(22,45,70,0.2) 50%, transparent 100%);
}

/* Compliance page image replacement */
.compliance-image-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.compliance-image-photo img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

/* ─── Contact page form style ───────────────────────────────────── */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}
.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--navy);
    transition: all 0.3s;
}
.contact-card:hover {
    border-top-color: var(--gold);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.contact-card .contact-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.contact-card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.contact-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
}
.contact-card a {
    color: var(--navy-light);
    font-weight: 600;
}
.contact-card a:hover { color: var(--gold); }

/* ─── Pricing Page ──────────────────────────────────────────────── */
.pricing-toggles {
    text-align: center;
    padding: 2.5rem 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-toggle-group {
    display: inline-flex;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 1rem;
}
.pricing-toggle-group button {
    border: none;
    background: transparent;
    padding: 0.6rem 1.75rem;
    border-radius: 26px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}
.pricing-toggle-group button.active {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(35,70,108,0.3);
}
.pricing-toggle-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}
.pricing-save-badge {
    display: inline-block;
    background: rgba(200,168,80,0.15);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.4rem;
    vertical-align: middle;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border-top: 3px solid var(--navy);
}
.pricing-card:hover {
    border-top-color: var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.pricing-card.featured {
    border-top-color: var(--gold);
    border-color: var(--gold);
    border-top: 3px solid var(--gold);
    box-shadow: 0 8px 30px rgba(200,168,80,0.15);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.pricing-card .tier-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.pricing-card .tier-range {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.pricing-card .price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}
.pricing-card .price-annual {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    min-height: 1.2em;
}
.pricing-card .price-contact {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.25rem;
    padding: 0.5rem 0;
}
.pricing-card .tier-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 2.5em;
}
.pricing-card .btn {
    width: 100%;
}

.pricing-includes {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    max-width: 100%;
}
.pricing-includes h2 {
    text-align: center;
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.pricing-includes h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}
.pricing-includes > p {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.includes-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.88rem;
    color: var(--gray-700);
}
.includes-item .check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-compare {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.pricing-compare h2 {
    text-align: center;
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.pricing-compare h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.compare-col {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    border-top: 3px solid var(--navy);
}
.compare-col.highlighted {
    border-top-color: var(--gold);
    border-color: var(--gold);
    border-top: 3px solid var(--gold);
    background: rgba(200,168,80,0.02);
    box-shadow: 0 4px 16px rgba(200,168,80,0.1);
}
.compare-col h3 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    font-weight: 800;
}
.compare-col .compare-subtitle {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}
.compare-col ul {
    list-style: none;
}
.compare-col li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--gray-700);
}
.compare-col li:last-child { border-bottom: none; }

.pricing-faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    background: var(--gray-50);
    max-width: 100%;
    border-top: 1px solid var(--gray-200);
    padding-top: 4rem;
}
.pricing-faq h2 {
    text-align: center;
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.pricing-faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}
.pricing-faq-inner {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
}
.faq-item h3 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
    font-weight: 700;
}
.faq-item p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 2rem; border-bottom: 1px solid rgba(200,168,80,0.2); gap: 1rem; }
    .nav-toggle { display: block; }
    .hero { padding: 8rem 1.5rem 4rem; }
    .hero h1 { font-size: 2rem; }
    .hero-logo { width: 250px; height: 250px; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .compliance-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .detail-grid { grid-template-columns: 1fr; }
    .feature-highlight { grid-template-columns: 1fr; }
    .feature-highlight.reverse { direction: ltr; }
    .img-row { grid-template-columns: 1fr; }
    .img-row.reverse { direction: ltr; }
    .img-section img { height: 200px; }
    .img-row-photo img { height: 220px; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: none; margin-top: 0; padding-left: 1rem; }
    .nav-dropdown:hover .nav-dropdown-menu { display: block; }
    .nav-dropdown > a::after { display: none; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-grid { grid-template-columns: 1fr; }
    .includes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 1.6rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .nav-container { padding: 0 1rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-toggle-group button { padding: 0.5rem 1rem; font-size: 0.8rem; }
}
