/* ═══════════════════════════════════════
   MERIDIAN PROPERTY CARE — Global Styles
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

:root {
  --navy:       #1D3A5F;
  --navy-deep:  #152d4a;
  --navy-mid:   #1a3557;
  --gold:       #C9A84C;
  --gold-dim:   rgba(201,168,76,0.18);
  --gold-faint: rgba(201,168,76,0.07);
  --white:      #FFFFFF;
  --ivory:      #F8F6F2;
  --slate:      #4A5568;
  --slate-light:#6B7A8D;
  --border:     rgba(201,168,76,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── GRID TEXTURE ── */
.grid-texture {
  position: relative;
}
.grid-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gold-faint) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold-faint) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.grid-texture > * { position: relative; z-index: 1; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0 56px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo svg { flex-shrink: 0; }
.nav-wordmark { line-height: 1; }
.nav-wordmark .n1 {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-wordmark .n2 {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 7px;
  font-weight: 300;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 10px 22px;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .mobile-cta {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 14px 32px;
  margin-top: 8px;
}
.nav-mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

/* ══════════════════════════════════
   TYPOGRAPHY SYSTEM
══════════════════════════════════ */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(201,168,76,0.45);
  flex-shrink: 0;
}
.eyebrow.no-rule::before,
.eyebrow.no-rule::after { display: none; }

.display-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.015em;
  color: var(--white);
}
.display-headline em {
  font-style: italic;
  color: var(--gold);
}

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--white);
}
.section-headline em { font-style: italic; color: var(--gold); }
.section-headline.dark { color: var(--navy); }

.sub-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.03em;
}
.sub-headline.dark { color: var(--slate); }

.body-text {
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
}
.body-text.dark { color: var(--slate); }
.body-text.centered { margin: 0 auto; text-align: center; max-width: 680px; }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 16px 40px;
  transition: opacity 0.25s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 16px 40px;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  background: none;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text:hover { color: var(--gold); border-color: rgba(201,168,76,0.4); }

/* ══════════════════════════════════
   SECTIONS
══════════════════════════════════ */
.section {
  padding: 100px 56px;
}
.section.sm { padding: 64px 56px; }
.section.navy { background: var(--navy); }
.section.deep { background: var(--navy-deep); }
.section.ivory { background: var(--ivory); }

.container {
  max-width: 1160px;
  margin: 0 auto;
}

.section-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Gold rule divider */
.gold-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 20px 0;
}
.gold-rule.wide { width: 100%; }

/* ══════════════════════════════════
   NAVIGATOR MARK SVG (inline)
══════════════════════════════════ */
.mark-svg { display: block; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 100px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-rule {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.12) 15%,
    rgba(201,168,76,0.3) 50%,
    rgba(201,168,76,0.12) 85%,
    transparent 100%);
  top: 50%;
  transform: translateY(-40px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-mark { margin-bottom: 40px; }

.hero-eyebrow { margin-bottom: 24px; }

.hero-headline { margin-bottom: 16px; }

.hero-sub { margin-bottom: 44px; }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Path cards */
.path-cards {
  display: flex;
  border: 1px solid var(--border);
}
.path-card {
  padding: 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255,255,255,0.025);
  transition: background 0.25s;
  cursor: pointer;
  text-decoration: none;
  min-width: 200px;
}
.path-card:hover { background: rgba(201,168,76,0.06); }
.path-card + .path-card { border-left: 1px solid var(--border); }
.path-label {
  font-size: 8.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.path-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.path-arrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(201,168,76,0.6);
}

/* Trust bar */
.trust-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  background: rgba(21,45,74,0.7);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; opacity: 0.65; }
.trust-text strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.trust-text span {
  font-size: 9.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════
   POSITIONING STATEMENT
══════════════════════════════════ */
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--navy);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}

/* ══════════════════════════════════
   SERVICES OVERVIEW
══════════════════════════════════ */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.service-col {
  background: var(--navy);
  padding: 48px 40px;
}
.service-col-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-col-intro {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 28px;
}
.service-col-list { list-style: none; }
.service-col-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-col-list li:last-child { border-bottom: none; }
.service-col-list li::after {
  content: '→';
  font-size: 12px;
  color: rgba(201,168,76,0.4);
}

/* ══════════════════════════════════
   MERIDIAN DIFFERENCE
══════════════════════════════════ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(29,58,95,0.15);
  border: 1px solid rgba(29,58,95,0.15);
  margin-top: 48px;
}
.diff-card {
  background: var(--ivory);
  padding: 36px 28px;
  position: relative;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.diff-card:hover::before { opacity: 1; }
.diff-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.diff-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.diff-desc {
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.75;
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  padding: 40px 32px;
}
.testimonial-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-attr {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════
   FINAL CTA
══════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 100px 40px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.final-cta .contact-detail {
  margin-top: 24px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
}
.final-cta .contact-detail a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.final-cta .contact-detail a:hover { color: var(--gold); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 56px 56px 32px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-col-title {
  font-size: 8.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col-links { list-style: none; }
.footer-col-links li {
  margin-bottom: 10px;
}
.footer-col-links a {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
}

/* ══════════════════════════════════
   PAGE HERO (interior pages)
══════════════════════════════════ */
.page-hero {
  min-height: 52vh;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 120px 56px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════
   SERVICES LIST (interior pages)
══════════════════════════════════ */
.service-row {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}
.service-row:last-child { border-bottom: none; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  padding-top: 4px;
}
.service-content {}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-desc {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 680px;
}

/* Addons grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(29,58,95,0.12);
  border: 1px solid rgba(29,58,95,0.12);
  margin-top: 40px;
}
.addon-card {
  background: var(--ivory);
  padding: 24px 20px;
  transition: background 0.2s;
}
.addon-card:hover { background: #f0ece4; }
.addon-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 5px;
}
.addon-desc {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--slate-light);
  line-height: 1.6;
}

/* Why section grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.03);
  padding: 36px 32px;
}
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-title::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.why-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  padding-left: 34px;
}

/* ══════════════════════════════════
   CONTACT FORM
══════════════════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.contact-left {
  background: var(--navy);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-right {
  background: var(--ivory);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: white;
  border: 1px solid rgba(29,58,95,0.12);
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-info-item {
  margin-bottom: 28px;
}
.contact-info-label {
  font-size: 8.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
}
.contact-info-note {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 8px;
}

/* ══════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 72px 32px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 20px; }
  .hero { padding: 100px 24px 80px; }
  .hero-ctas { flex-direction: column; gap: 14px; }
  .path-cards { flex-direction: column; }
  .path-card + .path-card { border-left: none; border-top: 1px solid var(--border); }
  .trust-bar { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .services-split { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 24px 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  footer { padding: 40px 20px 24px; }
  .service-row { grid-template-columns: 56px 1fr; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}
