@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --black: #0f1d2d;
  --black-2: #17263a;
  --ink: #273244;
  --muted: #6c7482;
  --line: #e8e0d3;
  --soft: #f7f3ec;
  --white: #fffdf8;
  --blue: #1f5f99;
  --blue-2: #143f68;
  --blue-soft: #edf6fb;
  --orange: #d98a3a;
  --orange-2: #f2b764;
  --orange-dark: #a96527;
  --cream: #fbf6ec;
  --paper: #ffffff;
  --heading: #142033;
  --radius-lg: 30px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --shadow-dark: 0 28px 80px rgba(9, 18, 34, 0.34);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(245, 138, 11, .28); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--orange);
  color: var(--black);
  padding: 12px 16px;
  z-index: 999;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231,233,238,.85);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 36px rgba(14, 26, 48, .08);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 186px;
  height: 64px;
}
.brand img {
  width: 186px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 14px;
  color: #263043;
  font-weight: 650;
}
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--blue); }
.header-call {
  font-weight: 750;
  color: var(--blue);
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 10px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 32px rgba(222, 138, 54, .26);
}
.btn-primary:hover { box-shadow: 0 18px 42px rgba(222, 138, 54, .34); }
.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
}
.btn-secondary:hover { background: rgba(255,255,255,.14); }
.btn-outline {
  color: var(--blue);
  border-color: rgba(13, 76, 180, .22);
  background: var(--paper);
}
.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  white-space: nowrap;
}

.section {
  padding: 104px 0;
  position: relative;
}
.section-soft { background: var(--soft); }
.section-dark {
  background:
    radial-gradient(circle at 16% 20%, rgba(23,79,145,.32), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(222,138,54,.16), transparent 30%),
    linear-gradient(135deg, #111827 0%, #14213a 58%, #0e3768 100%);
  color: var(--white);
  overflow: hidden;
}
.section h2 {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4.7vw, 62px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--heading);
}
.section p { color: var(--muted); }
.section-dark p { color: rgba(255,255,255,.78); }
.section-dark h1, .section-dark h2 { color: var(--white); }
.section-center {
  max-width: 820px;
  text-align: center;
  margin: 0 auto 50px;
}
.section-center p { font-size: 18px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange-2);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
}
.eyebrow span {
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.eyebrow.dark { color: var(--blue); }
.eyebrow.center { justify-content: center; }

.hero {
  min-height: 760px;
  padding: 86px 0 88px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -0.025em;
  max-width: 820px;
}
.hero-lead {
  font-size: 20px;
  max-width: 650px;
  margin: 28px 0 0;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-points {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.hero-points div {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px;
}
.hero-points strong { display: block; color: var(--white); font-size: 15px; }
.hero-points span { display: block; color: rgba(255,255,255,.64); font-size: 14px; margin-top: 4px; }
.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-visual img {
  box-shadow: var(--shadow-dark);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 26px -22px 26px;
  height: 92px;
  background: linear-gradient(135deg, rgba(23,79,145,.95), rgba(222,138,54,.88));
  filter: blur(38px);
  opacity: .38;
  z-index: -1;
}
.glass-card {
  background: rgba(17, 24, 39, .76);
  border: 1px solid rgba(255,255,255,.17);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 50px rgba(0,0,0,.32);
}
.hero-card {
  position: absolute;
  left: -36px;
  bottom: 36px;
  max-width: 300px;
  padding: 20px;
  border-radius: 22px;
}
.card-label {
  display: inline-block;
  color: var(--orange-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  margin-bottom: 8px;
}
.hero-card strong { display: block; font-size: 18px; line-height: 1.25; }
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
  opacity: .44;
}
.hero-glow-one { width: 360px; height: 360px; right: 12%; top: 14%; background: var(--blue); }
.hero-glow-two { width: 270px; height: 270px; left: 4%; bottom: 8%; background: var(--orange); opacity: .18; }

.trust-strip {
  background: linear-gradient(90deg, #0e3768, #174f91);
  color: var(--white);
  padding: 18px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
}
.strip-grid span {
  padding: 8px 10px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.strip-grid span:last-child { border-right: 0; }

.split-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 64px;
  align-items: start;
}
.section-copy p { font-size: 18px; }
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.target-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(14,26,48,.08);
}
.target-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 18px;
}
.target-card h3 { margin: 0 0 10px; font-size: 22px; }
.target-card p { margin: 0; color: var(--muted); }

.service-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 66px;
  align-items: center;
}
.service-image img, .privacy-image img, .about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.service-image img {
  height: 760px;
  width: 100%;
  object-position: center;
}
.service-content p { font-size: 18px; }
.check-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  margin: 34px 0 26px;
}
.check-columns > div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}
.check-columns h3 { margin: 0 0 16px; }
ul { padding-left: 0; }
.check-list, .plus-list { list-style: none; margin: 0; }
.check-list li, .plus-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: #344054;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}
.plus-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 900;
}
.text-link {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.price-card {
  position: relative;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(14, 26, 48, .08);
  display: flex;
  flex-direction: column;
  min-height: 494px;
}
.price-card.featured {
  border-color: rgba(222,138,54,.52);
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(222,138,54,.16);
}
.dark-price {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.dark-price p, .dark-price li { color: rgba(255,255,255,.72); }
.price-top h3 { margin: 0; font-size: 22px; }
.price-top p { margin: 8px 0 0; min-height: 48px; }
.price { margin-top: 26px; color: var(--muted); }
.price strong {
  display: block;
  color: var(--blue);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.dark-price .price strong { color: var(--orange-2); }
.price-note { margin: 6px 0 22px; font-size: 14px; }
.price-card ul { list-style: none; margin: 0 0 28px; }
.price-card li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: var(--muted);
}
.price-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: .7em;
}
.price-card .btn { margin-top: auto; }
.badge {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--orange);
  color: var(--black);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
}
.pricing-disclaimer {
  max-width: 960px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
}

.comparison { padding-bottom: 116px; }
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}
.comparison-card {
  border-radius: 28px;
  padding: 34px;
}
.comparison-card h3 { margin: 0 0 22px; font-size: 28px; }
.comparison-card ul { list-style: none; margin: 0; }
.comparison-card li {
  position: relative;
  padding-left: 30px;
  margin: 14px 0;
}
.muted-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); }
.muted-card li { color: rgba(255,255,255,.68); }
.muted-card li::before { content: "–"; position: absolute; left: 0; color: rgba(255,255,255,.42); font-weight: 900; }
.premium-card { background: linear-gradient(135deg, var(--blue), var(--blue-2)); box-shadow: var(--shadow-dark); }
.premium-card li { color: rgba(255,255,255,.86); }
.premium-card li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-2); font-weight: 900; }

.process-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 62px;
}
.process-copy { position: sticky; top: 126px; align-self: start; }
.process-copy p { font-size: 18px; }
.process-steps {
  display: grid;
  gap: 16px;
}
.process-steps article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(14,26,48,.06);
}
.process-steps span {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--orange-2);
  font-weight: 900;
  font-size: 20px;
}
.process-steps h3 { margin: 0 0 8px; }
.process-steps p { margin: 0; }

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  height: 780px;
  object-position: center;
}
.about-copy p { font-size: 17px; }
.values-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.values-grid div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.values-grid strong { display: block; color: var(--blue); }
.values-grid span { display: block; font-size: 14px; color: var(--muted); margin-top: 6px; }

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 64px;
  align-items: center;
}
.privacy-copy p { font-size: 18px; }
.privacy-image img { height: 520px; width: 100%; }
.strong-list { columns: 2; column-gap: 34px; margin-top: 28px; }
.strong-list li { break-inside: avoid; font-weight: 650; }

.section-map { background: linear-gradient(180deg, #fff, #f7f9fc); }
.map-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.city-tags span {
  background: var(--paper);
  border: 1px solid var(--line);
  color: #344054;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
}
.map-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}
.map-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(circle at 52% 51%, rgba(23,79,145,.55), transparent 34%),
    #111827;
  background-size: 44px 44px, 44px 44px, auto, auto;
}
.map-circle {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(222,138,54,.35);
}
.map-circle.outer { width: 430px; height: 430px; }
.map-circle.inner { width: 260px; height: 260px; border-color: rgba(23,79,145,.55); }
.pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: var(--orange);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(222,138,54,.14);
}
.pin-main {
  width: 22px;
  height: 22px;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(23,79,145,.20);
}
.pin span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  white-space: nowrap;
  background: rgba(255,255,255,.96);
  color: var(--black);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.pin-main span { background: var(--orange); }
.map-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 900;
}

.form-section { background: var(--paper); }
.form-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: start;
}
.form-copy { position: sticky; top: 126px; }
.form-copy p { font-size: 18px; }
.contact-mini {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}
.contact-mini a {
  color: var(--blue);
  font-weight: 900;
}
.estimator-card {
  margin-top: 30px;
  background: var(--black);
  color: var(--white);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.estimator-card h3 { margin: 0 0 16px; }
.estimator-card label { color: rgba(255,255,255,.76); font-weight: 800; }
.estimator-card input[type="range"] { width: 100%; margin: 20px 0; accent-color: var(--orange); }
.estimator-card p { color: rgba(255,255,255,.62); font-size: 14px; margin-bottom: 0; }
.range-result {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 16px;
}
.range-result span { color: var(--orange-2); font-weight: 900; }
.range-result strong { text-align: right; }
.lead-form {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-head h3 { margin: 0 0 6px; font-size: 30px; letter-spacing: -0.03em; }
.form-head p { margin-top: 0; }
.form-row.two { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.lead-form label, .lead-form legend {
  display: grid;
  gap: 8px;
  color: #2d3748;
  font-weight: 850;
  font-size: 14px;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid #e2ddd4;
  background: var(--paper);
  border-radius: 14px;
  padding: 14px 14px;
  outline: none;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: rgba(23,79,145,.55);
  box-shadow: 0 0 0 4px rgba(23,79,145,.10);
}
.lead-form > label, .lead-form .form-row, .fieldset { margin-top: 16px; }
.fieldset {
  border: 1px solid #e2ddd4;
  background: var(--paper);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fieldset legend { padding: 0 8px; }
.fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}
.fieldset input { width: auto; }
.consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--muted) !important;
  font-weight: 650 !important;
}
.consent input { width: auto; margin-top: 4px; }
.form-button { width: 100%; margin-top: 20px; border: 0; }
.form-footnote { font-size: 12px; margin: 14px 0 0; color: var(--muted); }
.hidden { display: none !important; }

.faq-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 62px;
}
.faq-intro { position: sticky; top: 126px; align-self: start; }
.faq-list { display: grid; gap: 12px; }
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(14,26,48,.05);
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-weight: 900;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 24px;
}
details[open] summary::after { content: "–"; }
details p {
  padding: 0 22px 22px;
  margin: 0;
}

.contact-section {
  background: radial-gradient(circle at 18% 24%, rgba(23,79,145,.13), transparent 30%), var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
}
.contact-card, .contact-cta {
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow);
}
.contact-card { background: var(--paper); border: 1px solid var(--line); }
.contact-cta {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-cta p { color: rgba(255,255,255,.72); }
.contact-cta h3 { font-size: 38px; line-height: 1.05; letter-spacing: -0.04em; margin: 0 0 16px; }
.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}
.contact-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}
.contact-list span { display: block; color: var(--muted); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.contact-list strong { display: block; margin-top: 4px; }
.contact-list a { color: var(--blue); }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr 1fr;
  gap: 40px;
}
.footer-grid img {
  width: 118px;
  background: var(--paper);
  border-radius: 14px;
  padding: 8px;
  margin-bottom: 18px;
}
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.7); }
.footer-grid a { display: block; margin: 8px 0; }
.footer-grid a:hover { color: var(--orange-2); }
.footer-grid h3 { margin: 0 0 14px; color: #fff7ea; font-weight: 750; }
.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,.52);
  font-size: 13px;
}

.mobile-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.26);
}
.mobile-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  font-weight: 900;
  color: var(--white);
  background: var(--blue);
}
.mobile-cta a:nth-child(2) {
  color: var(--black);
  background: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1120px) {
  .header-call, .header-inner > .btn-small { display: none; }
  .main-nav { gap: 14px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
}

@media (max-width: 920px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { height: 76px; }
  .brand img { width: 112px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 14px; right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 12px; }
  .hero { min-height: auto; padding: 66px 0 74px; }
  .hero-grid, .split-grid, .service-layout, .process-layout, .about-grid, .privacy-grid, .map-grid, .form-grid, .faq-layout, .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-copy h1 { font-size: clamp(42px, 11vw, 64px); }
  .hero-visual { min-height: auto; }
  .hero-visual picture, .hero-visual img { height: 430px; }
  .hero-card { left: 18px; bottom: 18px; }
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .strip-grid span { border-right: 0; }
  .section { padding: 74px 0; }
  .service-image img, .about-photo img { height: 520px; }
  .privacy-image img { height: 380px; }
  .process-copy, .form-copy, .faq-intro { position: static; }
  .strong-list { columns: 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  body { padding-bottom: 74px; }
  .mobile-cta { display: grid; }
  .hero-points, .target-grid, .check-columns, .pricing-grid, .comparison-grid, .values-grid, .form-row.two, .fieldset, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .section h2 { font-size: 36px; }
  .hero-copy h1 { letter-spacing: -0.055em; }
  .lead-form, .contact-card, .contact-cta { padding: 24px; }
  .map-panel { min-height: 420px; }
  .pin span { display: none; }
  .map-circle.outer { width: 330px; height: 330px; }
  .map-circle.inner { width: 210px; height: 210px; }
  .service-image img, .about-photo img { height: 420px; }
  .privacy-image img, .hero-visual picture, .hero-visual img { height: 320px; }
  .range-result { flex-direction: column; }
  .range-result strong { text-align: left; }
}


/* Refinement: premium typography and softer visual weight */
h1, h2, .contact-cta h3, .form-head h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}
h3 {
  color: var(--heading);
  font-weight: 750;
}
.section-dark h3, .contact-cta h3, .dark-price h3 { color: var(--white); }
.btn, .strip-grid, .text-link, .badge, .city-tags span, summary, .socials a, .contact-mini a, .range-result span {
  font-weight: 750;
}
.brand { flex-shrink: 0; overflow: hidden; }
.site-header .brand img { display:block; }
.btn-primary { color: #1a1a1a; }
.btn-small { background: var(--blue-2); }
.btn-small:hover { background: var(--blue); }
.price strong { font-family: "Manrope", sans-serif; font-weight: 800; }
.section-soft { background: var(--cream); }
.section-map { background: linear-gradient(180deg, var(--white), var(--cream)); }
.target-card, .check-columns > div, .price-card, .process-steps article, .values-grid div, details, .contact-card, .lead-form {
  border-color: var(--line);
}
@media (max-width: 920px) {
  .brand { min-width: 160px; height: 58px; }
  .brand img { width: 160px; max-height: 52px; }
  .header-inner { height: 70px; }
  .main-nav { top: 76px; }
}
@media (max-width: 640px) {
  .brand { min-width: 144px; }
  .brand img { width: 144px; max-height: 48px; }
  .hero-copy h1 { font-size: clamp(46px, 13vw, 64px); letter-spacing: -0.02em; }
  .section h2 { font-size: 40px; }
}


/* Update: no logo in navigation, calmer premium palette and stable process section */
.brand.brand-text {
  min-width: auto;
  height: auto;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.brand-name,
.footer-brand,
.thank-you-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--blue-2);
}
.brand-name {
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1;
}
.footer-brand {
  font-size: 32px;
  margin-bottom: 14px;
}
.thank-you-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--blue-2);
  font-size: 30px;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.site-header .brand.brand-text img,
.footer-brand img { display: none !important; }

.section-intro {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-intro .eyebrow { justify-content: center; }
.section-intro p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  color: var(--muted);
}
.process-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(31,95,153,.10), transparent 34%),
    linear-gradient(180deg, var(--white), var(--cream));
}
.process-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.process-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(232,224,211,.95);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 60px rgba(20,32,51,.08);
  overflow: hidden;
}
.process-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: .75;
}
.step-number {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue-2);
  font-weight: 800;
  letter-spacing: .02em;
}
.process-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}
.process-card p {
  margin: 0;
  color: var(--muted);
}
.process-note {
  margin-top: 22px;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border-radius: 24px;
  background: var(--black);
  color: rgba(255,255,255,.78);
  box-shadow: var(--shadow-dark);
}
.process-note strong { color: var(--white); }
.process-note .text-link { color: var(--orange-2); white-space: nowrap; }

@media (max-width: 1120px) {
  .process-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .brand.brand-text { min-width: auto; height: auto; }
  .brand-name { font-size: 28px; }
}
@media (max-width: 640px) {
  .brand-name { font-size: 24px; }
  .process-board { grid-template-columns: 1fr; }
  .process-card { min-height: auto; padding: 24px; }
  .process-note { flex-direction: column; align-items: flex-start; }
  .process-note .text-link { white-space: normal; }
}

.footer-title, .site-footer h3, .footer h3 { color: #f8fafc; }

.site-footer h2,
.site-footer h3,
.site-footer h4,
.footer h2,
.footer h3,
.footer h4 {
  color: #f8fafc;
}
