/* ============================================
   Wise Forensic — Premium Design System
   Private Digital Forensics Boutique
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Core palette */
    --bg-deep: #080c14;
    --bg-dark: #0b1220;
    --bg-card: #0f1a2e;
    --bg-card-hover: #142240;
    --bg-subtle: #111d33;
    --navy-900: #0B1D33;
    --navy-800: #122B4A;
    --navy-700: #1A3A5C;
    --navy-600: #234B73;

    /* Accent */
    --gold: #C8973E;
    --gold-light: #E8B84D;
    --gold-dark: #A67B2E;
    --gold-glow: rgba(200,151,62,0.15);
    --cyan: #7EC8E3;
    --cyan-glow: rgba(126,200,227,0.1);

    /* Status */
    --green: #2D8F5E;
    --green-light: #D1FAE5;
    --red: #EF4444;

    /* Text */
    --text-primary: #F0EDE8;
    --text-secondary: rgba(240,237,232,0.7);
    --text-muted: rgba(240,237,232,0.45);
    --text-dark: #1a1a2e;
    --white: #FFFFFF;

    /* Border */
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(200,151,62,0.3);

    /* Elevation */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 40px rgba(200,151,62,0.08);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8,12,20,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.navbar.scrolled {
    background: rgba(8,12,20,0.95);
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.shield-icon {
    width: 52px;
    height: 52px;
    background: url('/static/img/wf-logo-light.png') center/contain no-repeat;
    border-radius: 0;
    font-size: 0;
    color: transparent;
    overflow: hidden;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}
.logo-text span {
    color: var(--gold);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    letter-spacing: 0.3px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}
.nav-cta {
    background: var(--gold) !important;
    color: var(--bg-deep) !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.3px;
    transition: all var(--transition) !important;
    box-shadow: 0 0 20px rgba(200,151,62,0.2);
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(200,151,62,0.3) !important;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--gold);
    color: var(--bg-deep);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    box-shadow: 0 0 30px rgba(200,151,62,0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,151,62,0.35);
}
.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-deep);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, rgba(8,12,20,0.92) 0%, rgba(11,29,51,0.88) 50%, rgba(15,26,46,0.9) 100%),
                url('/static/img/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,151,62,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126,200,227,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,151,62,0.1);
    border: 1px solid rgba(200,151,62,0.2);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 44px;
    line-height: 1.8;
    font-weight: 300;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.trust-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.trust-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    backdrop-filter: blur(8px);
}
.trust-chip svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
}
.section-dark { background: var(--bg-deep); }
.section-subtle { background: var(--bg-dark); }
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
}
.section-header {
    margin-bottom: 64px;
}
.section-header.center {
    text-align: center;
}
.section-header.center .section-sub {
    margin: 0 auto;
}

/* Legacy support */
.section-alt { background: var(--bg-dark); }
.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
}
.section-header.center h2,
.section-header.center p { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ===== GLASS CARDS ===== */
.glass-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}
.glass-card:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.05);
    box-shadow: var(--shadow-glow);
}

/* ===== AUDIENCE GRID ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.audience-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}
.audience-card:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.05);
}
.audience-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.audience-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== SERVICE PANELS ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.service-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}
.service-panel:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.service-panel-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-panel-body {
    padding: 36px;
}
.service-panel-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.service-panel h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.service-panel p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}
.service-panel .price-tag {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.service-panel .price-tag strong {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* Legacy service-card support (for pages not yet updated) */
.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 32px 36px 40px; }
.service-card::before { display: none; }
.service-card-icon {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 16px;
    background: var(--gold-glow);
}
.service-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); margin-bottom: 20px; font-size: 0.95rem; }
.service-features { list-style: none; margin-bottom: 24px; }
.service-features li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.95rem; color: var(--text-secondary); }
.service-features .check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.service-card .price-from { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.service-card .price-from strong { font-size: 1.5rem; color: var(--text-primary); }
.child-safety .service-card-icon { background: rgba(45,143,94,0.15); }
.spousal .service-card-icon { background: var(--gold-glow); }

/* ===== PROCESS / STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition);
}
.step-card:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.05);
}
.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(200,151,62,0.2);
    line-height: 1;
    margin-bottom: 24px;
}
.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== PRICING TIER BLOCKS (Services page) ===== */
.pricing-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.tier-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}
.tier-block:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.tier-block.featured {
    border-color: rgba(200,151,62,0.4);
    background: rgba(200,151,62,0.05);
    transform: scale(1.03);
}
.tier-block.featured:hover {
    transform: scale(1.03) translateY(-4px);
}
.tier-featured-label {
    background: var(--gold);
    color: var(--bg-deep);
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px;
}
.tier-block-header {
    padding: 36px 32px 0;
}
.tier-block-header h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.tier-block-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}
.tier-block-body {
    padding: 24px 32px 36px;
}
.tier-block-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tier-block-body li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 0 8px 24px;
    position: relative;
    font-weight: 300;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    line-height: 1.5;
}
.tier-block-body li:last-child { border-bottom: none; }
.tier-block-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .pricing-tiers-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .tier-block.featured { transform: none; }
    .tier-block.featured:hover { transform: translateY(-4px); }
}

/* Legacy step support */
.step { text-align: center; }
.step .step-number {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gold-glow); border: 1px solid rgba(200,151,62,0.3);
    color: var(--gold); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
    font-family: var(--font-body); font-size: 1.1rem; font-weight: 700;
}
.step h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.step p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== TRUST / STANDARDS ===== */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.trust-block {
    background: linear-gradient(135deg, rgba(200,151,62,0.08) 0%, transparent 60%);
    border: 1px solid rgba(200,151,62,0.15);
    border-radius: var(--radius-xl);
    padding: 44px;
}
.trust-block h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.trust-block p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
}
.standards-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.standard-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}
.standard-item svg {
    width: 18px; height: 18px;
    stroke: var(--gold); fill: none; stroke-width: 2;
    flex-shrink: 0;
}

/* ===== FEATURES / WHY US ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}
.feature-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    background: var(--gold-glow);
    border: 1px solid rgba(200,151,62,0.15);
}
.feature-icon svg {
    width: 24px; height: 24px;
    stroke: var(--gold); fill: none; stroke-width: 1.8;
}
.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== FOUNDER SECTION ===== */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: center;
}
.founder-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}
.founder-photo img {
    width: 100%;
    height: auto;
    display: block;
}
.founder-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.founder-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
    font-weight: 300;
}
.founder-creds {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}
.cred-badge {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    text-align: center;
}
.cred-badge .cred-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}
.cred-badge .cred-full {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition);
    text-align: center;
}
.pricing-card:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.05);
}
.pricing-card.featured {
    border-color: rgba(200,151,62,0.3);
    background: rgba(200,151,62,0.06);
}
.pricing-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.pricing-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
}

/* Legacy pricing */
.pricing-card-header {
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}
.pricing-card-header h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); }
.pricing-card-header p { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
.pricing-tiers { list-style: none; }
.pricing-tier { display: flex; justify-content: space-between; align-items: center; padding: 18px 32px; border-bottom: 1px solid var(--border); transition: background var(--transition); }
.pricing-tier:hover { background: rgba(255,255,255,0.03); }
.pricing-tier:last-child { border-bottom: none; }
.tier-name { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.tier-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }
.tier-price { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); white-space: nowrap; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(8,12,20,0.95), rgba(15,26,46,0.92)),
                url('/static/img/cta-bg.jpg') center/cover no-repeat;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.cta-banner p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 36px;
    font-weight: 300;
}

/* ===== SERVICE BANNER ===== */
.service-banner {
    padding: 72px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}
.service-banner h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.service-banner p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(160deg, rgba(8,12,20,0.92), rgba(11,29,51,0.88));
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border);
}
.page-hero.services-hero { background: linear-gradient(160deg, rgba(8,12,20,0.92), rgba(11,29,51,0.88)), url('/static/img/services-hero.jpg') center/cover no-repeat; }
.page-hero.about-hero { background: linear-gradient(160deg, rgba(8,12,20,0.92), rgba(11,29,51,0.88)), url('/static/img/about-hero.jpg') center/cover no-repeat; }
.page-hero.contact-hero { background: linear-gradient(160deg, rgba(8,12,20,0.92), rgba(11,29,51,0.88)), url('/static/img/contact-hero.jpg') center/cover no-repeat; }
.page-hero.faq-hero { background: linear-gradient(160deg, rgba(8,12,20,0.92), rgba(11,29,51,0.88)), url('/static/img/faq-hero.jpg') center/cover no-repeat; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.page-hero p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.about-text h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
}
.about-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-width: 75%;
}
.about-photo img {
    width: 100%;
    height: auto;
    display: block;
}
.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.cert-badge {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}
.cert-badge .cert-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
}
.cert-badge .cert-full {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.experience-list { list-style: none; margin-top: 24px; }
.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
}
.experience-list .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0; margin-top: 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
}
.contact-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,151,62,0.1);
}
.form-group input.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}
.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-secondary);
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.custom-select-trigger:hover {
    border-color: rgba(255,255,255,0.15);
}
.custom-select-trigger.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,151,62,0.1);
}
.custom-select-trigger.selected {
    color: var(--text-primary);
}
.custom-select-trigger svg {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.25s ease;
}
.custom-select-trigger.active svg {
    transform: rotate(180deg);
}
.custom-select-options {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.custom-select-options.open {
    display: block;
}
.custom-select-option {
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.custom-select-option:last-child {
    border-bottom: none;
}
.custom-select-option:hover {
    background: rgba(200,151,62,0.1);
    color: var(--text-primary);
}
.custom-select-option.selected {
    background: rgba(200,151,62,0.15);
    color: var(--gold);
    font-weight: 600;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { font-size: 0.8rem; color: var(--red); display: none; margin-top: 6px; }
.form-error.visible { display: block; }
.btn-submit-form {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--bg-deep);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 0 20px rgba(200,151,62,0.15);
}
.btn-submit-form:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(200,151,62,0.3);
}
.form-success-msg {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success-msg.visible { display: block; }
.form-success-msg .success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(45,143,94,0.15); border: 1px solid rgba(45,143,94,0.3);
    margin: 0 auto 20px; display: flex; align-items: center;
    justify-content: center; font-size: 28px; color: var(--green);
}
.form-success-msg h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-primary); margin-bottom: 12px; }
.form-success-msg p { color: var(--text-secondary); font-size: 0.95rem; }
.contact-info {
    padding-top: 8px;
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-info-icon {
    width: 44px; height: 44px;
    background: var(--gold-glow); border: 1px solid rgba(200,151,62,0.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.contact-info-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.contact-info-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}
.service-area {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 32px;
}
.service-area h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== FAQ ===== */
.faq-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 48px 0 20px;
}
.faq-section-label:first-child { margin-top: 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-item.open { border-color: rgba(200,151,62,0.2); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: rgba(255,255,255,0.02);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: left;
}
.faq-question h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    padding-right: 16px;
}
.faq-chevron {
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
}

/* ===== TIER CARDS (services page) ===== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail-header h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}
.service-detail-header p { color: var(--text-secondary); font-size: 0.95rem; margin-top: 8px; font-weight: 300; }
.tier-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
}
.tier-card:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.05); }
.tier-card.popular {
    border-color: rgba(200,151,62,0.4);
    background: rgba(200,151,62,0.05);
    position: relative;
}
.tier-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 0 0 8px 8px;
}
.tier-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.tier-card-price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text-primary); margin-bottom: 20px; }
.tier-card ul { list-style: none; }
.tier-card li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0 6px 20px;
    position: relative;
    font-weight: 300;
}
.tier-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-deep);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
    margin-top: 16px;
    font-weight: 300;
}
.footer h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
    font-weight: 300;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .audience-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; }
    .founder-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .standards-list { grid-template-columns: 1fr 1fr; }
    .tier-cards { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar-inner { height: 64px; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(8,12,20,0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        gap: 16px;
    }
    .nav-toggle { display: flex; }
    .nav-cta { text-align: center; }

    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .trust-strip { flex-direction: column; }

    .section { padding: 64px 0; }
    .section-title { font-size: 2rem; }
    .section-header h2 { font-size: 1.8rem; }

    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .page-hero { padding: 120px 0 56px; }
    .page-hero h1 { font-size: 2rem; }

    .cta-banner h2 { font-size: 2rem; }
    .service-banner h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-badge { font-size: 0.7rem; letter-spacing: 1.5px; }
    .contact-form-card { padding: 24px; }
    .cert-grid { grid-template-columns: 1fr; }
    .standards-list { grid-template-columns: 1fr; }
    .founder-creds { flex-direction: column; }
}

@media print {
    .navbar, .footer, .cta-banner, .nav-toggle { display: none !important; }
    .hero { background: none !important; padding: 20px 0; min-height: auto; }
    .hero h1 { color: #000 !important; }
    .section { padding: 20px 0; }
    body { background: #fff; color: #000; }
}
