/* =============================================
   PULSE CPA — Shared Stylesheet
   styles.css
   ============================================= */

:root {
  --navy:  #002077;
  --sky:   #9CD5FF;
  --cream: #FFFFF9;
  --gold:  #D9AF4E;
  --gray:  #f4f6fb;
  --text:  #1a1f35;
  --muted: #5a6070;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--cream); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,32,119,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(156,213,255,0.15);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.logo-wrap {
  display: flex; flex-direction: column; align-items: flex-start;
  cursor: pointer; flex-shrink: 0; text-decoration: none;
}
.logo-row { display: flex; align-items: flex-end; gap: 6px; }
.logo-wordmark {
  font-family: 'DM Sans', sans-serif; font-weight: 800; font-size: 24px;
  color: #fff; letter-spacing: -0.5px; line-height: 1; padding-bottom: 2px;
}
.logo-sub {
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 4.5px;
  color: rgba(255,255,255,0.75); letter-spacing: 1.6px;
  white-space: nowrap; margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 13.5px; font-weight: 500; padding: 8px 12px;
  border-radius: 8px; transition: all .2s; cursor: pointer; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(156,213,255,0.15); }
.nav-cta {
  background: var(--gold) !important; color: #fff !important;
  font-weight: 700 !important; padding: 10px 20px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: #c49a3a !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; flex-shrink: 0;
}
.hamburger span {
  width: 24px; height: 2px; background: #fff;
  border-radius: 2px; transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: 72px; min-height: 100vh; }

/* ── HERO (home) ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #001560 50%, #001040 100%);
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .18;
}
.hero-content {
  position: relative; max-width: 1280px; margin: 0 auto;
  padding: 80px 24px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%;
}
.hero-text h1 {
  font-size: clamp(36px,4.5vw,64px); font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 24px;
}
.hero-text h1 span { color: var(--sky); }
.hero-text p {
  font-size: 17px; color: rgba(255,255,255,.75);
  line-height: 1.7; margin-bottom: 40px; max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: #fff; font-weight: 700;
  font-size: 15px; padding: 15px 30px; border-radius: 10px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .2s; display: inline-flex;
  align-items: center; justify-content: center;
}
.btn-gold:hover {
  background: #c49a3a; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,175,78,.4);
}
.btn-outline {
  background: transparent; color: #fff; font-weight: 600;
  font-size: 15px; padding: 15px 30px; border-radius: 10px;
  border: 2px solid rgba(255,255,255,.3); cursor: pointer;
  transition: all .2s; display: inline-flex;
  align-items: center; justify-content: center;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(156,213,255,.2);
  border-radius: 20px; padding: 36px; backdrop-filter: blur(10px);
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat {
  text-align: center; padding: 20px 12px;
  background: rgba(255,255,255,.05); border-radius: 12px;
  border: 1px solid rgba(156,213,255,.1);
}
.stat-num { font-size: 38px; font-weight: 800; color: var(--sky); display: block; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }
.stars-row { display: flex; justify-content: center; gap: 3px; margin-top: 8px; }
.stars-row span { color: var(--gold); font-size: 16px; }

/* ── SHARED SECTION STYLES ── */
section { padding: 80px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: rgba(0,32,119,.1);
  color: var(--navy); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 16px;
}
.section-tag.light { background: rgba(156,213,255,.2); color: var(--sky); }
h2.section-title {
  font-size: clamp(26px,3.5vw,44px); font-weight: 800;
  line-height: 1.2; margin-bottom: 20px;
}
h2.section-title.white { color: #fff; }
p.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 600px; }
p.section-sub.white { color: rgba(255,255,255,.75); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.bg-gray { background: var(--gray); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: rgba(0,32,119,.04);
  border-top: 1px solid #e8ecf5; border-bottom: 1px solid #e8ecf5;
  padding: 24px;
}
.trust-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.trust-item {
  font-size: 14px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── PHOTO BANNERS ── */
.photo-banner { width: 100%; height: 420px; overflow: hidden; }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-full { width: 100%; height: 360px; overflow: hidden; }
.img-full img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-rounded { width: 100%; border-radius: 20px; overflow: hidden; height: 400px; }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── SPLIT LAYOUT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* ── WHY CARDS ── */
.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; margin-top: 48px;
}
.why-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid #e8ecf5; transition: all .3s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,32,119,.1);
  border-color: var(--sky);
}
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), #1a40b0);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; fill: #fff; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── VALUE CARDS ── */
.value-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; margin-top: 48px;
}
.value-card {
  background: #fff; border-radius: 16px; padding: 36px 24px;
  border: 1px solid #e8ecf5; transition: all .3s;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,32,119,.1);
  border-color: var(--sky);
}
.value-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), #1a40b0);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
}
.value-icon svg { width: 26px; height: 26px; fill: #fff; }
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.value-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── SERVICES DARK ── */
.services-dark { background: linear-gradient(135deg, var(--navy) 0%, #001560 100%); }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }

/* light variant (services page) */
.svc-grid.navy-text .svc-card { background: #fff; border: 1px solid #e8ecf5; color: var(--navy); }
.svc-grid.navy-text .svc-card h3 { color: var(--navy); }
.svc-grid.navy-text .svc-card p { color: var(--muted); }
.svc-grid.navy-text .svc-card.top3 { border-color: var(--navy); }
.svc-grid.navy-text .svc-arrow { color: rgba(0,32,119,.25); }
.svc-grid.navy-text .svc-card:hover { border-color: var(--sky); box-shadow: 0 12px 32px rgba(0,32,119,.12); }
.svc-grid.navy-text .svc-card:hover .svc-arrow { color: var(--navy); }

.svc-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(156,213,255,.15);
  border-radius: 16px; padding: 24px 32px 24px 24px;
  cursor: pointer; transition: all .3s; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(156,213,255,.1), transparent);
  opacity: 0; transition: .3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }
.svc-card:hover::before { opacity: 1; }
.svc-card.top3 { border-color: rgba(156,213,255,.35); }
.svc-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.svc-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }
.svc-arrow {
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%); color: rgba(255,255,255,.3);
  font-size: 18px; transition: .3s;
}
.svc-card:hover .svc-arrow { color: var(--sky); right: 14px; }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,10,40,.7); backdrop-filter: blur(8px);
  z-index: 2000; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 20px; max-width: 620px;
  width: 100%; max-height: 85vh; overflow-y: auto; padding: 44px;
}
.modal-box h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.modal-box p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.modal-box ul { padding-left: 20px; color: var(--muted); font-size: 14px; line-height: 2.1; }
.modal-close {
  float: right; background: none; border: none;
  font-size: 28px; cursor: pointer; color: var(--muted);
  margin-top: -8px; line-height: 1;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 48px;
}
.testi-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid #e8ecf5; position: relative;
}
.testi-card::before {
  content: '\201C'; position: absolute; top: 16px; right: 24px;
  font-size: 72px; color: var(--sky); opacity: .4;
  font-family: Georgia, serif; line-height: 1;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.testi-stars span { color: var(--gold); font-size: 15px; }
.testi-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── RATING BADGE ── */
.rating-badge {
  display: inline-flex; align-items: center; gap: 20px;
  background: #fff; border: 1px solid #e8ecf5; border-radius: 16px;
  padding: 18px 28px; margin-top: 36px;
  box-shadow: 0 4px 20px rgba(0,32,119,.08);
}
.g-logo { font-size: 24px; font-weight: 800; color: #000; }
.rating-num { font-size: 34px; font-weight: 800; color: var(--navy); }
.rating-stars span { color: var(--gold); font-size: 18px; }
.rating-count { font-size: 13px; color: var(--muted); }

/* ── INDUSTRY GRID ── */
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.ind-card {
  background: #fff; border: 1px solid #e8ecf5;
  border-radius: 16px; overflow: hidden; transition: all .3s;
}
.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,32,119,.1);
  border-color: var(--sky);
}
.ind-img-wrap { width: 100%; height: 190px; overflow: hidden; background: #dde3f0; position: relative; }
.ind-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ind-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,32,119,.45) 0%, rgba(0,32,119,.1) 100%);
  pointer-events: none;
}
.ind-info { padding: 20px; }
.ind-info h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.ind-info p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 48px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 34px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(90deg, var(--navy), var(--sky)); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a40b0);
  color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: 0 8px 24px rgba(0,32,119,.3);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; max-width: 170px; margin: 0 auto; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.price-card {
  background: #fff; border: 2px solid #e8ecf5;
  border-radius: 20px; padding: 40px 32px; position: relative;
}
.price-card.featured {
  border-color: var(--navy);
  background: linear-gradient(135deg, var(--navy) 0%, #1a40b0 100%);
}
.price-card.featured h3,
.price-card.featured .price-amount { color: #fff; }
.price-card.featured li { color: #fff; border-color: rgba(255,255,255,.1) !important; }
.price-card.featured .price-sub { color: rgba(255,255,255,.7) !important; }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; padding: 6px 16px; border-radius: 20px; white-space: nowrap;
}
.price-card h3 { font-size: 21px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.price-amount { font-size: 38px; font-weight: 800; color: var(--navy); margin: 18px 0 4px; }
.price-amount span { font-size: 16px; font-weight: 400; }
.price-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-card ul { list-style: none; padding: 0; margin-bottom: 32px; }
.price-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text);
  padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,.06);
}
.li-check { color: var(--sky); font-size: 14px; flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.price-card.featured .li-check { color: var(--sky); }

/* ── SERVICES 5-COL GRID (services page) ── */
.svc-grid-5 { grid-template-columns: repeat(5,1fr); }
@media (max-width: 1100px) { .svc-grid-5 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px)  { .svc-grid-5 { grid-template-columns: 1fr; } }

/* ── FAQ GRID ── */
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 40px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(90deg, var(--navy), #1a40b0);
  border-radius: 20px; padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; margin-top: 72px; flex-wrap: wrap;
}
.cta-strip h2 { font-size: 30px; font-weight: 800; color: #fff; }
.cta-strip p { color: rgba(255,255,255,.7); margin-top: 6px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #001560);
  padding: 96px 24px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .15;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(30px,4vw,52px); font-weight: 800;
  color: #fff; margin-bottom: 14px; line-height: 1.1;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,.75);
  max-width: 600px; margin: 0 auto; line-height: 1.6;
}

/* ── MISSION / VISION ── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.mv-card { border-radius: 20px; padding: 40px; border: 2px solid; }
.mv-card.mission { background: rgba(0,32,119,.04); border-color: var(--navy); }
.mv-card.vision  { background: rgba(217,175,78,.06); border-color: var(--gold); }
.mv-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.mv-card.mission h3 { color: var(--navy); }
.mv-card.vision h3  { color: var(--gold); }
.mv-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── CONTACT ICONS ── */
.ci {
  width: 46px; height: 46px; background: rgba(0,32,119,.1);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.ci svg { width: 20px; height: 20px; fill: var(--navy); }

/* ── FORMS – DARK ── */
.form-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, #001560 100%);
  border-radius: 24px; padding: 56px; margin-top: 72px;
}
.form-wrap h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.form-wrap > p { color: rgba(255,255,255,.7); margin-bottom: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.8); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px; padding: 13px 15px; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 14px; transition: .2s; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--sky); background: rgba(255,255,255,.15); }
.form-group select option { background: #002077; color: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 10px; }

/* ── FORMS – LIGHT ── */
.light-form-wrap { background: var(--gray); border-radius: 20px; padding: 40px; }
.light-form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.light-form-group label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.light-form-group input,
.light-form-group select,
.light-form-group textarea {
  background: #fff; border: 1px solid #dde3f0; border-radius: 10px;
  padding: 13px 15px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text); transition: .2s; width: 100%;
}
.light-form-group input:focus,
.light-form-group select:focus,
.light-form-group textarea:focus { outline: none; border-color: var(--navy); }
.light-form-group textarea { resize: vertical; min-height: 130px; }

/* ── FORM FEEDBACK MESSAGES ── */
.success-msg,
.error-msg,
.submitting-msg { display: none; border-radius: 10px; padding: 14px; text-align: center; margin-top: 14px; font-weight: 600; font-size: 14px; }
.success-msg    { background: rgba(34,197,94,.15);  border: 1px solid rgba(34,197,94,.35);  color: #166534; }
.error-msg      { background: rgba(239,68,68,.12);  border: 1px solid rgba(239,68,68,.3);   color: #991b1b; }
.submitting-msg { background: rgba(156,213,255,.15); border: 1px solid rgba(156,213,255,.3); color: var(--sky); }
/* light variants */
.success-msg.light-fb    { background: rgba(34,197,94,.1);  color: #166534; }
.error-msg.light-fb      { background: rgba(239,68,68,.08); color: #991b1b; }
.submitting-msg.light-fb { background: rgba(0,32,119,.06);  color: var(--navy); }

/* ── FOOTER ── */
footer { background: #0a0f1e; color: rgba(255,255,255,.7); padding: 60px 24px 0; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: 13.5px; line-height: 1.7;
  color: rgba(255,255,255,.5); margin-bottom: 18px; margin-top: 12px;
}
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,.08);
  border-radius: 10px; display: inline-flex; align-items: center;
  justify-content: center; text-decoration: none;
  color: rgba(255,255,255,.7); transition: .2s;
}
.footer-social a:hover { background: var(--navy); color: #fff; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-col a {
  display: block; color: rgba(255,255,255,.5); text-decoration: none;
  font-size: 13.5px; margin-bottom: 9px; transition: .2s;
}
.footer-col a:hover { color: var(--sky); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 11px; font-size: 13.5px; color: rgba(255,255,255,.5);
}
.fdot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); flex-shrink: 0; margin-top: 5px; }
.footer-seo {
  max-width: 1280px; margin: 0 auto; padding: 28px 0;
  font-size: 12.5px; color: rgba(255,255,255,.32); line-height: 1.7;
}
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12.5px; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .why-grid    { grid-template-columns: repeat(2,1fr); }
  .value-grid  { grid-template-columns: repeat(2,1fr); }
  .svc-grid    { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .testi-grid  { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-content  { grid-template-columns: 1fr; }
  .split         { grid-template-columns: 1fr; gap: 40px; }
  .mv-grid       { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .ind-grid      { grid-template-columns: 1fr 1fr; }
  .faq-grid      { grid-template-columns: 1fr; }
  .cta-strip     { flex-direction: column; text-align: center; padding: 36px 32px; }
  .form-wrap     { padding: 36px 24px; }
  .form-grid     { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .testi-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(0,32,119,0.98);
    padding: 20px 16px; gap: 4px;
    border-bottom: 1px solid rgba(156,213,255,.15);
  }
  .nav-links.open   { display: flex; }
  .nav-links a      { padding: 12px 16px; border-radius: 8px; font-size: 15px; }
  .hamburger        { display: flex; }
  .hero-content     { padding: 60px 24px; }
  .hero-btns        { flex-direction: column; }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline { width: 100%; }
  .photo-banner { height: 280px; }
  .img-full     { height: 240px; }
  .img-rounded  { height: 280px; }
  section { padding: 60px 20px; }
  .why-grid, .value-grid, .svc-grid { grid-template-columns: 1fr; }
  .ind-grid     { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .light-form-wrap { padding: 28px 20px; }
  .modal-box { padding: 28px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-num   { font-size: 30px; }
  .trust-inner { justify-content: center; }
  .rating-badge { flex-direction: column; text-align: center; padding: 20px; }
}
