@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --dark:        #0C1924;
  --navy:        #1B3A5C;
  --navy-mid:    #234b74;
  --gold:        #C9A84C;
  --gold-light:  #dbb95e;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --text:        #111827;
  --muted:       #6B7280;
  --light:       #9CA3AF;
  --border:      #E5E7EB;
  --border-light:#F3F4F6;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img, svg { display: block; }
a { color: inherit; }

/* ── NAVIGATION ─────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  color: var(--gold);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 9.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}
.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.18s;
  letter-spacing: 0.1px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

.nav-cta-btn {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  transition: background 0.18s, transform 0.18s !important;
}
.nav-cta-btn:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
  transform: translateY(-1px) !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: 0.3s; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 8px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.18s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav a.mobile-cta {
  border-bottom: none;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: 8px;
  padding-top: 20px;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  padding: 104px 32px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.hero-shield {
  width: 148px;
  height: 148px;
  margin: 0 auto 32px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 48px rgba(201,168,76,0.25);
}
.hero-shield-svg {
  width: 88px;
  height: 103px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 4px 32px rgba(201,168,76,0.22));
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 15px 32px;
  border-radius: 7px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.35); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.04); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-sm { font-size: 13px; padding: 11px 22px; }

/* ── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── SECTION SHELL ──────────────────────────────────────── */
.section { padding: 96px 32px; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--dark); }

.section-inner { max-width: 1160px; margin: 0 auto; }
.section-inner.narrow { max-width: 860px; }

.section-hd { margin-bottom: 56px; }
.section-hd.center { text-align: center; }
.section-hd.center .section-sub { margin-left: auto; margin-right: auto; }

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}
.section-dark .section-sub { color: rgba(255,255,255,0.45); }

/* ── FEATURE CARDS ──────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.feat-card:hover {
  box-shadow: 0 10px 40px rgba(27,58,92,0.08);
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.4);
}
.section-alt .feat-card { background: var(--white); }

.card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
}
.feat-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.feat-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── SERVICE CARDS ──────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.22s, transform 0.22s;
}
.service-card:hover {
  box-shadow: 0 10px 40px rgba(27,58,92,0.08);
  transform: translateY(-2px);
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.price-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  letter-spacing: 0.3px;
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.cta-inner p { color: rgba(255,255,255,0.45); font-size: 16px; margin-bottom: 40px; line-height: 1.7; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(17px, 2.5vw, 22px);
  padding: 20px 48px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}
.cta-phone:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.4);
}
.cta-secondary {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.18s;
}
.cta-secondary:hover { color: rgba(255,255,255,0.55); }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-head {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--navy);
}
.pricing-body { padding: 4px 0; }
.p-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.p-row:last-child { border-bottom: none; }
.p-label { color: var(--muted); }
.p-val { font-weight: 700; color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 14px; }
.p-val.accent { color: var(--navy); }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-shield { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; object-fit: cover; }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.15;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.4); max-width: 480px; margin: 0 auto; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: start; }

.about-body { font-size: 15.5px; color: #444; line-height: 1.9; }
.about-body p { margin-bottom: 22px; }
.about-body p:last-child { margin-bottom: 0; }

.sidebar-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 32px;
  margin-bottom: 16px;
}
.sidebar-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.cred-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.cred-row:last-child { border-bottom: none; padding-bottom: 0; }
.cred-row svg { color: #4ADE80; flex-shrink: 0; margin-top: 2px; }

.area-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
}
.area-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.area-region { margin-bottom: 14px; }
.area-region:last-child { margin-bottom: 0; }
.area-region strong { display: block; font-size: 13px; color: var(--navy); font-weight: 700; margin-bottom: 3px; }
.area-region span { font-size: 12.5px; color: var(--muted); }

.values-list { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.value-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.value-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.value-row h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.value-row p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── SERVICE AREAS CARDS ────────────────────────────────── */
.area-feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s;
}
.area-feat-card:hover { box-shadow: 0 10px 36px rgba(27,58,92,0.08); transform: translateY(-2px); }
.area-feat-card svg { margin: 0 auto 16px; color: var(--gold); }
.area-feat-card h3 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.area-feat-card .area-cities { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.area-feat-card .area-note { font-size: 12px; font-weight: 600; color: var(--navy); font-family: 'Montserrat', sans-serif; letter-spacing: 0.2px; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }

.contact-info-panel {
  background: var(--navy);
  border-radius: 14px;
  padding: 40px;
  color: var(--white);
  position: sticky;
  top: 88px;
}
.contact-info-panel h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.ci {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.ci:last-of-type { margin-bottom: 0; }
.ci svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.ci-body {}
.ci-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.ci-value { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.ci-value a { color: var(--gold); text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; }

.area-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 6px; }
.chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 11.5px;
  padding: 4px 11px;
  border-radius: 20px;
}

.trust-list { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 8px; }
.trust-list-item { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,0.3); }
.trust-list-item svg { color: #4ADE80; flex-shrink: 0; }

/* Form */
.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
}
.form-panel h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.form-panel .form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); }
.fg input, .fg select, .fg textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,92,0.08);
}
.fg textarea { resize: vertical; min-height: 108px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 15px; padding: 17px; }
.form-fine { text-align: center; font-size: 12px; color: var(--light); margin-top: 10px; }
.form-fine a { color: var(--navy); }

#successMsg { display: none; text-align: center; padding: 48px 24px; }
#successMsg h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
#successMsg p { font-size: 14px; color: var(--muted); line-height: 1.7; }
#successMsg a { color: var(--navy); font-weight: 700; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.18s;
}
.faq-btn:hover { color: var(--navy); }
.faq-btn.open { color: var(--navy); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--gold); }
.faq-btn.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding-bottom: 22px; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #080f16;
  padding: 64px 32px 32px;
}
.footer-wrap { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 28px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.footer-logo-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--gold); line-height: 1.2; }
.footer-logo-sub { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.2); display: block; margin-top: 1px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.25); line-height: 1.85; max-width: 260px; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li { font-size: 13px; }
.footer-col ul li a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.18s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.75); }
.footer-col ul li span { color: rgba(255,255,255,0.25); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item .fc-text { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.5; }
.footer-contact-item .fc-text a { color: rgba(201,168,76,0.85); text-decoration: none; font-weight: 600; transition: color 0.18s; }
.footer-contact-item .fc-text a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.15);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── INLINE ICONS (reusable) ────────────────────────────── */
.icon { display: inline-block; vertical-align: middle; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .grid-3, .grid-2, .pricing-grid, .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .trust-strip-inner { flex-direction: column; align-items: stretch; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); justify-content: center; }
  .trust-item:last-child { border-bottom: none; }

  .section { padding: 64px 20px; }
  .hero { padding: 72px 20px 64px; }
  .page-hero { padding: 52px 20px; }
  .cta-section { padding: 72px 20px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-info-panel { position: static; }
  .nav-wrap { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .form-panel, .contact-info-panel { padding: 28px 20px; }
  .hero-shield { width: 72px; height: 84px; }
}
