:root {
  --navy:       #0d1b3e;
  --navy-mid:   #162040;
  --navy-light: #1e2f55;
  --blue:       #38bdf8;
  --blue-mid:   #0ea5e9;
  --blue-deep:  #0369a1;
  --cream:      #f0f7fc;
  --cream-deep: #e3f0f9;
  --white:      #ffffff;
  --off-white:  #f7f9fb;
  --border:     #dce8f2;
  --border-warm:#d0e4f0;
  --text:       #0d1b3e;
  --text-mid:   #3a4a6b;
  --text-muted: #6b7a9a;
  --text-light: #9daabb;
  --gold:       #f5a623;
  --gold-light: #fef3d8;
  --container:  1160px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
img { display: block; max-width: 100%; }
h1,h2,h3 { text-wrap: balance; }

#services, #about, #testimonials, #contact {
  scroll-margin-top: 104px;
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue-deep); outline-offset: 3px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100%; left: 12px; z-index: 9999;
  background: var(--navy); color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  padding: 10px 20px; text-decoration: none; border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }

/* ── TOP INFO BAR ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 36px; background: var(--navy);
  display: flex; align-items: center;
}
.topbar-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 20px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-item {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.65); text-decoration: none;
}
.topbar-item i { font-size: 10px; color: var(--blue); }
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social a {
  font-size: 12px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.topbar-social a:hover { color: var(--blue); }

/* ── NAV ── */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 40px;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(13,27,62,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 11px; text-decoration: none;
  justify-self: start;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 14px;
}
.nav-logo-text {
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em;
}
.nav-links {
  display: flex; gap: 36px; list-style: none; justify-self: center;
}
.nav-links a {
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--text-mid); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 16px; justify-self: end; }
.nav-phone {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--navy); text-decoration: none;
  display: flex; align-items: center; gap: 7px;
}
.nav-phone i { font-size: 12px; color: var(--blue-mid); }
.nav-cta {
  background: var(--navy); color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.02em; padding: 9px 20px; border-radius: 5px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  touch-action: manipulation;
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ── HERO ANIMATIONS ── */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-badge   { animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.08s; }
.hero-h1      { animation: heroUp 0.75s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.20s; }
.hero-tagline { animation: heroUp 0.75s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.32s; }
.hero-btns    { animation: heroUp 0.8s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.44s; }
.hero-form    { animation: heroUp 0.85s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.30s; }
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero-h1, .hero-tagline, .hero-btns, .hero-form { animation: none; }
}

/* ── HERO ── */
.hero {
  margin-top: 104px;
  position: relative; overflow: hidden;
  min-height: 68vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/pexels-jose-andres-pacheco-cortes-3641213-5463575.jpg');
  background-size: cover; background-position: center center;
  filter: brightness(0.72);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(13,27,62,0.78) 0%,
    rgba(13,27,62,0.60) 42%,
    rgba(13,27,62,0.28) 100%
  );
}
.hero-inner-wrap {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; padding: 64px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  width: 100%;
}
.hero-left { display: flex; flex-direction: column; }
.hero-inner { max-width: 480px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px; padding: 5px 14px 5px 10px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9);
  margin-bottom: 22px; width: fit-content;
}
.hero-badge i { font-size: 10px; color: var(--blue); }
.hero-h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(40px,4.6vw,66px); font-weight: 900;
  line-height: 1.08; letter-spacing: -0.04em; color: var(--white); margin-bottom: 16px;
}
.hero-h1 em { color: var(--blue); font-style: normal; }
.hero-tagline {
  font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.8;
  margin-bottom: 28px; max-width: 440px;
}
.hero-trust { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero-trust-item i { color: var(--blue); font-size: 12px; width: 14px; text-align: center; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--white); color: var(--navy);
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.01em; padding: 13px 26px; border-radius: 5px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px;
  touch-action: manipulation; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: 5px; border: 2px solid rgba(255,255,255,0.35);
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px;
  touch-action: manipulation; transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.75); }

/* ── HERO FORM CARD ── */
.hero-right { display: flex; align-items: center; justify-content: flex-end; }
.hero-form-card {
  background: var(--white); border-radius: 14px; padding: 40px 36px;
  width: 100%; max-width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28), 0 4px 16px rgba(0,0,0,0.14);
}
.hfc-header { margin-bottom: 24px; }
.hfc-title {
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 4px;
}
.hfc-sub { font-size: 13px; color: var(--text-muted); }
.hfc-fields { display: flex; flex-direction: column; gap: 14px; }
.hfc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hfc-group { display: flex; flex-direction: column; gap: 5px; }
.hfc-label {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.1em;
}
.hfc-input, .hfc-select, .hfc-textarea {
  width: 100%; background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: 6px; padding: 11px 13px;
  font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.hfc-input::placeholder, .hfc-textarea::placeholder { color: var(--text-light); }
.hfc-input:focus, .hfc-select:focus, .hfc-textarea:focus {
  border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
  background: var(--white);
}
.hfc-select { appearance: none; cursor: pointer; color: var(--text-muted); }
.hfc-select.has-value { color: var(--text); }
.hfc-textarea { resize: vertical; min-height: 96px; }
.hfc-submit {
  background: var(--navy); color: var(--white); border: none; border-radius: 7px;
  padding: 15px 24px; width: 100%; margin-top: 4px;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800;
  letter-spacing: 0.01em; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  touch-action: manipulation; transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(13,27,62,0.22);
}
.hfc-submit:hover { background: var(--navy-light); transform: translateY(-1px); }
.hfc-submit:active { transform: translateY(1px); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 48px;
}
.trust-bar-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--text-mid); letter-spacing: 0.08em; text-transform: uppercase;
}
.trust-item i { color: var(--blue-mid); font-size: 11px; }

/* ── SECTION HELPERS ── */
.sec-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-light); border: 1px solid rgba(245,166,35,0.28);
  border-radius: 100px; padding: 4px 14px;
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: #9a6b00;
  margin-bottom: 14px;
}
.sec-pill.blue {
  background: rgba(14,165,233,0.08); border-color: rgba(14,165,233,0.2); color: var(--blue-deep);
}
.sec-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(28px,3.6vw,48px); font-weight: 900;
  color: var(--navy); letter-spacing: -0.04em; line-height: 1.06; margin-bottom: 14px;
}
.sec-title em { color: var(--blue-mid); font-style: normal; }
.sec-sub { font-size: 15px; color: var(--text-muted); line-height: 1.75; max-width: 520px; }

/* ── SERVICES ── */
.services {
  background: var(--white); padding: 88px 0; border-bottom: 1px solid var(--border);
}
.services .sec-header { text-align: center; margin-bottom: 52px; }
.services .sec-header .sec-sub { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.srv-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--white); padding: 34px 26px;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden; transition: background 0.25s, transform 0.25s;
}
.srv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.srv-card:hover { background: var(--cream); transform: translateY(-2px); z-index: 2; }
.srv-card:hover::before { transform: scaleX(1); }
.srv-icon {
  width: 46px; height: 46px;
  background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.18);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--blue-mid); font-size: 18px; transition: background 0.2s, box-shadow 0.2s;
}
.srv-card:hover .srv-icon {
  background: rgba(14,165,233,0.14); box-shadow: 0 0 14px rgba(14,165,233,0.18);
}
.srv-card h3 { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.srv-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.srv-card-link {
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--blue-deep); letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 6px; margin-top: 6px; transition: gap 0.2s;
}
.srv-card:hover .srv-card-link { gap: 10px; }

/* ── PHOTO WALL ── */
.photo-wall { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; height: 340px; gap: 3px; }
.pw-cell { overflow: hidden; position: relative; }
.pw-cell img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.88) saturate(0.85); }
.pw-cell-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.38) 0%, transparent 55%); pointer-events: none;
}

/* ── ABOUT ── */
.about {
  background: var(--cream); padding: 96px 0;
  border-top: 1px solid var(--border-warm); border-bottom: 1px solid var(--border-warm);
}
.about-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 440px; }
.about-photo-main {
  grid-row: 1 / 3; overflow: hidden; border-radius: 10px; box-shadow: 0 4px 20px rgba(13,27,62,0.10);
}
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-sm { overflow: hidden; border-radius: 10px; box-shadow: 0 4px 16px rgba(13,27,62,0.08); }
.about-photo-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content .sec-sub { margin-bottom: 36px; }
.about-feats { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.about-feat { display: flex; align-items: flex-start; gap: 16px; }
.feat-icon {
  width: 44px; height: 44px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-mid); font-size: 16px; flex-shrink: 0; margin-top: 2px;
  box-shadow: 0 2px 8px rgba(13,27,62,0.06);
}
.feat-text h4 { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feat-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--navy); padding: 64px 0; position: relative; overflow: hidden; }
.stats-strip::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    -48deg, rgba(56,189,248,0.04) 0, rgba(56,189,248,0.04) 1px, transparent 1px, transparent 28px
  );
}
.stats-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  text-align: center; position: relative; z-index: 1;
}
.stat-item { padding: 0 16px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Outfit', sans-serif; font-size: 52px; font-weight: 900;
  color: var(--white); line-height: 1; letter-spacing: -0.04em; display: block;
}
.stat-num span { color: var(--blue); }
.stat-label {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.45); margin-top: 8px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); padding: 96px 0; border-bottom: 1px solid var(--border); }
.testimonials .sec-header { text-align: center; margin-bottom: 52px; }
.testimonials .sec-header .sec-sub { margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--cream); border: 1px solid var(--border-warm);
  border-radius: 12px; padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
}
.testi-stars { display: flex; gap: 4px; }
.testi-stars i { color: var(--gold); font-size: 13px; }
.testi-quote { font-size: 14px; color: var(--text-mid); line-height: 1.75; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-name { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-loc { font-size: 12px; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy-mid); padding: 56px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 65%);
}
.cta-banner-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 1;
}
.cta-banner-left h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(24px,3vw,38px); font-weight: 900;
  color: var(--white); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 8px;
}
.cta-banner-left p { font-size: 14px; color: rgba(255,255,255,0.6); }
.cta-banner-right { display: flex; align-items: center; gap: 32px; flex-shrink: 0; }
.cta-contact-item { text-align: left; }
.cta-contact-item small {
  display: block; font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 600;
  color: var(--blue); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px;
}
.cta-contact-item a, .cta-contact-item span {
  font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800;
  color: var(--white); text-decoration: none; letter-spacing: -0.02em;
}
.cta-contact-item a:hover { color: var(--blue); }
.btn-cta {
  background: var(--blue-mid); color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: 5px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px;
  white-space: nowrap; touch-action: manipulation; transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover { background: var(--blue-deep); transform: translateY(-1px); }

/* ── CONTACT ── */
.contact { background: var(--off-white); padding: 96px 0; border-top: 1px solid var(--border); }
.contact-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.contact-left > .sec-title { font-size: clamp(26px,3vw,40px); margin-bottom: 12px; }
.contact-left > p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.ci-row { display: flex; align-items: center; gap: 14px; }
.ci-icon {
  width: 42px; height: 42px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-mid); font-size: 15px; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(13,27,62,0.05);
}
.ci-text { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.ci-text span {
  display: block; font-size: 10px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px;
}
.ci-text a { color: inherit; text-decoration: none; }
.ci-text a:hover { color: var(--blue-mid); }
.contact-form {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 40px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 8px 32px rgba(13,27,62,0.07);
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-label {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 6px; display: block;
}
.cf-input, .cf-select, .cf-textarea {
  width: 100%; background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: 5px; padding: 12px 14px;
  font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--text);
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--text-light); }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  border-color: var(--blue-mid); background: var(--white);
}
.cf-select { appearance: none; cursor: pointer; color: var(--text-muted); }
.cf-select.has-value { color: var(--text); }
.cf-textarea { resize: vertical; min-height: 100px; }
.cf-submit {
  background: var(--navy); color: var(--white); border: none; border-radius: 5px;
  padding: 15px 28px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.01em; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin-top: 4px; touch-action: manipulation;
  transition: background 0.2s, transform 0.15s;
}
.cf-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0 40px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo-text {
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; margin-bottom: 12px; display: block;
}
.footer-brand > p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-btn:hover { background: var(--blue-mid); color: var(--white); border-color: var(--blue-mid); }
.footer-col h4 {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.5; }
.footer-col a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ── SCROLL ANIMATIONS ── */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim.left { transform: translateX(-28px); }
.anim.right { transform: translateX(28px); }
.anim.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.06s; } .d2 { transition-delay: 0.13s; } .d3 { transition-delay: 0.20s; }
.d4 { transition-delay: 0.27s; } .d5 { transition-delay: 0.34s; } .d6 { transition-delay: 0.41s; }
@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1; transform: none; transition: none; }
}

/* ── BLOG LISTING PAGE ── */
.blog-page {
  margin-top: 104px;
  padding: 80px 0;
  background: var(--off-white);
  min-height: 60vh;
}
.blog-page-header {
  text-align: center;
  margin-bottom: 56px;
}
.blog-page-header .sec-sub { margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(13,27,62,0.12); transform: translateY(-3px); }
.blog-card-img {
  height: 200px;
  background: var(--cream-deep);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-date {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600;
  color: var(--blue-mid); letter-spacing: 0.08em; text-transform: uppercase;
}
.blog-card-title {
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 800;
  color: var(--navy); line-height: 1.3; letter-spacing: -0.02em;
}
.blog-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.blog-card-read {
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--blue-deep); display: flex; align-items: center; gap: 6px;
  margin-top: 4px;
}
.blog-empty {
  text-align: center; padding: 80px 24px;
  font-size: 16px; color: var(--text-muted);
}

/* ── BLOG POST PAGE ── */
.post-page { margin-top: 104px; }
.post-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 56px;
  overflow: hidden;
}
.post-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35);
}
.post-hero-content { position: relative; z-index: 1; }
.post-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.post-back {
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.7); text-decoration: none;
  display: flex; align-items: center; gap: 7px;
  transition: color 0.2s;
}
.post-back:hover { color: var(--blue); }
.post-date {
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase;
}
.post-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(28px,4vw,52px); font-weight: 900;
  color: var(--white); letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 14px;
}
.post-desc { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.6; max-width: 680px; }
.post-author {
  margin-top: 16px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.post-body { padding: 72px 0 80px; }
.post-content {
  max-width: 760px; margin: 0 auto;
  font-size: 16px; line-height: 1.85; color: var(--text-mid);
}
.post-content h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(20px,2.4vw,28px); font-weight: 800;
  color: var(--navy); letter-spacing: -0.03em; margin: 40px 0 14px;
}
.post-content h3 {
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--navy); margin: 32px 0 12px;
}
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--navy); font-weight: 700; }
.post-content a { color: var(--blue-mid); text-decoration: underline; }
.post-content a:hover { color: var(--blue-deep); }
.post-cta-box {
  max-width: 760px; margin: 56px auto 0;
  background: var(--cream); border: 1px solid var(--border-warm); border-radius: 12px;
  padding: 36px 40px; text-align: center;
}
.post-cta-box h3 {
  font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.post-cta-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.post-cta-box .btn-primary { margin: 0 auto; width: fit-content; background: var(--navy); color: var(--white); }
.post-cta-box .btn-primary:hover { background: var(--navy-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .topbar-left .topbar-item:last-child { display: none; }
  .hero-inner-wrap { grid-template-columns: 1fr; padding: 48px 40px; }
  .hero-left { align-items: center; text-align: center; }
  .hero-inner { max-width: 600px; margin: 0 auto; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-trust { align-items: center; }
  .hero-btns { justify-content: center; }
  .hero-right { justify-content: center; }
  .hero-form-card { max-width: 100%; }
  .photo-wall { grid-template-columns: 1fr 1fr; height: 280px; }
  .photo-wall .pw-cell:last-child { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-banner-right { flex-wrap: wrap; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  nav { top: 0; }
  #services, #about, #testimonials, #contact { scroll-margin-top: 68px; }
  .hero { margin-top: 68px; }
  .hero-inner-wrap { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .hfc-row { grid-template-columns: 1fr; }
  nav { padding: 0 20px; height: 60px; grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .trust-bar { padding: 12px 20px; }
  .trust-bar-inner { gap: 10px 20px; }
  .trust-item { flex: 0 0 calc(50% - 10px); }
  .container { padding: 0 24px; }
  .about-inner { padding: 0 24px; }
  .contact-inner { padding: 0 24px; }
  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .photo-wall { height: 200px; grid-template-columns: 1fr 1fr; }
  .photo-wall .pw-cell:last-child { display: none; }
  .stats-strip { padding: 44px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .stat-num { font-size: 40px; }
  .about { padding: 60px 0; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photos { height: 240px; }
  .about-photo-sm { display: none; }
  .about-photo-main { grid-row: auto; }
  .testimonials { padding: 60px 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 0; }
  .cta-banner-inner { padding: 0 24px; }
  .contact { padding: 60px 0; }
  .contact-form { padding: 28px 20px; }
  .cf-row { grid-template-columns: 1fr; }
  footer { padding: 48px 0 32px; }
  .footer-inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .blog-page { margin-top: 68px; padding: 56px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-page { margin-top: 68px; }
  .post-cta-box { padding: 28px 20px; }
}
