/* ============================================================
   MIA MADISON PROPERTIES — DESIGN SYSTEM
   Palette: Deep Navy #0D1B2A | Warm White #F8F6F1 | Gold #C9A84C
            Slate #4A5568 | Light Slate #E8EDF2 | Success Green #2D6A4F
   Type: Playfair Display (display) / Inter (body)
   ============================================================ */

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

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #162435;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --warm-white: #F8F6F1;
  --white:      #FFFFFF;
  --slate:      #4A5568;
  --slate-light:#E8EDF2;
  --teal:       #00B2A9;
  --teal-dark:  #008F87;
  --green:      #2D6A4F;
  --border:     #DDD8CE;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg:  0 8px 48px rgba(13,27,42,0.16);
  --transition: 0.22s ease;
  --max-width:  1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--slate); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all var(--transition);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--teal); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8) !important;
  border-radius: 0 !important;
}
.dropdown-menu a:hover { color: var(--gold) !important; background: rgba(201,168,76,0.08); }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.75) 100%),
    url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1600&q=80') center/cover no-repeat;
}
.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.06) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-text h1 span { color: var(--gold); }
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Hero Card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.hero-card p {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.hero-card-tabs {
  display: flex;
  background: var(--slate-light);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 1.5rem;
}
.tab-btn {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
}
.hero-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--warm-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: #aaa; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-icon { color: var(--teal); font-size: 1.1rem; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.card p  { font-size: 0.9rem; }

/* ── BENEFITS SPLIT ── */
.benefits-split {
  background: var(--navy);
  padding: 5rem 0;
}
.benefits-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.benefit-tab {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(201,168,76,0.4);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.benefit-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.benefit-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
}
.benefit-card .b-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.benefit-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.benefit-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── PRICING ── */
.pricing-section { background: var(--warm-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-unit { font-size: 1rem; font-weight: 400; color: var(--slate); }
.price-desc { font-size: 0.85rem; color: var(--slate); margin: 0.5rem 0 1.5rem; }
.price-features { margin-bottom: 2rem; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--slate);
  border-bottom: 1px solid var(--slate-light);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--teal);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--slate); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-role { font-size: 0.78rem; color: var(--slate); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a2a 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,178,169,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-main { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.footer-brand .logo-sub  { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-top: 1rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }
.footer-license { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── INTERIOR PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--slate);
}
.checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 1.75rem; }
.blog-tag {
  display: inline-block;
  background: var(--slate-light);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card p  { font-size: 0.875rem; margin-bottom: 1.25rem; }
.blog-meta { font-size: 0.78rem; color: var(--slate); }

/* ── RESOURCE LINKS ── */
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.resource-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.resource-link:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.resource-link-icon {
  width: 40px; height: 40px;
  background: var(--slate-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.resource-link-text strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.15rem; }
.resource-link-text span  { font-size: 0.78rem; color: var(--slate); }

/* ── AREA PAGES ── */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.area-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow); }
.area-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.area-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.area-card p  { font-size: 0.85rem; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--gold); font-family: 'Inter', sans-serif; font-weight: 300; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  padding-top: 1rem;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── REFERRAL PROGRAM ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h4 { margin-bottom: 0.5rem; }
.step p  { font-size: 0.875rem; }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 640px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { appearance: none; }

/* ── SPLIT SECTION ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-lg);
  height: 480px;
  background: var(--slate-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  overflow: hidden;
}

/* ── COMMERCIAL ── */
.commercial-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.comm-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all var(--transition);
}
.comm-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.comm-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.comm-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.comm-card p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .hero-content    { grid-template-columns: 1fr; }
  .hero-card       { max-width: 480px; }
  .grid-4          { grid-template-columns: repeat(2, 1fr); }
  .area-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid      { grid-template-columns: repeat(2, 1fr); }
  .commercial-types{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .nav-links.mobile-open .nav-cta { display: block; margin: 0.5rem 0 0; }
  .grid-2, .grid-3, .pricing-grid, .testimonial-grid, .blog-grid, .split-section { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .commercial-types { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-card.featured { transform: scale(1); }
  .section { padding: 3.5rem 0; }
  .split-section.reverse { direction: ltr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .area-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-tabs { flex-direction: column; align-items: center; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.bg-navy     { background: var(--navy); }
.bg-warm     { background: var(--warm-white); }
.bg-white    { background: var(--white); }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.hidden { display: none !important; }

/* ── BLOG POST PAGE ── */
.blog-post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.blog-post-content h2 { margin: 2.5rem 0 1rem; font-size: 1.6rem; }
.blog-post-content h3 { margin: 2rem 0 0.75rem; }
.blog-post-content p  { margin-bottom: 1.25rem; font-size: 1rem; color: var(--slate); line-height: 1.8; }
.blog-post-content ul { margin: 0 0 1.25rem 1.5rem; list-style: disc; }
.blog-post-content ul li { color: var(--slate); font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.7; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  box-shadow: var(--shadow);
  z-index: 999;
  transition: all var(--transition);
}
.scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }
.scroll-top.visible { display: flex; }
