:root {
  --navy: #0d1b2a;
  --navy-mid: #162840;
  --blue: #1a3a5c;
  --orange: #f05a22;
  --orange-light: #ff7043;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #eef1f6;
  --gray: #8a97a8;
  --text: #1e2a36;
  --text-muted: #5a6a7a;
  --border: #dde3ec;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(13,27,42,0.12);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.2);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: var(--radius); cursor: pointer; transition: all 0.2s ease; border: 2px solid transparent; white-space: nowrap; letter-spacing: 0.3px; }
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,90,34,0.35); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }
.btn--white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn--white:hover { background: var(--off-white); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--lg { font-size: 17px; padding: 17px 36px; }
.btn--sm { font-size: 13px; padding: 10px 20px; }

.tag { display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); background: rgba(240,90,34,0.1); padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.05; color: var(--navy); text-transform: uppercase; letter-spacing: -0.5px; }
.section-title span { color: var(--orange); }
.section-subtitle { font-size: 17px; color: var(--text-muted); margin-top: 14px; max-width: 600px; line-height: 1.7; }

/* HEADER */
.header { position: sticky; top: 0; z-index: 100; background: var(--navy); border-bottom: 3px solid var(--orange); box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 68px; max-width: 1400px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon { width: 38px; height: 38px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.logo__icon svg { width: 20px; height: 20px; fill: white; }
.logo__text { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.1; }
.logo__text span { color: var(--orange); display: block; font-size: 11px; letter-spacing: 2px; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { font-weight: 600; color: rgba(255,255,255,0.85); padding: 8px 14px; border-radius: var(--radius); transition: all 0.15s; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.header__cta { display: flex; align-items: center; gap: 10px; }
.header__phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--orange); padding: 8px 14px; border-radius: var(--radius); border: 2px solid rgba(240,90,34,0.4); transition: all 0.2s; }
.header__phone:hover { background: rgba(240,90,34,0.1); border-color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; display: block; transition: all 0.2s; }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 200; flex-direction: column; padding: 24px; }
.mobile-nav.open { display: flex; }
.mobile-nav__close { align-self: flex-end; background: none; border: none; color: white; font-size: 28px; cursor: pointer; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.mobile-nav__links a { color: rgba(255,255,255,0.85); font-size: 20px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); text-transform: uppercase; letter-spacing: 1px; }
.mobile-nav__cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #1e3d5e 100%); position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center; }
.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.025'%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::after { content: ''; position: absolute; right: -100px; top: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(240,90,34,0.12) 0%, transparent 70%); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.hero__eyebrow { font-weight: 700; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero__eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--orange); }
.hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(44px, 6vw, 80px); line-height: 0.95; color: var(--white); text-transform: uppercase; letter-spacing: -1px; margin-bottom: 22px; }
.hero h1 span { color: var(--orange); display: block; }
.hero__desc { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; }
.hero__trust-item::before { content: '✓'; width: 18px; height: 18px; background: rgba(240,90,34,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--orange); flex-shrink: 0; }
.hero__form-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }

/* INNER PAGE HERO (service/area/blog pages) */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1e3d5e 100%); padding: 60px 0; position: relative; overflow: hidden; }
.page-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-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-hero__inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px, 5vw, 62px); line-height: 1; color: var(--white); text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 18px; }
.page-hero__desc { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 680px; line-height: 1.7; margin-bottom: 28px; }
.page-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* TRUST BAR */
.trust-bar { background: var(--orange); padding: 14px 0; }
.trust-bar__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; }
.trust-bar__item { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; color: var(--white); letter-spacing: 0.5px; text-transform: uppercase; padding: 4px 14px; }
.trust-bar__divider { color: rgba(255,255,255,0.5); font-size: 18px; }

/* CONTENT SECTIONS */
.content-section { padding: 72px 0; }
.content-section--alt { background: var(--off-white); }
.content-section--dark { background: var(--navy); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.content-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* SIGNS / LISTS */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); line-height: 1.5; }
.check-list li::before { content: '✓'; width: 22px; height: 22px; background: rgba(240,90,34,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--orange); flex-shrink: 0; margin-top: 2px; font-weight: 800; }

/* PROCESS STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 48px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(to right, var(--orange) 0, var(--orange) 6px, transparent 6px, transparent 14px); }
.step { text-align: center; padding: 0 16px; }
.step__circle { width: 56px; height: 56px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; position: relative; z-index: 1; border: 3px solid var(--off-white); }
.step__circle span { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--orange); }
.step__title { font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 6px; }
.step__desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 40px; }
.service-card { background: var(--white); border: 2px solid var(--border); border-radius: 10px; padding: 24px 20px; display: flex; flex-direction: column; gap: 10px; transition: all 0.2s; }
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card__icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.service-card__icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 1.8; }
.service-card__name { font-weight: 700; font-size: 14px; color: var(--navy); line-height: 1.3; }
.service-card__arrow { font-size: 12px; color: var(--orange); font-weight: 700; margin-top: auto; }

/* WHY CARDS */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.why-card { background: var(--white); border-radius: 12px; padding: 32px 26px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-top: 3px solid var(--orange); }
.why-card__num { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: rgba(240,90,34,0.12); line-height: 1; margin-bottom: 8px; }
.why-card__title { font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.why-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.review-card { background: var(--off-white); border-radius: 12px; padding: 28px; border: 1px solid var(--border); }
.review-stars { color: #f5a623; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--orange); }
.review-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.review-location { font-size: 12px; color: var(--text-muted); }

/* AREAS */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-top: 40px; }
.area-chip { display: flex; align-items: center; gap: 8px; background: var(--white); border: 2px solid var(--border); border-radius: 8px; padding: 12px 16px; font-weight: 600; font-size: 13px; color: var(--navy); transition: all 0.15s; }
.area-chip:hover { border-color: var(--orange); color: var(--orange); background: rgba(240,90,34,0.04); }
.area-chip::before { content: '📍'; font-size: 12px; }

/* RELATED SERVICES */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 28px; }
.related-card { display: flex; align-items: center; gap: 12px; background: var(--white); border: 2px solid var(--border); border-radius: 8px; padding: 16px 18px; font-weight: 600; font-size: 14px; color: var(--navy); transition: all 0.15s; }
.related-card:hover { border-color: var(--orange); color: var(--orange); }
.related-card::before { content: '→'; color: var(--orange); font-size: 16px; font-weight: 800; }

/* FAQ */
.faq-list { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--off-white); border-radius: 10px; border: 2px solid var(--border); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--navy); padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-q:hover { color: var(--orange); }
.faq-q__arrow { width: 24px; height: 24px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
.faq-q__arrow svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 2.5; transition: transform 0.2s; }
.faq-item.open .faq-q__arrow { background: var(--orange); }
.faq-item.open .faq-q__arrow svg { transform: rotate(180deg); }
.faq-a { font-size: 15px; color: var(--text-muted); line-height: 1.7; padding: 0 24px 22px; display: none; }
.faq-item.open .faq-a { display: block; }

/* NEAR ME / CTA BAND */
.nearme { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 60px 0; }
.nearme__inner { max-width: 800px; margin: 0 auto; text-align: center; padding: 0 24px; }
.nearme h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--white); text-transform: uppercase; margin-bottom: 16px; letter-spacing: -0.5px; }
.nearme h2 span { color: var(--orange); }
.nearme p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 28px; line-height: 1.7; }
.nearme__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FINAL CTA */
.final-cta { background: var(--orange); padding: 80px 0; text-align: center; }
.final-cta h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px); font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.final-cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* SPOTLIGHTS */
.spotlights { background: var(--navy); }
.spotlights__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2px; }
.spotlight { padding: 48px 40px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
.spotlight__num { font-family: var(--font-display); font-size: 100px; font-weight: 900; color: rgba(255,255,255,0.04); position: absolute; right: 20px; top: 10px; line-height: 1; letter-spacing: -5px; pointer-events: none; }
.spotlight__icon { width: 56px; height: 56px; background: var(--orange); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.spotlight__icon svg { width: 28px; height: 28px; stroke: white; fill: none; stroke-width: 1.8; }
.spotlight__title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 12px; line-height: 1.1; }
.spotlight__desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; }
.spotlight__list { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.spotlight__list li { font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 10px; }
.spotlight__list li::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.spotlight a { color: rgba(255,255,255,0.8); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.spotlight a:hover { color: var(--orange); }

/* PROBLEMS */
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 40px; }
.problem-card { background: var(--white); border-radius: 10px; padding: 22px; border: 2px solid var(--border); transition: all 0.2s; display: flex; align-items: flex-start; gap: 14px; }
.problem-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.problem-icon { width: 40px; height: 40px; background: rgba(240,90,34,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.problem-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; }
.problem-card__title { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.problem-card__desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* PRICING BOX */
.pricing-box { background: var(--navy); border-radius: 12px; padding: 36px; color: rgba(255,255,255,0.85); margin-top: 32px; }
.pricing-box h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 14px; }
.pricing-box p { font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.pricing-box__points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-box__points li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.pricing-box__points li::before { content: '→'; color: var(--orange); font-weight: 800; }

/* INLINE CONTENT */
.prose h2 { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin: 40px 0 16px; }
.prose h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.prose p { font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 18px; }
.prose ul { margin: 16px 0 18px 0; display: flex; flex-direction: column; gap: 10px; list-style: none; }
.prose ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); line-height: 1.5; }
.prose ul li::before { content: '•'; color: var(--orange); font-size: 20px; line-height: 1; flex-shrink: 0; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; margin-top: 48px; }
.blog-card { background: var(--white); border: 2px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.2s; }
.blog-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card__thumb { background: linear-gradient(135deg, var(--navy), var(--blue)); height: 160px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card__body { padding: 24px; }
.blog-card__tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: block; }
.blog-card__title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--navy); text-transform: uppercase; line-height: 1.15; margin-bottom: 12px; }
.blog-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.blog-card__link { font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }

/* LEADSMART FORM SECTION */
.form-section { background: var(--off-white); padding: 72px 0; }
.form-section__inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 24px; }
.form-section__inner iframe { margin: 32px auto 0; border-radius: 12px; box-shadow: var(--shadow-lg); display: block; }

/* FOOTER */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer__brand p { font-size: 14px; line-height: 1.7; margin: 14px 0 20px; }
.footer__nap { font-size: 13px; line-height: 2; }
.footer__nap a { color: var(--orange); }
.footer__col-title { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer__links a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 10px; }

/* MOBILE STICKY */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); padding: 12px 16px; z-index: 200; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); gap: 10px; }
.mobile-cta a { flex: 1; text-align: center; font-weight: 700; font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__form-card { max-width: 100%; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav, .header__cta .btn { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 68px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .spotlights__grid { grid-template-columns: 1fr; }
  .trust-bar__divider { display: none; }
  .form-section__inner iframe { width: 100%; height: 600px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 34px; }
}
