/* ============================================================
   Mezan Dental Perfections — Design System
   Brand: violet #7B28EA · accent #C7E6F9 · ink #15121C
   Fonts: Outfit (display) · Plus Jakarta Sans (body) · Inter (meta)
   ============================================================ */

:root {
  --violet: #7b28ea;
  --violet-700: #6a1fd1;
  --violet-900: #4a129e;
  --violet-100: #f0e6fd;
  --violet-50: #faf6ff;
  --blue-soft: #c7e6f9;
  --blue-soft-50: #f0f8fe;
  --ink: #15121c;
  --ink-soft: #4a4560;
  --ink-faint: #6f6a85;
  --line: #e8e2f2;
  --white: #ffffff;
  --whatsapp: #22c55e;
  --whatsapp-dark: #16a34a;
  --star: #f5a623;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(21, 18, 28, 0.05), 0 4px 14px rgba(21, 18, 28, 0.05);
  --shadow-md: 0 6px 24px rgba(74, 18, 158, 0.10);
  --shadow-lg: 0 18px 50px rgba(74, 18, 158, 0.16);
  --container: 1160px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-meta: "Inter", system-ui, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet-700); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--violet-900); }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.3em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.16;
  letter-spacing: -0.015em;
  margin: 0 0 0.55em;
  font-weight: 700;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }

.container { width: min(var(--container), 92%); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-tight { padding: clamp(2.2rem, 4vw, 3.5rem) 0; }

/* Eyebrow + section heads */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-meta);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-700);
  background: var(--violet-100);
  padding: 0.45em 0.95em;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.section-head { max-width: 760px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease, color 0.2s ease;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn svg { flex: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-700) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(123, 40, 234, 0.32);
}
.btn-primary:hover { background: linear-gradient(135deg, #8a3bf0 0%, var(--violet-700) 100%); color: #fff; box-shadow: 0 12px 28px rgba(123, 40, 234, 0.42); transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.30);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(34, 197, 94, 0.40); }

.btn-outline {
  background: transparent;
  color: var(--violet-700);
  border-color: var(--violet);
}
.btn-outline:hover { background: var(--violet-50); color: var(--violet-900); }

.btn-white {
  background: #fff;
  color: var(--violet-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); color: var(--violet-900); }

.btn-sm { padding: 0.62em 1.25em; font-size: 0.95rem; }
.btn-lg { padding: 1em 2em; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(21, 18, 28, 0.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; line-height: 1.1; color: var(--ink); }
.brand-name span { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--violet-700); }

.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a {
  font-family: var(--font-meta);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3em 0;
}
.nav a:hover { color: var(--violet-700); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--violet);
  border-radius: 2px;
  transition: width 0.22s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--violet-700); }
.header-cta { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.header-cta .phone-chip {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-family: var(--font-meta); font-weight: 600; font-size: 0.95rem;
  color: var(--ink);
}
.header-cta .phone-chip:hover { color: var(--violet-700); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
  border-radius: 10px;
}
.nav-toggle:hover { background: var(--violet-50); }
.nav-toggle span { display: block; height: 2.4px; width: 100%; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 1.4rem;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 0.72rem 0;
  border-bottom: 1px dashed var(--line);
}
.mobile-menu a:hover { color: var(--violet-700); }
.mobile-menu .btn { margin-top: 1.1rem; }

/* ============ Hero (home) ============ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(199, 230, 249, 0.55) 0%, rgba(199, 230, 249, 0) 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(123, 40, 234, 0.10) 0%, rgba(123, 40, 234, 0) 55%),
    linear-gradient(180deg, var(--violet-50) 0%, #ffffff 100%);
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55em;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink-soft); font-family: var(--font-meta); font-weight: 600;
  font-size: 0.82rem; padding: 0.5em 1em; border-radius: 999px;
  box-shadow: var(--shadow-sm); margin-bottom: 1.3rem;
}
.hero-badge svg { color: var(--star); }
.hero h1 { margin-bottom: 0.35em; }
.hero h1 em { font-style: normal; color: var(--violet-700); }
.hero .lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 34em; margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0.9rem 1.6rem; align-items: center; }
.hero-proof .stat { display: flex; align-items: center; gap: 0.7rem; }
.hero-proof .stat strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); display: block; line-height: 1.1; }
.hero-proof .stat span { font-family: var(--font-meta); font-size: 0.8rem; color: var(--ink-faint); }

.hero-visual { position: relative; }
.hero-visual .main-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  width: 100%;
}
.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.85rem 1.1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-card .icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--violet-100); color: var(--violet-700);
  display: grid; place-items: center; flex: none;
}
.hero-card strong { display: block; font-family: var(--font-display); font-size: 0.98rem; line-height: 1.2; }
.hero-card span { font-family: var(--font-meta); font-size: 0.78rem; color: var(--ink-faint); }
.hero-card.hc-1 { top: 7%; left: -4%; }
.hero-card.hc-2 { bottom: 9%; right: -5%; }
.hero-card.hc-2 .icon { background: var(--blue-soft); color: #0b6aa8; }
.hero-card.hc-3 { bottom: -6%; left: 6%; }
.hero-card.hc-3 .icon { background: #e7f9ee; color: var(--whatsapp-dark); }

/* ============ Page hero (inner pages) ============ */
.page-hero {
  position: relative;
  background:
    radial-gradient(700px 340px at 90% -20%, rgba(199, 230, 249, 0.5) 0%, rgba(199, 230, 249, 0) 60%),
    linear-gradient(180deg, var(--violet-50), #ffffff);
  padding: clamp(2.8rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 0.3em; }
.page-hero p.lead { color: var(--ink-soft); max-width: 46em; font-size: 1.08rem; margin: 0; }

.breadcrumbs { font-family: var(--font-meta); font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.4em; align-items: center; }
.breadcrumbs a { color: var(--ink-faint); }
.breadcrumbs a:hover { color: var(--violet-700); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .cur { color: var(--ink-soft); font-weight: 600; }

/* ============ Cards / grids ============ */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #ddd3f3; }

.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--violet-100); color: var(--violet-700);
  margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 0; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  margin-top: 1.1rem; color: var(--violet-700);
}
.card .card-link svg { transition: transform 0.2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Service cards with images */
.service-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-card .thumb { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.service-card .body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.service-card .body h3 { font-size: 1.2rem; }
.service-card .body p { font-size: 0.95rem; flex: 1; }
.service-card .body .btn { margin-top: 1.2rem; align-self: flex-start; }

/* Feature / why-cards */
.feature-card { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature-card .icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 12px; display: grid; place-items: center;
  background: var(--blue-soft); color: #0b6aa8;
}
.feature-card:nth-child(odd) .icon { background: var(--violet-100); color: var(--violet-700); }
.feature-card h4 { margin-bottom: 0.2em; }
.feature-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* Doctor cards */
.doctor-card { text-align: center; padding: 0 0 1.8rem; overflow: hidden; }
.doctor-card .portrait { aspect-ratio: 1/1; width: 100%; object-fit: cover; }
.doctor-card .role-chip {
  display: inline-block; margin-top: 1.3rem;
  font-family: var(--font-meta); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--violet-700); background: var(--violet-100);
  padding: 0.4em 1em; border-radius: 999px;
}
.doctor-card h3 { margin: 0.7rem 0 0.15rem; }
.doctor-card .specialities { color: var(--ink-soft); font-size: 0.94rem; padding: 0 1.2rem; margin-bottom: 0; }

/* Reviews */
.review-card { display: flex; flex-direction: column; }
.review-card .stars { color: var(--star); margin-bottom: 0.85rem; }
.review-card blockquote { margin: 0 0 1.1rem; font-size: 1.02rem; color: var(--ink); line-height: 1.65; }
.review-card .author { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.review-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-700));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
}
.review-card .author strong { display: block; font-family: var(--font-display); font-size: 0.98rem; line-height: 1.2; }
.review-card .author span { font-family: var(--font-meta); font-size: 0.78rem; color: var(--ink-faint); }

/* Big rating banner */
.rating-banner {
  background: linear-gradient(135deg, var(--violet-900), var(--violet-700) 60%, var(--violet));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.rating-banner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 220px at 88% 0%, rgba(199, 230, 249, 0.28), transparent 60%);
}
.rating-banner > * { position: relative; z-index: 1; }
.rating-banner .big-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 7vw, 4.6rem); line-height: 1; }
.rating-banner .stars { color: var(--star); font-size: 1.35rem; margin: 0.25rem 0 0.35rem; }
.rating-banner p { margin: 0; opacity: 0.92; font-size: 0.98rem; }

/* ============ Steps / numbered ============ */
.step { position: relative; padding-left: 3.4rem; }
.step .num {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--violet-100); color: var(--violet-700);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  display: grid; place-items: center;
}
.step h3 { margin-bottom: 0.25em; }
.step p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }

/* ============ Alt backgrounds ============ */
.alt { background: var(--violet-50); }
.alt-soft { background: var(--blue-soft-50); }
.tint-line { background: linear-gradient(180deg, #fff, var(--violet-50) 18%, var(--violet-50) 82%, #fff); }

/* ============ Info table (hours) ============ */
.info-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.info-table th, .info-table td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); }
.info-table th { font-family: var(--font-meta); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); font-weight: 600; }
.info-table tr:last-child td { border-bottom: none; }
.info-table .closed { color: #b91c1c; font-weight: 600; }

/* ============ FAQ ============ */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: #d4c8f3; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--ink); text-align: left;
  padding: 1.15rem 1.3rem;
}
.faq-q .chev { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--violet-100); color: var(--violet-700); display: grid; place-items: center; transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--violet); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-a-inner { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); font-size: 0.99rem; }

/* ============ CTA band ============ */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% 120%, rgba(199, 230, 249, 0.25), transparent 60%),
    linear-gradient(135deg, var(--violet-900), var(--violet-700) 55%, var(--violet));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2.4rem, 5vw, 3.6rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 0.4em; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 40em; margin: 0 auto 1.8rem; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.cta-band .hint { font-family: var(--font-meta); font-size: 0.82rem; margin-top: 1.1rem; opacity: 0.85; }

/* ============ Contact cards ============ */
.contact-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; }
.contact-card .icon {
  width: 48px; height: 48px; flex: none; border-radius: 12px;
  background: var(--violet-100); color: var(--violet-700);
  display: grid; place-items: center;
}
.contact-card:nth-child(2) .icon { background: #e7f9ee; color: var(--whatsapp-dark); }
.contact-card:nth-child(3) .icon { background: var(--blue-soft); color: #0b6aa8; }
.contact-card:nth-child(4) .icon { background: #fff1d6; color: #b45309; }
.contact-card h3 { font-size: 1.08rem; margin-bottom: 0.15em; }
.contact-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.contact-card a { font-weight: 600; }

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); line-height: 0; }
.map-wrap iframe { width: 100%; height: 400px; border: 0; }

/* ============ Footer ============ */
.site-footer { background: var(--violet-900); color: rgba(255,255,255,0.85); margin-top: clamp(2rem, 5vw, 3.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; padding: 3.4rem 0 2.4rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; letter-spacing: 0.02em; }
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer-brand img { width: 200px; height: auto; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.95rem; margin: 0 0 1rem; color: rgba(255,255,255,0.75); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 0.28rem; opacity: 0.85; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 1.3rem 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-family: var(--font-meta); font-size: 0.82rem; color: rgba(255,255,255,0.6);
}

/* Floating WhatsApp */
.wa-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.05); color: #fff; box-shadow: 0 14px 36px rgba(22, 163, 74, 0.55); }
.wa-fab svg { width: 30px; height: 30px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Inline SVG defaults */
.icon-sm { width: 20px; height: 20px; }
.icon-md { width: 26px; height: 26px; }

/* ============ Responsive ============ */
@media (max-width: 1020px) {
  .nav, .header-cta .phone-chip { display: none; }
  .header-cta .btn { padding: 0.62em 1em; }
  .nav-toggle { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-card.hc-1 { left: 2%; }
  .hero-card.hc-2 { right: 2%; }
}

@media (max-width: 600px) {
  .header-cta .btn { display: none; }
  .brand-name { font-size: 1.05rem; }
  .brand img { width: 40px; height: 40px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-card.hc-1 { top: 5%; left: 3%; }
  .hero-card.hc-2 { right: 3%; }
  .hero-card.hc-3 { bottom: -7%; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .section { padding: 3rem 0; }
  .rating-banner { text-align: center; justify-content: center; }
  .cta-band { padding: 2rem 1.4rem; }
  .hero-proof { padding-right: 84px; }
}
