/* MRP Business Services — Design System */
:root {
  --navy: #1a3557;
  --navy-dark: #0f2139;
  --navy-light: #244a78;
  --gold: #c8a04e;
  --gold-light: #e2bc72;
  --gold-pale: #fdf6e7;
  --text: #1a2333;
  --text-muted: #5a6b82;
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --bg-dark: #0d1b2e;
  --border: #dce4ef;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 4px rgba(26,53,87,.08);
  --shadow: 0 4px 20px rgba(26,53,87,.12);
  --shadow-lg: 0 12px 48px rgba(26,53,87,.18);
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  --container: 90%;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Container */
.container { width: var(--container); max-width: var(--container); margin: 0 auto; padding: 0; }

/* ─── TOPBAR ─── */
.topbar { background: var(--navy-dark); color: rgba(255,255,255,.8); font-size: .8rem; padding: 7px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--gold-light); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a:hover { color: var(--white); }

/* ─── HEADER ─── */
header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0; width: var(--container); max-width: var(--container); margin: 0 auto; height: 72px; gap: 32px; }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.logo-text .brand { font-family: var(--font-heading); font-size: 1.2rem; font-weight: bold; color: var(--navy); line-height: 1.1; letter-spacing: -.3px; }
.logo-text .tagline { font-size: .68rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; }

nav { display: flex; align-items: center; gap: 4px; }
nav a { font-size: .88rem; font-weight: 500; color: var(--text); padding: 8px 14px; border-radius: 6px; transition: var(--transition); white-space: nowrap; }
nav a:hover, nav a.active { color: var(--navy); background: var(--bg-alt); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7em; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 240px; padding: 8px; z-index: 200; }
.nav-dropdown:hover .dropdown-menu { display: grid; grid-template-columns: 1fr; gap: 2px; }
.dropdown-menu a { font-size: .82rem; color: var(--text-muted); padding: 8px 14px; border-radius: 6px; display: block; }
.dropdown-menu a:hover { background: var(--bg-alt); color: var(--navy); }

.header-cta { background: var(--gold); color: var(--navy-dark) !important; font-weight: 700 !important; border-radius: 8px !important; padding: 10px 20px !important; font-size: .85rem !important; transition: var(--transition); white-space: nowrap; flex-shrink: 0; }
.header-cta:hover { background: var(--gold-light) !important; box-shadow: var(--shadow); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ─── HERO ─── */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%); color: var(--white); padding: 80px 0 60px; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,160,78,.15); border: 1px solid rgba(200,160,78,.4); color: var(--gold-light); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 40px; margin-bottom: 20px; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: bold; line-height: 1.2; margin-bottom: 20px; }
.hero h1 span { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy-dark); font-weight: 700; padding: 14px 28px; border-radius: 8px; font-size: .95rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { border: 2px solid rgba(255,255,255,.3); color: var(--white); font-weight: 600; padding: 12px 26px; border-radius: 8px; font-size: .95rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.15); }
.stat-item .num { font-family: var(--font-heading); font-size: 2rem; font-weight: bold; color: var(--gold-light); line-height: 1; }
.stat-item .label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; text-transform: uppercase; letter-spacing: .8px; }

/* ─── IMAGE PLACEHOLDER ─── */
.img-placeholder { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,.7); text-align: center; padding: 40px 24px; position: relative; }
.img-placeholder .ph-icon { font-size: 3rem; margin-bottom: 12px; opacity: .6; }
.img-placeholder .ph-label { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gold-light); margin-bottom: 6px; }
.img-placeholder .ph-desc { font-size: .78rem; opacity: .6; max-width: 200px; }
/* Real photo fills the slot and hides the placeholder; if it 404s the img removes itself and the placeholder shows through. */
.img-placeholder .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.img-placeholder-light { background: var(--bg-alt); border: 2px dashed var(--border); color: var(--text-muted); }
.img-placeholder-light .ph-label { color: var(--navy); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--gold-pale); border-top: 1px solid rgba(200,160,78,.2); border-bottom: 1px solid rgba(200,160,78,.2); padding: 18px 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 600; color: var(--navy); }
.trust-item .icon { font-size: 1.2rem; }

/* ─── SECTION STYLES ─── */
section { padding: 80px 0; }
.section-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); font-weight: bold; line-height: 1.25; margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy-dark); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,.7); }

/* ─── CARDS ─── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow); border-color: rgba(200,160,78,.3); transform: translateY(-3px); }
.card-icon { width: 52px; height: 52px; background: var(--gold-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: .83rem; font-weight: 600; color: var(--gold); margin-top: 14px; }
.card-link:hover { color: var(--navy); }

/* ─── SERVICE GRID ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow); border-color: var(--gold); transform: translateY(-3px); }
.service-card .icon { width: 48px; height: 48px; background: var(--navy); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.service-card p { font-size: .83rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.service-card a { font-size: .82rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 5px; }
.service-card a:hover { color: var(--navy); }

/* ─── PROCESS STEPS ─── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.step { text-align: center; }
.step-num { width: 48px; height: 48px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.2rem; font-weight: bold; color: var(--navy-dark); margin: 0 auto 16px; }
.step h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: .82rem; color: var(--text-muted); }

/* ─── CTA BAND ─── */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); padding: 64px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { font-size: 1rem; padding: 16px 36px; }

/* ─── TESTIMONIALS ─── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.testi .stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testi p { font-size: .88rem; color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-size: .9rem; }
.testi-info .name { font-weight: 700; font-size: .88rem; color: var(--navy); }
.testi-info .role { font-size: .78rem; color: var(--text-muted); }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
details { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
details summary { padding: 18px 20px; font-weight: 600; font-size: .93rem; color: var(--navy); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
details summary::after { content: '+'; font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
details[open] summary::after { content: '−'; }
details[open] { border-color: var(--gold); }
.faq-body { padding: 0 20px 20px; font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ─── PAGE HERO (inner pages) ─── */
/* Hero band on every inner page. The photo sits behind a navy gradient overlay so headline text
   stays readable; the URL is relative to this stylesheet, so it resolves from any page depth.
   If images/page-hero.jpg is absent the gradient alone renders, exactly as before. */
.page-hero { background: linear-gradient(135deg, rgba(15,33,57,.92) 0%, rgba(26,53,87,.82) 100%), url(../images/page-hero.jpg) center/cover no-repeat var(--navy-dark); color: var(--white); padding: 60px 0 52px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { opacity: .4; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; margin-bottom: 14px; }
.page-hero .lead { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 620px; line-height: 1.7; }
.page-hero-meta { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.page-hero-meta span { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.7); }

/* ─── CONTENT BODY ─── */
.content-body { padding: 64px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.prose h2 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--navy); margin: 40px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold-pale); }
.prose h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }
.prose ul, .prose ol { margin: 14px 0 20px 20px; color: var(--text); }
.prose li { margin-bottom: 8px; line-height: 1.7; font-size: .93rem; }
.prose strong { color: var(--navy); }
.prose a { color: var(--gold); font-weight: 600; }
.prose a:hover { color: var(--navy); }

/* ─── SIDEBAR ─── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.sidebar-card h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.cta-sidebar { background: var(--navy); color: var(--white); text-align: center; }
.cta-sidebar h4 { color: var(--white); border-bottom-color: rgba(255,255,255,.15); }
.cta-sidebar p { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 18px; line-height: 1.6; }
.cta-sidebar .btn-primary { width: 100%; justify-content: center; font-size: .88rem; padding: 12px; }
.service-list-sidebar a { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--bg-alt); }
.service-list-sidebar a:hover { color: var(--navy); }
.service-list-sidebar a:last-child { border-bottom: none; }

/* ─── CHECKLIST ─── */
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text); line-height: 1.6; }
.checklist li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box { background: var(--gold-pale); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0; }
.highlight-box h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.highlight-box p, .highlight-box li { font-size: .88rem; color: var(--text); }

/* ─── COMPARISON TABLE ─── */
.compare-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .88rem; }
.compare-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-size: .82rem; }
.compare-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-alt); }
.check { color: #22c55e; font-weight: 700; }
.cross { color: #ef4444; }

/* ─── CONTACT ─── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: .88rem; font-family: var(--font); color: var(--text); background: var(--bg); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,160,78,.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── FOOTER ─── */
footer { background: var(--bg-dark); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: .83rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 280px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--transition); }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: block; font-size: .83rem; color: rgba(255,255,255,.6); margin-bottom: 8px; transition: var(--transition); }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; font-size: .83rem; margin-bottom: 12px; color: rgba(255,255,255,.6); }
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: .78rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; background: #25d366; color: var(--white); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 24px rgba(37,211,102,.4); transition: var(--transition); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.5); }

/* ─── UTILITIES ─── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.badge { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-pale); color: var(--navy); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 40px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow-lg); z-index: 100; }
  .hamburger { display: block; }
  .header-cta { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .trust-bar .container { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
}
