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

:root {
  --navy: #0a1f3d;
  --navy-2: #123059;
  --navy-deep: #050e1e;
  --gold: #c9a227;
  --gold-light: #f0d68a;
  --cream: #faf7f0;
  --ink: #16212e;
  --muted: #64748b;
  --border: #e6e5e0;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(10, 31, 61, 0.06);
  --shadow: 0 10px 30px rgba(10, 31, 61, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 31, 61, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 600;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 200;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(10, 31, 61, 0.08);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 20px;
}

.logo-link img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 30px; }

.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  transition: color 0.15s ease;
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a.active:not(.nav-cta)::after { transform: scaleX(1); }

.main-nav a:hover, .main-nav a.active { color: var(--navy); }

.nav-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14.5px;
  white-space: nowrap;
}

.header-phone .icon { width: 18px; height: 18px; color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 15% 20%, #14315e 0%, transparent 45%),
              radial-gradient(circle at 85% 0%, #1c3c6b 0%, transparent 40%),
              linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 110px 0 130px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}

.hero-blob-1 {
  width: 420px; height: 420px;
  right: -140px; top: -140px;
  background: radial-gradient(circle, rgba(201,162,39,0.22) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite;
}

.hero-blob-2 {
  width: 300px; height: 300px;
  left: -100px; bottom: -120px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  animation: float 14s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 24px); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 12.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 7px 14px;
  border-radius: 999px;
}

.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 52px);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 18px;
  color: #c7d2e0;
  margin-bottom: 34px;
  max-width: 520px;
}

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease;
}

.btn .icon { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(201, 162, 39, 0.4); }

.btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-3px); }

.btn-navy { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-navy:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.hero-badges { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; color: #dbe4f0; font-size: 14px; font-weight: 600; }
.hero-badge .icon { width: 18px; height: 18px; color: var(--gold-light); }

/* Hero visual mockup */
.hero-visual { position: relative; z-index: 1; }

.mock-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.mock-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.mock-card-header span { color: #dbe4f0; font-weight: 700; font-size: 13.5px; letter-spacing: 0.5px; text-transform: uppercase; }
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); display: block; }

.mock-bars { display: flex; align-items: flex-end; gap: 12px; height: 130px; margin-bottom: 20px; }
.mock-bars div { flex: 1; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--gold-light), var(--gold)); opacity: 0.85; }
.mock-bars div:nth-child(2) { background: rgba(255,255,255,0.25); }
.mock-bars div:nth-child(4) { background: rgba(255,255,255,0.25); }

.mock-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13.5px; color: #c7d2e0; }
.mock-row strong { color: var(--white); font-family: 'Fraunces', serif; font-size: 15px; }

.float-badge {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13.5px;
  animation: floaty 5s ease-in-out infinite;
}

.float-badge .icon { width: 20px; height: 20px; color: var(--gold); }
.float-badge-1 { top: -18px; left: -22px; animation-delay: 0s; }
.float-badge-2 { bottom: -16px; right: -18px; animation-delay: 1.2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Trust strip */
.trust-strip { background: var(--cream); border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px; }
.trust-item { display: flex; align-items: center; gap: 9px; color: var(--navy); font-size: 13.5px; font-weight: 700; }
.trust-item .icon { width: 17px; height: 17px; color: var(--gold); }

/* Sections */
.section { padding: 100px 0; }
.section-tight { padding: 60px 0; }
.section-alt { background: var(--cream); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head .eyebrow { color: var(--gold); background: rgba(201,162,39,0.1); border-color: rgba(201,162,39,0.25); }
.section-head h2 { font-size: clamp(28px, 3.2vw, 38px); }
.section-head p { color: var(--muted); font-size: 16.5px; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon .icon { color: var(--gold-light); width: 26px; height: 26px; }

.service-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.service-link .icon { width: 14px; height: 14px; transition: transform 0.2s ease; }
.service-card:hover .service-link .icon { transform: translateX(4px); }

/* About / two column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.about-visual { position: relative; }

.about-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3.1;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}

.about-visual:hover .about-card img { transform: scale(1.04); }

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,61,0.05) 40%, rgba(5,14,30,0.85) 100%);
  z-index: 1;
}

.about-card::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.3), transparent 70%);
  top: -60px; right: -60px;
  z-index: 1;
}

.about-mark {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
  color: var(--white);
}
.about-mark .big-initials { font-family: 'Fraunces', serif; font-size: 21px; font-weight: 600; letter-spacing: 0; }
.about-mark .sub { color: var(--gold-light); font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; margin-top: 4px; font-weight: 700; }

/* Full-bleed photo banner */
.photo-banner {
  position: relative;
  padding: 130px 0;
  background: var(--img, var(--navy)) center/cover;
  color: var(--white);
  overflow: hidden;
}

.photo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5,14,30,0.92) 0%, rgba(10,31,61,0.75) 55%, rgba(10,31,61,0.55) 100%);
}

.photo-banner-inner { position: relative; z-index: 1; max-width: 620px; }
.photo-banner blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 24px;
  color: var(--white);
}
.photo-banner cite { font-style: normal; color: var(--gold-light); font-weight: 700; font-size: 14px; letter-spacing: 0.5px; }

.about-float-card {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
}
.about-float-card .icon-wrap {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(201,162,39,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-float-card .icon-wrap .icon { color: var(--gold); width: 20px; height: 20px; }
.about-float-card strong { display: block; font-size: 14px; color: var(--navy); font-family: 'Fraunces', serif; }
.about-float-card span { font-size: 12.5px; color: var(--muted); }

.checklist { list-style: none; padding: 0; margin: 26px 0; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--ink); font-size: 15px; }
.checklist li .check-icon {
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
}
.checklist li .check-icon .icon { width: 12px; height: 12px; color: var(--navy-deep); stroke-width: 3; }

/* Process steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }

.step { text-align: center; padding: 0 12px; position: relative; }

.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--gold-light);
  font-family: 'Fraunces', serif; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 19px;
  box-shadow: var(--shadow);
  position: relative; z-index: 1;
}

.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; margin-bottom: 0; }

.steps-line {
  position: absolute;
  top: 26px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}

/* CTA banner */
.cta-banner {
  position: relative;
  background: linear-gradient(115deg, rgba(5,14,30,0.94) 0%, rgba(10,31,61,0.88) 100%), var(--img, none) center/cover;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.2), transparent 70%);
  right: -100px; top: -120px;
}

.cta-banner h2 { color: var(--white); margin-bottom: 8px; font-size: 28px; position: relative; z-index: 1; }
.cta-banner p { color: #c7d2e0; margin-bottom: 0; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* Footer */
.site-footer { background: linear-gradient(180deg, var(--navy-deep), #030811); color: #aebbcc; padding: 64px 0 24px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid img { height: 42px; margin-bottom: 16px; }
.site-footer h4 { color: var(--white); font-size: 14.5px; font-family: 'Inter', sans-serif; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid p { color: #aebbcc; font-size: 14.5px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #aebbcc; font-size: 14.5px; transition: color 0.15s ease, padding-left 0.15s ease; display: inline-block; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14.5px; }
.footer-contact-item .icon { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom { padding-top: 22px; font-size: 13px; color: #6b7a8f; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Contact page */
.page-hero {
  position: relative;
  background: linear-gradient(115deg, rgba(5,14,30,0.93) 0%, rgba(10,31,61,0.82) 100%),
              var(--img, none) center/cover;
  color: var(--white);
  padding: 76px 0 90px;
  text-align: center;
  overflow: hidden;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 42px); margin-bottom: 12px; }
.page-hero p { color: #c7d2e0; margin-bottom: 0; max-width: 520px; margin-inline: auto; }

.contact-section { margin-top: -56px; position: relative; z-index: 2; padding-bottom: 100px; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: start; }

.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-lg); }

.info-row { display: flex; gap: 16px; margin-bottom: 26px; }
.info-row:last-of-type { margin-bottom: 0; }

.info-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon .icon { color: var(--gold-light); width: 20px; height: 20px; }

.info-row h4 { font-size: 15px; margin-bottom: 4px; color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 700; }
.info-row p, .info-row a { font-size: 14.5px; color: var(--ink); margin-bottom: 0; }
.info-row a:hover { color: var(--gold); }

.map-embed { margin-top: 30px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(0.15); }

.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-lg); }
.contact-form-card h2 { font-size: 24px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 8px; color: var(--navy); }

.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14.5px; font-family: inherit; color: var(--ink); background: var(--cream);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.14);
}
.field textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: 12.5px; color: var(--muted); margin-top: 16px; text-align: center; }

.form-success {
  display: none; align-items: center; gap: 10px;
  background: #eaf7ee; border: 1px solid #bfe6c9; color: #216b3b;
  padding: 15px 18px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 22px;
}
.form-success .icon { width: 18px; height: 18px; flex-shrink: 0; }

.form-error {
  display: none;
  background: #fdecec; border: 1px solid #f3b9b9; color: #a12626;
  padding: 15px 18px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 22px;
}

.submit-btn { width: 100%; justify-content: center; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-line { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed; top: 73px; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: stretch; padding: 20px 24px; gap: 4px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    transform: translateY(-150%); opacity: 0; transition: all 0.25s ease; max-height: 80vh; overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--border); }
  .main-nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .header-phone { display: none; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .hero { padding: 70px 0 90px; }
  .section { padding: 64px 0; }
  .contact-form-card, .contact-info-card { padding: 28px 22px; }
  .float-badge { display: none; }
  .about-float-card { position: static; margin-top: -40px; margin-inline: 16px; }
}
