/* ============================================
   Elite Repairs — Refined Classy Design System
   Greys · Whites · Golds · Minimal Black
   ============================================ */

:root {
  /* Palette */
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --cream: #F3F1EC;
  --grey-50: #F5F5F4;
  --grey-100: #E8E7E4;
  --grey-200: #D4D2CD;
  --grey-300: #B0ADA6;
  --grey-400: #8A8780;
  --grey-500: #6B6862;
  --grey-600: #4A4742;
  --grey-700: #2F2D2A;
  --grey-800: #1C1B19;
  --charcoal: #1A1917;
  --gold: #C9A84C;
  --gold-light: #E0C878;
  --gold-dark: #A88B35;
  --gold-muted: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.35);

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;

  /* Spacing & layout */
  --container: 1120px;
  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(26, 25, 23, 0.06);
  --shadow-card: 0 8px 40px rgba(26, 25, 23, 0.08);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-700);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

/* Subtle grain texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--grey-700);
  border: 1.5px solid var(--grey-200);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-muted);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-xl {
  padding: 20px 44px;
  font-size: 18px;
  font-weight: 600;
}

.btn-full {
  width: 100%;
}

.btn svg {
  flex-shrink: 0;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.header.scrolled {
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--grey-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  border-radius: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

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

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-600);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav a:hover {
  color: var(--charcoal);
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  padding: 11px 22px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--gold-dark);
}

.mobile-cta {
  margin-top: 16px;
  font-size: 16px;
  padding: 16px 32px;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--grey-100) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grey-100) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.eyebrow.gold {
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title .gold {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  color: var(--grey-500);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
}

.stat-label {
  font-size: 13px;
  color: var(--grey-400);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--grey-200);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid var(--grey-300);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.6;
}

.scroll-hint span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(8px); }
}

/* ========== Services ========== */
.services {
  padding: 100px 0 120px;
  background: var(--white);
  position: relative;
}

.section-header {
  margin-bottom: 56px;
  max-width: 520px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--grey-500);
  line-height: 1.7;
}

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

.service-card {
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-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);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--grey-200);
  background: var(--white);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  color: var(--gold-dark);
  border-radius: 14px;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 15px;
  color: var(--grey-500);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-list {
  margin-bottom: 24px;
}

.service-list li {
  font-size: 14px;
  color: var(--grey-600);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover {
  color: var(--charcoal);
}

/* ========== Results / Before & After ========== */
.results {
  padding: 100px 0 110px;
  background: var(--off-white);
  position: relative;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--grey-200);
}

.result-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--grey-100);
}

.result-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.result-card:hover .result-img-wrap img {
  transform: scale(1.04);
}

.result-card figcaption {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.result-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.result-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}

.result-card figcaption p {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.55;
  margin-top: 4px;
}

.results-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.results-cta p {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-500);
}

/* Stagger for results cards */
.result-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.result-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.result-card.reveal:nth-child(3) { transition-delay: 0.25s; }

/* ========== Why Us ========== */
.why {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.why-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--grey-500);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  min-width: 32px;
  padding-top: 2px;
}

.why-list strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.why-list p {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.55;
}

.why-card {
  position: relative;
}

.why-card-inner {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.why-card-inner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.why-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.why-card-inner h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-card-inner > p {
  font-size: 15px;
  color: var(--grey-300);
  line-height: 1.6;
  margin-bottom: 32px;
}

.why-card-note {
  font-size: 12px;
  color: var(--grey-400);
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.02em;
}

/* ========== Areas ========== */
.areas {
  padding: 100px 0;
  background: var(--white);
}

.areas-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.areas-pills span {
  display: inline-block;
  padding: 10px 20px;
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-600);
  transition: all var(--transition);
}

.areas-pills span:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-muted);
}

/* ========== CTA ========== */
.cta {
  padding: 100px 0 120px;
  background: var(--off-white);
}

.cta-box {
  background: linear-gradient(145deg, var(--charcoal) 0%, #2A2825 100%);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.cta-box .eyebrow {
  margin-bottom: 16px;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--grey-300);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.65;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

.cta-hours {
  font-size: 13px;
  color: var(--grey-400);
  margin-top: 20px;
  position: relative;
}

/* ========== Footer ========== */
.footer {
  background: var(--charcoal);
  color: var(--grey-300);
  padding-top: 64px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-text em {
  color: var(--gold);
}

.footer-brand p {
  font-size: 14px;
  color: var(--grey-400);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-phone:hover {
  color: var(--gold-light);
}

.footer-contact p {
  font-size: 13px;
  color: var(--grey-400);
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--grey-500);
}

/* ========== Floating Call Bar (Mobile) ========== */
.float-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 24px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(201, 168, 76, 0.35);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.float-call.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.float-call svg {
  flex-shrink: 0;
}

/* ========== Reveal Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children slightly via delay classes or JS */
.service-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.25s; }

.why-list li.reveal:nth-child(1) { transition-delay: 0.1s; }
.why-list li.reveal:nth-child(2) { transition-delay: 0.2s; }
.why-list li.reveal:nth-child(3) { transition-delay: 0.3s; }

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .results-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-card-inner {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: calc(var(--header-h) + 40px) 0 100px;
    min-height: auto;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  .services {
    padding: 72px 0 80px;
  }

  .results {
    padding: 72px 0 80px;
  }

  .why {
    padding: 80px 0;
  }

  .areas {
    padding: 72px 0;
  }

  .cta {
    padding: 72px 0 100px;
  }

  .cta-box {
    padding: 52px 28px;
    border-radius: 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .float-call {
    display: flex;
  }

  /* Extra bottom padding so content isn't hidden behind float bar */
  body {
    padding-bottom: 64px;
  }

  .footer {
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-title {
    font-size: 38px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .why-card-inner h3 {
    font-size: 26px;
  }

  .btn-xl {
    padding: 18px 32px;
    font-size: 16px;
  }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
