/* ===================================================================
   Wevision Property — premium design system
=================================================================== */

:root {
  --navy: #0b1d33;
  --navy-deep: #060f1c;
  --navy-mid: #122c4d;
  --gold: #c9a227;
  --gold-light: #e9cd7a;
  --gold-soft: rgba(201,162,39,0.12);
  --cream: #faf7f0;
  --white: #ffffff;
  --ink: #1c2733;
  --grey: #61707d;
  --border: #e7e1d3;
  --radius: 10px;
  --radius-lg: 18px;
  --max-width: 1180px;
  --ease: cubic-bezier(.22,.68,0,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

p { margin: 0 0 1em; color: var(--grey); }

a { color: var(--navy); text-decoration: none; }

img { max-width: 100%; display: block; }

::selection { background: var(--gold); color: var(--navy-deep); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 10px; }

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

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  background: transparent;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6,15,28,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(201,162,39,0.18);
}

.site-header.solid {
  background: var(--navy-deep);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,162,39,0.18);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
}

.logo .mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.logo span { color: var(--gold); font-weight: 400; font-style: italic; }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.82);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 22px; }

.nav-cta {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep) !important;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 8px 20px rgba(201,162,39,0.25);
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,162,39,0.35); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s var(--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); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 195;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 30px; }
.mobile-menu a.active, .mobile-menu a:hover { color: var(--gold); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  box-shadow: 0 10px 26px rgba(201,162,39,0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201,162,39,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }

/* ---------- Hero (full bleed) ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 16s var(--ease) forwards;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: heroZoom 18s var(--ease) forwards;
  background: var(--navy-deep);
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,15,28,0.55) 0%, rgba(6,15,28,0.72) 55%, rgba(6,15,28,0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 120px;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--gold-light); }

.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
  margin-bottom: 24px;
}

.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }

.hero p.lead {
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold-light), transparent); animation: cueMove 2s ease-in-out infinite; }
@keyframes cueMove { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Page hero (inner pages, shorter) ---------- */

.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}
.page-hero .hero-content { padding: 200px 0 80px; max-width: 700px; }
.page-hero h1 { color: var(--white); font-size: clamp(34px, 5vw, 52px); }
.page-hero p.lead { color: rgba(255,255,255,0.82); font-size: 17px; margin-bottom: 0; }

/* ---------- Stats bar ---------- */

.stats-bar {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  z-index: 3;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 52px 0;
}

.stat { text-align: center; padding: 0 20px; position: relative; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--gold-light);
}

.stat .label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ---------- Sections ---------- */

section { padding: 120px 0; }

.section-head { max-width: 660px; margin: 0 auto 64px; text-align: center; }
.section-head.left { margin: 0 0 56px; text-align: left; }
.section-head .eyebrow { color: var(--gold); }
.section-head .eyebrow::before { background: var(--gold); }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }

.section-alt { background: var(--white); }
.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.68); }

/* ---------- Grid / cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(11,29,51,0.1);
  border-color: rgba(201,162,39,0.35);
}

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,162,39,0.16), rgba(201,162,39,0.05));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.card h3 { font-size: 19.5px; margin-bottom: 10px; }
.card p { margin-bottom: 0; }

.card-dark {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
}
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.65); }
.card-dark .icon { background: rgba(201,162,39,0.18); }

/* ---------- Split / feature blocks ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse .split-img { order: 2; }

.split-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.split-img img {
  width: 100%; height: 480px; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.split-img:hover img { transform: scale(1.06); }
.split-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: var(--radius-lg);
  margin: 14px;
  pointer-events: none;
}

.divider-gold { width: 60px; height: 2px; background: var(--gold); margin: 4px 0 26px; }

/* ---------- Property cards ---------- */

.property-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.property-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(11,29,51,0.14); }

.property-img { position: relative; overflow: hidden; height: 240px; }
.property-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.property-card:hover .property-img img { transform: scale(1.09); }

.property-card .body { padding: 26px 26px 30px; }

.property-card .tag {
  display: inline-block;
  background: var(--gold-soft);
  color: #8a6f1a;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.property-card h3 { font-size: 18.5px; margin-bottom: 6px; }
.property-card .meta { font-size: 14px; color: var(--grey); margin-bottom: 0; }

/* ---------- Steps ---------- */

.steps { max-width: 780px; margin: 0 auto; }

.step {
  display: flex;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(11,29,51,0.18);
}

.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { margin-bottom: 0; }

/* ---------- FAQ (accordion) ---------- */

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 26px 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p { padding: 0 4px 26px; margin: 0; }

/* ---------- Testimonials ---------- */

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
}
.testimonial .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 4px;
}
.testimonial p.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial .author { display: flex; align-items: center; gap: 14px; }
.testimonial .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 15px;
}
.testimonial .author .name { font-weight: 600; color: var(--navy); font-size: 14.5px; }
.testimonial .author .role { font-size: 13px; color: var(--grey); }

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.16) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; font-size: clamp(28px, 3.6vw, 40px); }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 34px; font-size: 17px; }

/* ---------- Contact ---------- */

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

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.contact-info-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 19px;
}

.contact-info-item h4 { margin-bottom: 4px; font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item p { margin-bottom: 0; }

.map-frame {
  width: 100%;
  height: 280px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 12px;
  filter: grayscale(0.15);
}

form.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 70px rgba(11,29,51,0.08);
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--navy);
}

.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-row textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  padding: 76px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-grid h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-grid p, .footer-grid a {
  color: rgba(255,255,255,0.55);
  font-size: 14.5px;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid a { transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 26px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Back to top ---------- */

.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  border: 1px solid rgba(201,162,39,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 150;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--navy-deep); }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-content, .page-hero .hero-content { padding-left: 4px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-img { order: 0; }
  .grid-3, .grid-2, .grid-4, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .stat:nth-child(2)::after { display: none; }
  .stat::after { display: none; }
  .nav-links, .nav-right .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: clamp(28px, 8vw, 38px); }
  section { padding: 80px 0; }
  .hero-content { padding: 140px 0 90px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-wrap { padding: 0 20px; }
  .logo { font-size: 18px; gap: 8px; }
  .logo .mark { width: 32px; height: 32px; font-size: 14px; }
  .hero-content { padding: 120px 0 70px; max-width: 100%; }
  .hero h1 { font-size: clamp(26px, 8.5vw, 34px); line-height: 1.18; }
  .hero p.lead { font-size: 16px; max-width: 100%; }
  .eyebrow { font-size: 11px; letter-spacing: 2px; }
  .page-hero { min-height: 46vh; }
  .page-hero .hero-content { padding: 130px 0 50px; }
  .page-hero h1 { font-size: clamp(24px, 8vw, 32px); }
  .page-hero p.lead { font-size: 15px; }
  .section-head h2 { font-size: clamp(24px, 7vw, 30px); }
  .section-head { margin-bottom: 40px; }
  section { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 36px 0; row-gap: 24px; }
  .stat .num { font-size: 28px; }
  .stat .label { font-size: 11px; letter-spacing: 0.8px; }
  .card { padding: 26px 22px; }
  .testimonial { padding: 28px 24px; }
  .testimonial p.quote { font-size: 16px; }
  .step { gap: 18px; padding: 24px 0; }
  .step-num { width: 40px; height: 40px; font-size: 16px; }
  .step h3 { font-size: 17px; }
  form.contact-form { padding: 26px; }
  .cta-banner { padding: 64px 0; }
  .cta-banner h2 { font-size: clamp(24px, 7vw, 30px); }
  .footer-grid { gap: 32px; margin-bottom: 36px; }
  .hero-actions .btn, .btn { font-size: 13.5px; padding: 13px 22px; }
  .mobile-menu a { font-size: 24px; }
}
