/* ═══════════════════════════════════════════════════════
   MY OBITUARY – SHARED PREMIUM STYLES
   ═══════════════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #A68A3E;
  --deep-green: #1B3A2D;
  --forest: #2D5A45;
  --sage: #7A9E8E;
  --cream: #FDF8F0;
  --warm-white: #FEFCF8;
  --charcoal: #2A2A2A;
  --soft-black: #1A1A1A;
  --text-muted: #6B6B6B;
  --border-light: rgba(201,168,76,0.15);
  --shadow-luxury: 0 25px 60px rgba(27,58,45,0.12);
  --shadow-card: 0 15px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 25px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── CURSOR GLOW ─── */
.cursor-glow {
  position: fixed; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: opacity 0.3s;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }
.serif-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.display-hero {
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1.08;
  letter-spacing: -0.03em; font-weight: 700;
}
.display-section {
  font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.15;
  letter-spacing: -0.02em; font-weight: 600;
}
.display-medium {
  font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2;
  font-weight: 600;
}
.subtitle {
  font-size: 1.15rem; line-height: 1.7; color: var(--text-muted);
  font-weight: 400; max-width: 580px;
}
.label-tag {
  font-family: 'DM Sans', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-dark); display: inline-flex; align-items: center; gap: 8px;
}
.label-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── BUTTONS ─── */
.btn-premium {
  background: var(--deep-green); color: #fff; padding: 16px 40px;
  border-radius: 60px; font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.02em; border: none; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}
.btn-premium::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.btn-premium:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 12px 35px rgba(27,58,45,0.3);
}
.btn-premium:hover::before { opacity: 1; }
.btn-premium span, .btn-premium i { position: relative; z-index: 1; }
.btn-premium:hover i { transform: translateX(4px); }

.btn-outline-gold {
  border: 1.5px solid var(--gold); color: var(--deep-green); padding: 14px 36px;
  border-radius: 60px; font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 0.95rem; background: transparent; cursor: pointer;
  transition: var(--transition); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-outline-gold:hover {
  background: var(--gold); color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.btn-white {
  background: #fff; color: var(--deep-green); padding: 16px 40px;
  border-radius: 60px; font-weight: 600; font-size: 0.95rem; border: none;
  cursor: pointer; transition: var(--transition); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-white:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.btn-cta-gold {
  background: var(--gold); color: #fff; padding: 18px 50px;
  border-radius: 60px; font-weight: 600; font-size: 1rem; border: none;
  cursor: pointer; transition: var(--transition); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-cta-gold:hover {
  background: var(--gold-light); color: var(--deep-green);
  transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201,168,76,0.3);
}

/* ─── NAVBAR ─── */
.navbar-premium {
  padding: 18px 0; background: rgba(253,248,240,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  position: fixed; width: 100%; top: 0; z-index: 1000; transition: var(--transition);
}
.navbar-premium.scrolled {
  padding: 12px 0; background: rgba(253,248,240,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
  color: var(--deep-green); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-link-custom {
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  color: var(--charcoal) !important; padding: 8px 20px !important;
  transition: var(--transition); position: relative; text-decoration: none;
}
.nav-link-custom::after {
  content: ''; position: absolute; bottom: 4px; left: 20px; right: 20px;
  height: 1.5px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.nav-link-custom:hover::after { transform: scaleX(1); }
.nav-link-custom:hover { color: var(--deep-green) !important; }

/* ─── MEGA MENU ─── */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown .nav-link-custom { display: inline-flex; align-items: center; gap: 5px; }
.nav-item-dropdown .nav-link-custom .chevron {
  font-size: 0.6rem; transition: transform 0.3s; margin-top: 1px;
}
.nav-item-dropdown:hover .nav-link-custom .chevron { transform: rotate(180deg); }
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: 720px; background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 32px; opacity: 0; visibility: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%) translateY(10px);
  z-index: 1001; pointer-events: none;
}
.nav-item-dropdown:hover .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu::before {
  content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; background: #fff; border-radius: 3px;
  rotate: 45deg; box-shadow: -1px -1px 0 rgba(0,0,0,0.04);
}
/* Invisible hover bridge so menu doesn't close between link and dropdown */
.nav-item-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0;
  height: 20px; background: transparent;
}
.mega-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mega-menu-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px;
  border-radius: 12px; text-decoration: none; color: var(--charcoal);
  transition: all 0.25s ease;
}
.mega-menu-item:hover { background: var(--cream); color: var(--charcoal); }
.mega-menu-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(27,58,45,0.07), rgba(201,168,76,0.07));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--deep-green); transition: all 0.25s;
}
.mega-menu-item:hover .mega-menu-icon {
  background: var(--deep-green); color: var(--gold-light);
}
.mega-menu-item-title {
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
  margin-bottom: 2px; line-height: 1.3;
}
.mega-menu-item-desc {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.4;
}
.mega-menu-footer {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: center; justify-content: space-between;
}
.mega-menu-footer-link {
  font-size: 0.82rem; font-weight: 600; color: var(--deep-green);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.mega-menu-footer-link:hover { color: var(--gold); }
.mega-menu-footer-link i { font-size: 0.7rem; transition: transform 0.3s; }
.mega-menu-footer-link:hover i { transform: translateX(3px); }

/* ─── MOBILE NAV ─── */
.nav-hamburger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border-light);
  border-radius: 10px; background: transparent; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  transition: var(--transition);
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px; background: var(--charcoal);
  border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(253,248,240,0.98); backdrop-filter: blur(20px);
  z-index: 999; padding: 100px 24px 40px; overflow-y: auto;
}
.mobile-nav.active { display: block; animation: fadeInUp 0.3s ease; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--border-light);
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500;
  color: var(--charcoal); text-decoration: none; transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-sub { padding-left: 16px; display: none; }
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub a {
  display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03); font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text-muted); text-decoration: none;
  transition: var(--transition);
}
.mobile-nav-sub a:hover { color: var(--deep-green); }
.mobile-nav-sub a i { width: 20px; color: var(--deep-green); font-size: 0.85rem; }

@media (max-width: 991px) {
  .mega-menu { display: none !important; }
  .nav-hamburger { display: flex; }
  .desktop-nav { display: none !important; }
  .desktop-actions .nav-link-custom { display: none !important; }
}

/* ─── PAGE HERO (Feature Pages) ─── */
.page-hero {
  position: relative; min-height: 75vh; display: flex; align-items: center;
  padding-top: 100px; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,58,45,0.92) 0%, rgba(26,26,26,0.8) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; color: #fff;
}
.page-hero-content h1 { color: #fff; }
.page-hero-content .subtitle { color: rgba(255,255,255,0.6); }
.page-hero-content .label-tag { color: var(--gold-light); }

/* ─── SECTIONS ─── */
.section-padding { padding: 120px 0; }
.section-padding-lg { padding: 140px 0; }
.section-dark { background: var(--soft-black); color: #fff; }
.section-dark .subtitle { color: rgba(255,255,255,0.55); }
.section-dark .label-tag { color: var(--gold-light); }
.section-cream { background: var(--cream); }
.section-green { background: var(--deep-green); color: #fff; }
.section-green .subtitle { color: rgba(255,255,255,0.6); }

/* ─── FEATURE DETAIL CARDS ─── */
.detail-card {
  background: #fff; border-radius: var(--radius-lg); padding: 48px 40px;
  border: 1px solid rgba(0,0,0,0.04); transition: var(--transition); height: 100%;
  position: relative; overflow: hidden;
}
.detail-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform 0.5s; transform-origin: left;
}
.detail-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.detail-card:hover::before { transform: scaleX(1); }
.detail-card-icon {
  width: 68px; height: 68px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(27,58,45,0.08), rgba(201,168,76,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--deep-green); margin-bottom: 24px;
}
.detail-card h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.detail-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ─── SCREENSHOT / MOCKUP CONTAINERS ─── */
.showcase-img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-luxury);
  object-fit: cover;
}
.mockup-browser {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-luxury); border: 1px solid rgba(0,0,0,0.06);
}
.mockup-browser-bar {
  background: #f5f5f5; padding: 14px 20px; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green { background: #28CA41; }
.mockup-browser-url {
  flex: 1; margin-left: 12px; background: #e8e8e8; border-radius: 6px;
  padding: 6px 14px; font-size: 0.75rem; color: #999;
}
.mockup-browser-body img { width: 100%; display: block; }

/* ─── FEATURE CHECK LIST ─── */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 1rem;
  color: var(--charcoal); line-height: 1.6;
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--forest); font-size: 0.9rem; margin-top: 5px; flex-shrink: 0; }
.check-list.on-dark li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.08); }
.check-list.on-dark li i { color: var(--gold); }

/* ─── STATS ROW ─── */
.stats-row {
  display: flex; gap: 60px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700;
  line-height: 1; color: var(--deep-green);
}
.stat-number.on-dark { color: var(--gold-light); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
.stat-label.on-dark { color: rgba(255,255,255,0.5); }

/* ─── COMPARISON TABLE ─── */
.comparison-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
}
.comparison-table thead th {
  background: var(--deep-green); color: #fff; padding: 20px 24px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
  text-align: left; letter-spacing: 0.02em;
}
.comparison-table thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.comparison-table tbody td {
  padding: 18px 24px; border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.95rem; vertical-align: middle;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--forest); }
.comparison-table .cross { color: #ccc; }

/* ─── PROCESS STEPS ─── */
.process-step {
  display: flex; align-items: flex-start; gap: 28px; margin-bottom: 48px;
}
.process-num {
  width: 56px; height: 56px; min-width: 56px; border-radius: 50%;
  background: var(--deep-green); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
}
.process-step h4 { font-size: 1.2rem; margin-bottom: 6px; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ─── TESTIMONIAL INLINE ─── */
.testimonial-inline {
  background: #fff; border-radius: var(--radius-lg); padding: 48px;
  border: 1px solid rgba(0,0,0,0.04); position: relative;
}
.testimonial-inline::before {
  content: '\201C'; font-family: 'Playfair Display', serif;
  font-size: 6rem; color: var(--gold-light); position: absolute;
  top: 20px; left: 36px; line-height: 1;
}
.testimonial-inline-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem;
  line-height: 1.7; font-style: italic; color: var(--charcoal);
  margin-bottom: 24px; padding-left: 10px;
}
.testimonial-inline-author {
  display: flex; align-items: center; gap: 14px; padding-left: 10px;
}
.testimonial-inline-author img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
}
.testimonial-inline-author .name { font-weight: 600; font-size: 0.95rem; }
.testimonial-inline-author .role { font-size: 0.8rem; color: var(--text-muted); }

/* ─── CTA BAND ─── */
.cta-band {
  position: relative; padding: 100px 0; overflow: hidden; text-align: center;
}
.cta-band-bg {
  position: absolute; inset: 0;
}
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,58,45,0.94) 0%, rgba(13,43,32,0.96) 100%);
}
.cta-band-content { position: relative; z-index: 2; color: #fff; }
.cta-band-content h2 { color: #fff; }
.cta-band-content .subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 40px; }

/* ─── FOOTER ─── */
.footer-premium {
  background: var(--soft-black); color: rgba(255,255,255,0.6); padding: 80px 0 40px;
}
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 320px; margin-bottom: 24px; }
.footer-title {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 24px;
}
.footer-link {
  display: block; color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.9rem; padding: 6px 0; transition: var(--transition);
}
.footer-link:hover { color: var(--gold); transform: translateX(4px); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px; margin-top: 60px; text-align: center; font-size: 0.85rem;
}
.footer-gold-line { width: 60px; height: 2px; background: var(--gold); margin-bottom: 30px; }

/* ─── IMAGE GRID LAYOUTS ─── */
.img-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.img-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.img-grid-2 img, .img-grid-3 img {
  width: 100%; border-radius: var(--radius); object-fit: cover; height: 280px;
}
.img-rounded { border-radius: var(--radius-lg); }
.img-shadow { box-shadow: var(--shadow-luxury); }

/* ─── ICON BOX (for feature grids) ─── */
.icon-box {
  text-align: center; padding: 40px 24px;
}
.icon-box-circle {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(27,58,45,0.08), rgba(201,168,76,0.08));
  color: var(--deep-green); transition: var(--transition);
}
.icon-box:hover .icon-box-circle {
  background: var(--deep-green); color: var(--gold-light); transform: scale(1.1);
}
.icon-box h5 { font-size: 1.05rem; margin-bottom: 8px; }
.icon-box p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BREADCRUMB ─── */
.breadcrumb-premium {
  display: flex; align-items: center; gap: 10px; list-style: none;
  padding: 0; margin: 0 0 20px; font-size: 0.85rem;
}
.breadcrumb-premium li a {
  color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition);
}
.breadcrumb-premium li a:hover { color: var(--gold-light); }
.breadcrumb-premium li.active { color: rgba(255,255,255,0.9); }
.breadcrumb-premium .sep { color: rgba(255,255,255,0.3); }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .page-hero { min-height: 60vh; }
  .stats-row { gap: 30px; }
  .img-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-padding { padding: 80px 0; }
  .section-padding-lg { padding: 100px 0; }
  .page-hero { min-height: 50vh; padding-top: 80px; }
  .stats-row { gap: 20px; justify-content: center; }
  .img-grid-2 { grid-template-columns: 1fr; }
  .img-grid-3 { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table thead th, .comparison-table tbody td { padding: 14px 16px; }
}
