
:root {
  --navy:   #0D2B52;
  --navy2:  #1B4886;
  --navy3:  #2563B4;
  --gold:   #4A8CB5;
  --gold2:  #6BAED4;
  --white:  #FFFFFF;
  --offwhite: #F0F4FA;
  --paper:  #F8F9FC;
  --border: rgba(13,43,82,0.10);
  --text:   #0D1B2A;
  --muted:  #4D6080;
  --light:  #8A9BB8;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--text); overflow-x: hidden; }

/* ── NAV ─────────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-emblem { width: 36px; height: 36px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.nav-logo-emblem span { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--gold2); }
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-main { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--navy); letter-spacing: 0.01em; line-height: 1; }
.nav-logo-sub { font-size: 9.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; letter-spacing: 0.01em; transition: color .2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { background: var(--navy) !important; color: #fff !important; padding: 10px 22px; border-radius: 4px; font-size: 13px; font-weight: 500; letter-spacing: 0.03em; transition: background .2s !important; }
.nav-cta:hover { background: var(--navy2) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px; z-index: 99; flex-direction: column; gap: 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--text); text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--border); }

/* ── HERO ────────────────────────────────────────────── */
.hero-section { padding-top: 70px; background: var(--navy); position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; top: 0; right: 0; width: 600px; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(37,99,180,0.35) 0%, transparent 70%); pointer-events: none; }
.hero-section::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.hero-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 40px 110px; display: grid; grid-template-columns: 1fr 500px; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold2); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold2); }
.hero-title { font-family: var(--serif); font-size: clamp(42px, 5vw, 66px); font-weight: 600; line-height: 1.08; color: #fff; letter-spacing: -0.01em; margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--gold2); }
.hero-desc { font-size: 16px; font-weight: 300; line-height: 1.78; color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 520px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.stars { color: var(--gold2); font-size: 18px; letter-spacing: 2px; }
.rating-num { font-family: var(--serif); font-size: 22px; font-weight: 600; color: #fff; }
.rating-count { font-size: 13px; color: rgba(255,255,255,0.5); }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: #fff; padding: 14px 30px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: 0.04em; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); padding: 13px 26px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: 0.04em; transition: all .2s; }
.btn-outline-light:hover { border-color: rgba(255,255,255,0.65); color: #fff; background: rgba(255,255,255,0.07); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); padding: 13px 28px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: 0.04em; transition: all .2s; }
.btn-outline:hover { background: var(--navy); color: #fff; }

.hero-illustration { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-illustration svg { width: 100%; max-width: 480px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35)); border-radius: 20px; opacity: 0; transition: opacity .6s ease; }
.hero-illustration svg.loaded { opacity: 1; }

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-wrap { background: var(--gold); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee-item { font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); padding: 0 32px; display: flex; align-items: center; gap: 12px; }
.marquee-item::after { content: '◆'; color: rgba(255,255,255,0.45); font-size: 8px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTIONS ────────────────────────────────────────── */
section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 600; color: var(--navy); line-height: 1.12; letter-spacing: -0.01em; }
.section-title em { font-style: italic; color: var(--gold); }

/* ── SERVICES ────────────────────────────────────────── */
.services { background: var(--white); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.services-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.72; padding-top: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--white); padding: 34px 30px; transition: all .3s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 24px 60px rgba(13,43,82,0.18); z-index: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .sc-icon { background: rgba(224,168,58,0.15); color: var(--gold2); }
.service-card:hover .sc-title { color: #fff; }
.service-card:hover .sc-desc { color: rgba(255,255,255,0.62); }
.service-card:hover .sc-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); }
.sc-icon { width: 46px; height: 46px; border-radius: 8px; background: rgba(13,43,82,0.07); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all .3s; color: var(--navy2); }
.sc-icon svg { width: 21px; height: 21px; }
.sc-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.2; transition: color .3s; }
.sc-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; margin-bottom: 14px; transition: color .3s; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.sc-tag { font-size: 11px; font-weight: 500; background: var(--offwhite); color: var(--muted); padding: 3px 9px; border-radius: 20px; letter-spacing: 0.02em; transition: all .3s; }

/* ── WHY US ──────────────────────────────────────────── */
.why { background: var(--navy); }
.why .section-label { color: var(--gold2); }
.why .section-label::before { background: var(--gold2); }
.why .section-title { color: #fff; }
.why-layout { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 52px; }
.why-item { border-top: 1px solid rgba(255,255,255,0.10); padding: 28px 24px 28px 0; }
.why-item:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.08); }
.why-num { font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--gold2); line-height: 1; margin-bottom: 12px; }
.why-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.why-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.52); line-height: 1.65; }
.why-illustration { display: flex; align-items: center; justify-content: flex-end; }
.why-illustration svg { width: 100%; max-width: 400px; border-radius: 16px; opacity: 0; transition: opacity .6s ease; }
.why-illustration svg.loaded { opacity: 1; }

/* ── COMPLIANCE ──────────────────────────────────────── */
.compliance { background: var(--paper); }
.compliance-inner { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }
.compliance-sticky { position: sticky; top: 100px; }
.compliance-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.72; margin-top: 20px; margin-bottom: 28px; }
.compliance-list { display: flex; flex-direction: column; gap: 4px; }
.compliance-item { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.comp-header { padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: background .2s; }
.comp-header:hover { background: rgba(13,43,82,0.03); }
.comp-header.active { background: var(--navy); }
.comp-title { font-size: 13.5px; font-weight: 500; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.comp-header.active .comp-title { color: #fff; }
.comp-badge { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(200,146,42,0.12); color: var(--gold); padding: 3px 8px; border-radius: 4px; }
.comp-header.active .comp-badge { background: rgba(200,146,42,0.22); color: var(--gold2); }
.comp-arrow { width: 14px; height: 14px; color: var(--light); transition: transform .25s; flex-shrink: 0; }
.comp-header.active .comp-arrow { transform: rotate(180deg); color: rgba(255,255,255,0.5); }
.comp-body { display: none; padding: 0 18px 14px; background: rgba(13,43,82,0.015); }
.comp-header.active + .comp-body { display: block; }
.comp-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text); }
.comp-row:last-child { border-bottom: none; }
.comp-row::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── PROCESS ─────────────────────────────────────────── */
.process { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 30px; left: 10%; right: 10%; height: 1px; background: repeating-linear-gradient(90deg, var(--navy2) 0, var(--navy2) 6px, transparent 6px, transparent 14px); opacity: 0.25; }
.step { text-align: center; padding: 0 14px; position: relative; }
.step-num { width: 60px; height: 60px; border-radius: 50%; background: var(--offwhite); border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); position: relative; z-index: 1; transition: all .3s; }
.step:hover .step-num { background: var(--navy); color: #fff; }
.step-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.step-desc { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials { background: var(--paper); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 30px 26px; position: relative; }
.testi-card::before { content: '"'; font-family: var(--serif); font-size: 80px; color: var(--navy); opacity: 0.07; position: absolute; top: 14px; right: 20px; line-height: 1; }
.testi-quote { font-family: var(--serif); font-size: 52px; color: var(--gold2); opacity: .25; line-height: .85; margin-bottom: 14px; }
.testi-text { font-family: var(--serif); font-size: 15px; font-weight: 400; font-style: italic; color: var(--muted); line-height: 1.72; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; font-weight: 600; color: var(--gold2); flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.testi-role { font-size: 11px; color: var(--light); margin-top: 2px; }
.testi-stars { font-size: 12px; color: var(--gold); margin-top: 2px; }

/* ── MAP ─────────────────────────────────────────────── */
.map-section { background: var(--offwhite); padding: 0; }
.map-container { display: grid; grid-template-columns: 1fr 380px; min-height: 460px; }
.map-frame { background: #dce4ee; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.map-info { background: var(--navy); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.map-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(200,146,42,0.85); margin-bottom: 20px; }
.map-name { font-family: var(--serif); font-size: 26px; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 28px; }
.map-detail { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.map-detail-icon { width: 16px; height: 16px; color: var(--gold2); flex-shrink: 0; margin-top: 2px; }
.map-detail-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.55; }
.map-detail-text strong { color: #fff; font-weight: 500; }
.map-divider { height: 1px; background: rgba(255,255,255,0.10); margin: 24px 0; }
.map-rating-box { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,0.06); border-radius: 8px; }
.mrb-num { font-family: var(--serif); font-size: 30px; font-weight: 600; color: #fff; line-height: 1; }
.mrb-right { display: flex; flex-direction: column; gap: 3px; }
.mrb-stars { color: var(--gold2); font-size: 15px; letter-spacing: 2px; }
.mrb-count { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.faq-sticky { position: sticky; top: 100px; }
.faq-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.72; margin-top: 20px; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.faq-header { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: background .2s; gap: 16px; }
.faq-header:hover { background: rgba(13,43,82,0.03); }
.faq-header.active { background: var(--navy); }
.faq-question { font-size: 14px; font-weight: 500; color: var(--navy); line-height: 1.4; }
.faq-header.active .faq-question { color: #fff; }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(13,43,82,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--muted); transition: all .25s; line-height: 1; }
.faq-header.active .faq-icon { border-color: rgba(255,255,255,0.3); color: #fff; transform: rotate(45deg); }
.faq-body { display: none; padding: 0 20px 16px; background: rgba(13,43,82,0.015); }
.faq-header.active + .faq-body { display: block; }
.faq-answer { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.72; padding-top: 4px; }
.faq-answer strong { font-weight: 600; color: var(--navy); }

/* ── BLOG TEASER ─────────────────────────────────────── */
.blog-teaser { background: var(--white); }
.blog-teaser-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.blog-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all .3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(13,43,82,0.12); border-color: rgba(13,43,82,0.2); }
.blog-card-thumb { height: 120px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 22px; font-weight: 600; color: rgba(255,255,255,0.15); overflow: hidden; }
.blog-card-body { padding: 20px; }
.blog-card-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(200,146,42,0.1); padding: 3px 9px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.blog-card-title { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.25; margin-bottom: 8px; }
.blog-card-title a { text-decoration: none; color: inherit; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.blog-card-link { font-size: 12px; font-weight: 500; color: var(--gold); text-decoration: none; }
.blog-card-link:hover { color: var(--navy); }

/* ── CTA ─────────────────────────────────────────────── */
.cta-section { background: var(--offwhite); padding: 100px 40px; }
.cta-box { background: var(--navy); border-radius: 16px; padding: 68px 76px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -100px; right: 320px; width: 350px; height: 350px; border-radius: 50%; background: rgba(37,99,180,0.25); pointer-events: none; }
.cta-box::after { content: ''; position: absolute; bottom: -80px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(200,146,42,0.06); pointer-events: none; }
.cta-title { font-family: var(--serif); font-size: 38px; font-weight: 600; color: #fff; line-height: 1.12; margin-bottom: 14px; }
.cta-title em { font-style: italic; color: var(--gold2); }
.cta-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.58); line-height: 1.62; }
.cta-contact-row { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 28px; }
.cta-contact-label { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(200,146,42,0.8); margin-bottom: 5px; }
.cta-contact-value { font-family: var(--serif); font-size: 17px; color: #fff; }
.cta-form { background: var(--white); border-radius: 10px; padding: 30px 26px; min-width: 310px; position: relative; z-index: 1; }
.cta-form-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 18px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.form-group { margin-bottom: 13px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 5px; padding: 9px 12px; font-family: var(--sans); font-size: 13px; color: var(--text); background: var(--offwhite); outline: none; transition: border .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: #fff; }
.form-group textarea { resize: vertical; min-height: 72px; }
.form-submit { width: 100%; background: var(--navy); color: #fff; border: none; border-radius: 5px; padding: 12px; font-family: var(--sans); font-size: 14px; font-weight: 500; cursor: pointer; letter-spacing: 0.04em; transition: background .2s; }
.form-submit:hover { background: var(--navy2); }
.form-success { display: none; text-align: center; padding: 16px; }
.form-success-check { width: 48px; height: 48px; border-radius: 50%; background: rgba(13,43,82,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--navy); font-size: 20px; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: #080F1C; padding: 70px 40px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand-name { font-family: var(--serif); font-size: 21px; font-weight: 600; color: #fff; }
.footer-brand-sub { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 4px; margin-bottom: 14px; }
.footer-brand-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.65; }
.footer-rating { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.footer-rating-stars { color: var(--gold2); font-size: 14px; }
.footer-rating-text { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold2); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-icon { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ── ANIMATIONS ──────────────────────────────────────── */
.js-ready .fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.visible { opacity: 1; }
.delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; } .delay-3 { transition-delay: .24s; } .delay-4 { transition-delay: .32s; } .delay-5 { transition-delay: .40s; }
body { animation: pageFadeIn .25s ease forwards; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── TABLET (≤1024px) ────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-illustration { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; }
  .why-illustration { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-inner { grid-template-columns: 1fr; gap: 40px; }
  .compliance-sticky { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky { position: static; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { grid-template-columns: 1fr; padding: 50px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .map-container { grid-template-columns: 1fr; }
  .map-frame { min-height: 320px; }
  .blog-teaser-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── MOBILE (≤768px) ─────────────────────────────────── */
@media (max-width: 768px) {
  /* Global */
  section { padding: 56px 20px; }
  .nav-inner { padding: 0 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-wrap { padding: 48px 20px 80px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 14px; }
  .hero-title { font-size: clamp(32px, 8.5vw, 46px); margin-bottom: 14px; line-height: 1.1; }
  .hero-desc { font-size: 15px; margin-bottom: 22px; }
  .rating-row { margin-bottom: 22px; }
  .rating-num { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary { text-align: center; justify-content: center; padding: 15px 20px; font-size: 15px; }
  .btn-outline-light { text-align: center; justify-content: center; padding: 14px 20px; font-size: 15px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }
  .sc-title { font-size: 18px; }
  .sc-desc { font-size: 13px; }

  /* About / Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 20px 0; }
  .why-item:nth-child(even) { padding-left: 0; border-left: none; }
  .why-num { font-size: 30px; }
  .why-title { font-size: 14px; }
  .why-desc { font-size: 13px; }
  /* About bio paragraphs on mobile */
  .why-layout p { font-size: 14px !important; max-width: 100% !important; }

  /* Compliance */
  .compliance-list { gap: 4px; }
  .comp-header { padding: 14px 16px; }
  .comp-title { font-size: 13px; gap: 7px; }
  .comp-badge { font-size: 9px; }
  .comp-row { font-size: 12.5px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step-num { width: 48px; height: 48px; font-size: 19px; margin-bottom: 14px; }
  .step-title { font-size: 12px; }
  .step-desc { font-size: 11.5px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 22px 18px; }
  .testi-text { font-size: 14px; line-height: 1.65; }

  /* Map */
  .map-frame { min-height: 240px; }
  .map-info { padding: 32px 20px; }
  .map-name { font-size: 20px; margin-bottom: 18px; }
  .map-detail-text { font-size: 13px; }

  /* FAQ */
  .faq-list { gap: 4px; }
  .faq-header { padding: 14px 16px; }
  .faq-question { font-size: 13.5px; }
  .faq-answer { font-size: 13px; }

  /* Blog teaser */
  .blog-teaser-grid { grid-template-columns: 1fr !important; }
  .blog-teaser-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .blog-card-title { font-size: 16px; }

  /* CTA / Contact */
  .cta-section { padding: 56px 20px; }
  .cta-box { padding: 30px 20px; gap: 28px; }
  .cta-title { font-size: clamp(22px, 6vw, 30px); }
  .cta-desc { font-size: 14px; }
  .cta-contact-row { flex-direction: column; gap: 14px; }
  .cta-form { min-width: unset; padding: 22px 18px; }
  .cta-form-title { font-size: 14px; }
  .form-group label { font-size: 10px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; padding: 11px 12px; }
  .form-submit { padding: 14px; font-size: 15px; }

  /* Footer */
  footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-name { font-size: 19px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── SMALL MOBILE (≤480px) ───────────────────────────── */
@media (max-width: 480px) {
  section { padding: 48px 16px; }
  .nav-inner { padding: 0 14px; }
  .hero-wrap { padding: 40px 16px 72px; }
  .hero-title { font-size: clamp(28px, 8vw, 38px); }
  .hero-eyebrow::before { display: none; }
  .cta-section { padding: 48px 16px; }
  .cta-box { padding: 24px 16px; }
  footer { padding: 40px 16px 20px; }
  .map-info { padding: 24px 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .step { display: flex; align-items: flex-start; gap: 14px; text-align: left; }
  .step-num { flex-shrink: 0; margin: 0; width: 44px; height: 44px; font-size: 18px; }
  .step-title { font-size: 13px; }
  .testi-card { padding: 20px 16px; }
  .comp-title svg { display: none; }
  .mrb-num { font-size: 26px; }
}
