/* ===== TRILLION-DOLLAR BRAND DESIGN SYSTEM ===== */
:root {
    --navy: #0A1628;
    --navy-light: #121F33;
    --navy-deep: #060E1A;
    --gold: #C8A951;
    --gold-light: #D4BB6E;
    --gold-dark: #A88B3D;
    --gold-glow: rgba(200,169,81,0.15);
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --grey-50: #F9FAFB;
    --grey-100: #F3F4F6;
    --grey-200: #E5E7EB;
    --grey-300: #D1D5DB;
    --grey-500: #6B7280;
    --grey-700: #374151;
    --grey-900: #111827;
    --success: #059669;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(10,22,40,0.05);
    --shadow-md: 0 4px 12px rgba(10,22,40,0.08);
    --shadow-lg: 0 10px 40px rgba(10,22,40,0.12);
    --shadow-xl: 0 20px 60px rgba(10,22,40,0.18);
    --shadow-gold: 0 8px 32px rgba(200,169,81,0.3);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--navy); backdrop-filter: blur(12px); }
.header-top {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 8px 0;
    font-size: 13px;
    color: var(--navy);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
}
.header-top-content { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-phone { display: flex; align-items: center; gap: 6px; }
.header-phone svg { width: 14px; height: 14px; }
.header-badge { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

.header-main { padding: 14px 0; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-text { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.logo-gold { color: var(--gold); margin: 0 3px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; letter-spacing: 0.3px; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::after { width: 400px; height: 400px; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(200,169,81,0.3);
}
.btn-gold:hover {
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(200,169,81,0.6);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow-md); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--white); }
.btn-sm { padding: 12px 24px; font-size: 13px; }
.btn-lg { padding: 20px 48px; font-size: 16px; letter-spacing: 1px; }
.btn-full { display: block; width: 100%; }
.btn-pulse { animation: btnPulse 2s ease-in-out infinite; }
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(200,169,81,0.3); }
    50% { box-shadow: 0 4px 32px rgba(200,169,81,0.6); }
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
    color: var(--white);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,169,81,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content { max-width: 750px; position: relative; z-index: 1; }
.hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.5px;
}
.hero h1 span { color: var(--gold); }
.hero-subtitle {
    font-size: 14px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-subtitle::before, .hero-subtitle::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}
.hero-desc { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 620px; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,169,81,0.1);
    border: 1px solid rgba(200,169,81,0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 32px;
}
.hero-urgency .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

.trust-badges {
    display: flex;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(200,169,81,0.15);
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.trust-badge strong { color: var(--gold); font-size: 15px; }

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.proof-items {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.proof-label { font-size: 12px; color: var(--grey-500); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; font-weight: 600; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-light { background: var(--white); }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); color: var(--navy); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}
.section-navy .section-header h2 { color: var(--white); }
.section-header p { font-size: 17px; color: var(--grey-500); max-width: 650px; margin: 0 auto; line-height: 1.7; }

/* ===== BENEFIT CARDS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--gold); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold);
    box-shadow: 0 4px 16px rgba(10,22,40,0.15);
}
.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--navy);
}
.benefit-card p { font-size: 14px; color: var(--grey-500); line-height: 1.7; }

/* ===== TABLES ===== */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
thead { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); }
th { padding: 16px 20px; text-align: left; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.8px; }
td { padding: 16px 20px; border-bottom: 1px solid var(--grey-100); }
tbody tr { transition: background 0.2s; }
tbody tr:hover { background: var(--gold-glow); }
.credits-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 820px; margin: 0 auto; }
.pricing-card {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
    transform: scale(1.02);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 6px 24px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(200,169,81,0.3);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.pricing-duration { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--grey-500); margin-bottom: 8px; font-weight: 700; }
.pricing-amount { font-family: var(--font-heading); font-size: 56px; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-amount span { font-size: 18px; color: var(--grey-500); font-weight: 400; }
.pricing-features { margin: 28px 0; text-align: left; }
.pricing-features li { padding: 10px 0; font-size: 14px; color: var(--grey-700); display: flex; align-items: start; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; font-size: 16px; }
.pricing-savings {
    background: linear-gradient(135deg, #FEF3C7, #FFFBEB);
    color: #92400E;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-block;
    border: 1px solid #F59E0B;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.2s;
}
.faq-question:hover { background: var(--grey-50); color: var(--gold-dark); }
.faq-question::after { content: '+'; font-size: 28px; color: var(--gold); font-weight: 300; transition: transform 0.3s; }
.faq-item.active .faq-question { background: var(--navy); color: var(--white); }
.faq-item.active .faq-question::after { transform: rotate(45deg); color: var(--gold); }
.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s;
    font-size: 15px;
    color: var(--grey-700);
    line-height: 1.8;
}
.faq-item.active .faq-answer { max-height: 600px; padding: 0 28px 24px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}
.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--gold-glow);
    position: absolute;
    top: 12px;
    left: 24px;
    line-height: 1;
    color: rgba(200,169,81,0.15);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--grey-700); line-height: 1.8; margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--gold-dark); font-weight: 500; }

/* ===== ENTRY REQUIREMENTS ===== */
.requirements-list { max-width: 700px; margin: 0 auto; }
.requirements-list li {
    padding: 16px 0;
    font-size: 16px;
    display: flex;
    align-items: start;
    gap: 14px;
    border-bottom: 1px solid var(--grey-100);
}
.req-check { color: var(--success); font-size: 22px; flex-shrink: 0; font-weight: 700; }

/* ===== CTA SECTION ===== */
.cta-section { text-align: center; padding: 60px 0; }
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}
.cta-section p { font-size: 18px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ===== ENROL FORM ===== */
.enrol-form { max-width: 500px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--grey-700); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--grey-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s;
    background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--gold); }
.blog-card-body { padding: 28px; }
.blog-card h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 10px; color: var(--navy); line-height: 1.3; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p { font-size: 14px; color: var(--grey-500); line-height: 1.7; }
.blog-date { font-size: 11px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; font-weight: 700; }

/* ===== BLOG ARTICLE ===== */
.article-content { max-width: 780px; margin: 0 auto; padding: 48px 24px; }
.article-content h1 { font-family: var(--font-heading); font-size: 40px; color: var(--navy); margin-bottom: 16px; line-height: 1.15; letter-spacing: -0.3px; }
.article-meta { font-size: 14px; color: var(--grey-500); margin-bottom: 36px; padding-bottom: 24px; border-bottom: 2px solid var(--grey-100); }
.article-content h2 { font-family: var(--font-heading); font-size: 28px; color: var(--navy); margin: 40px 0 16px; }
.article-content h3 { font-size: 20px; color: var(--navy); margin: 32px 0 12px; font-weight: 700; }
.article-content p { margin-bottom: 20px; color: var(--grey-700); line-height: 1.8; }
.article-content ul, .article-content ol { margin: 16px 0; padding-left: 24px; }
.article-content li { margin-bottom: 10px; color: var(--grey-700); list-style: disc; line-height: 1.7; }
.article-content ol li { list-style: decimal; }
.article-content table { margin: 28px 0; }
.article-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ===== ADMIN ===== */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--navy); padding: 24px; }
.admin-sidebar h2 { color: var(--gold); font-family: var(--font-heading); font-size: 18px; margin-bottom: 24px; }
.admin-sidebar a { display: block; padding: 10px 16px; color: rgba(255,255,255,0.7); font-size: 14px; border-radius: var(--radius); margin-bottom: 4px; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(200,169,81,0.1); color: var(--gold); }
.admin-main { padding: 32px; background: var(--grey-50); }
.admin-main h1 { font-family: var(--font-heading); font-size: 28px; color: var(--navy); margin-bottom: 24px; }

.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--grey-200); }
.stat-value { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 12px; color: var(--grey-500); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.engine-status {
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.engine-status.attacking { background: #FEF3C7; color: #92400E; border: 2px solid #F59E0B; }
.engine-status.defending { background: #D1FAE5; color: #065F46; border: 2px solid #10B981; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; animation: pulse 2s infinite; }
.engine-status.attacking .status-dot { background: #F59E0B; }
.engine-status.defending .status-dot { background: #10B981; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.action-log { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--grey-200); }
.action-log h2 { font-family: var(--font-heading); font-size: 20px; color: var(--navy); margin-bottom: 16px; }
.log-entry { padding: 12px 0; border-bottom: 1px solid var(--grey-100); display: flex; gap: 12px; align-items: start; font-size: 14px; }
.log-type { padding: 3px 10px; border-radius: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; flex-shrink: 0; letter-spacing: 0.5px; background: var(--navy); color: var(--white); }
.log-type.content_published { background: var(--success); }
.log-type.meta_updated { background: #2563EB; }
.log-type.faq_added { background: #7C3AED; }
.log-type.content_refreshed { background: #D97706; }
.log-type.sitemap_ping { background: #0891B2; }
.log-type.weekly_report_sent { background: #059669; }
.log-time { color: var(--grey-500); font-size: 12px; flex-shrink: 0; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 14px 0; font-size: 13px; color: var(--grey-500); }
.breadcrumbs a { color: var(--grey-500); }
.breadcrumbs a:hover { color: var(--gold-dark); }
.breadcrumbs span { margin: 0 6px; }

/* ===== STICKY CTA ===== */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 12px 16px;
    background: var(--navy);
    border-top: 3px solid var(--gold);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero { padding: 60px 0 50px; }
    .benefits-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .trust-badges { gap: 16px; }
    .proof-items { gap: 28px; }
    .proof-number { font-size: 28px; }
    .section-header h2 { font-size: 28px; }
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .sticky-cta-mobile { display: block; }
    body { padding-bottom: 75px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-subtitle::before, .hero-subtitle::after { display: none; }
}

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.site-footer h3 { color: var(--gold); font-family: var(--font-heading); font-size: 18px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); font-size: 14px; }
.footer-col ul a:hover { color: var(--gold); }
.footer-qual { font-size: 13px; color: var(--gold); margin-top: 16px; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 13px; }
.footer-bottom a { color: var(--gold); }
.footer-accreditation { font-size: 12px; margin-top: 8px; color: rgba(255,255,255,0.3); }
