/* ============================================================
   Element Dental Clinic — Redesign
   Brand: deep blue #0050a0 · navy #0b2c4a · orange #fb8e28
   ============================================================ */

:root {
  --blue: #0050a0;
  --blue-dark: #003d7a;
  --navy: #0b2c4a;
  --navy-deep: #071e33;
  --orange: #fb8e28;
  --orange-dark: #e07a15;
  --cream: #f6f9fd;
  --ink: #1c2b3a;
  --muted: #5a6b7d;
  --line: #e3eaf2;
  --white: #ffffff;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(11, 44, 74, .07);
  --shadow-md: 0 12px 32px rgba(11, 44, 74, .12);
  --shadow-lg: 0 24px 60px rgba(11, 44, 74, .18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue); text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -.3px; }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 2.2px;
  font-size: .74rem; font-weight: 800; color: var(--orange-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }

.lead { color: var(--muted); font-size: 1.08rem; max-width: 640px; }

.section { padding: 88px 0; }
.section--tint { background: var(--cream); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lead { margin: 12px auto 0; }
.section-head h2 { margin-bottom: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 800; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(251, 142, 40, .38); }
.btn--primary:hover { background: var(--orange-dark); box-shadow: 0 12px 28px rgba(251, 142, 40, .45); }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--light:hover { box-shadow: var(--shadow-md); }
.btn--ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-deep); color: #cfe0f2; font-size: .84rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar a { color: #fff; font-weight: 700; }
.topbar__items { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.topbar__items span { display: inline-flex; align-items: center; gap: 7px; }
.topbar a { white-space: nowrap; }
.topbar svg { width: 14px; height: 14px; fill: var(--orange); flex-shrink: 0; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 18px rgba(4, 18, 33, .35);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.logo img { height: 44px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: #d7e4f3; font-weight: 700; font-size: .93rem;
  padding: 10px 15px; border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.09); }
.nav a.active { color: #fff; background: var(--blue); }
.nav .btn { margin-left: 10px; padding: 11px 22px; font-size: .88rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 3px; margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 55%, var(--blue) 100%);
  color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 88% 8%, rgba(251,142,40,.22), transparent 60%),
    radial-gradient(ellipse 45% 45% at 5% 95%, rgba(255,255,255,.07), transparent 60%);
  pointer-events: none;
}
.hero .container {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center; padding-top: 84px; padding-bottom: 96px;
}
.hero h1 { color: #fff; margin: 14px 0 20px; }
.hero h1 em { font-style: italic; color: #ffc58a; }
.hero p { color: #d9e6f5; font-size: 1.12rem; max-width: 520px; margin-bottom: 34px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 18px; border-radius: 999px; font-weight: 800; font-size: .82rem;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.hero__badge::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.25); }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__phone { display: flex; align-items: center; gap: 12px; margin-top: 30px; color: #cfe0f2; font-size: .95rem; }
.hero__phone strong { color: #fff; font-size: 1.15rem; }
.hero__phone svg { width: 38px; height: 38px; fill: none; stroke: var(--orange); stroke-width: 1.8; background: rgba(255,255,255,.1); border-radius: 12px; padding: 8px; }

.hero__media { position: relative; }
.hero__media .frame {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 5px solid rgba(255,255,255,.14);
}
.hero__media .frame img { width: 100%; height: 460px; object-fit: cover; }
.hero__card {
  position: absolute; left: -26px; bottom: -24px;
  background: #fff; color: var(--ink); border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 16px 22px; display: flex; align-items: center; gap: 14px;
}
.hero__card .score { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--navy); }
.hero__card .stars { color: var(--orange); letter-spacing: 2px; font-size: .95rem; }
.hero__card small { color: var(--muted); font-size: .8rem; display: block; }

/* ---------- Trust strip ---------- */
.truststrip { background: var(--navy-deep); color: #b9cde2; }
.truststrip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding-top: 22px; padding-bottom: 22px; }
.truststrip span { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .92rem; }
.truststrip svg { width: 20px; height: 20px; fill: var(--orange); flex-shrink: 0; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, #e8f1fc, #dbe9fa); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--blue); stroke-width: 1.9; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .93rem; }
.card .card__link { display: inline-block; margin-top: 14px; font-weight: 800; font-size: .88rem; color: var(--orange-dark); }
.card .card__link:hover { text-decoration: underline; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: 24px; box-shadow: var(--shadow-md); width: 100%; height: 440px; object-fit: cover; }
.split__media .accent {
  position: absolute; inset: auto auto -18px -18px; width: 120px; height: 120px;
  border-radius: 20px; background: var(--orange); opacity: .92; z-index: -1;
}
.split h2 { margin-bottom: 16px; }
.split p + p { margin-top: 14px; }
.split .checklist { margin: 24px 0 30px; }

.checklist { list-style: none; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-weight: 600; }
.checklist svg { width: 22px; height: 22px; flex-shrink: 0; fill: none; stroke: var(--orange); stroke-width: 2.4; margin-top: 2px; }

/* ---------- Offers ---------- */
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.offer {
  position: relative; border-radius: 22px; overflow: hidden; min-height: 320px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-md);
}
.offer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.offer:hover img { transform: scale(1.05); }
.offer::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,30,51,.88) 8%, rgba(7,30,51,.15) 60%); }
.offer__body { position: relative; z-index: 1; padding: 30px; }
.offer__body h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.offer__body p { color: #d9e6f5; font-size: .95rem; margin-bottom: 16px; }
.offer__tag {
  position: absolute; top: 20px; left: 20px; z-index: 1;
  background: var(--orange); color: #fff; font-weight: 800; font-size: .78rem;
  letter-spacing: 1.4px; text-transform: uppercase; padding: 7px 16px; border-radius: 999px;
}

/* ---------- Gallery / before-after ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.gallery figure {
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm);
  background: #fff; border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery figure:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gallery img { width: 100%; aspect-ratio: 940/788; object-fit: cover; }

/* ---------- Reviews ---------- */
.rating-banner {
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  margin-bottom: 46px;
}
.rating-banner .score { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--navy); line-height: 1; }
.rating-banner .stars { color: var(--orange); font-size: 1.35rem; letter-spacing: 4px; }
.rating-banner p { color: var(--muted); font-size: .92rem; }
.rating-banner a { font-weight: 800; }

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review {
  background: #fff; border-radius: var(--radius); padding: 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--orange); letter-spacing: 3px; }
.review p { color: var(--ink); font-size: .96rem; flex: 1; }
.review footer { display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue); color: #fff; font-weight: 800; font-size: .95rem; flex-shrink: 0;
}
.review footer strong { display: block; font-size: .92rem; color: var(--navy); }
.review footer small { color: var(--muted); font-size: .78rem; }

/* ---------- Regulators ---------- */
.regulators { display: flex; align-items: center; justify-content: center; gap: 54px; flex-wrap: wrap; }
.regulators img { height: 88px; width: auto; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  border-radius: 26px; color: #fff; padding: 58px 54px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  border-radius: 50%; background: rgba(251,142,40,.18);
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #d9e6f5; }
.cta-band .btn { position: relative; }

/* ---------- Booking / contact ---------- */
.booking { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.form-card {
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); padding: 40px;
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: .93rem; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: .84rem; margin-bottom: 6px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--cream);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }

.divider-or { display: flex; align-items: center; gap: 16px; margin: 26px 0; color: var(--muted); font-weight: 800; font-size: .8rem; letter-spacing: 2px; }
.divider-or::before, .divider-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.info-stack { display: flex; flex-direction: column; gap: 18px; }
.info-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.info-item svg { width: 44px; height: 44px; flex-shrink: 0; fill: none; stroke: var(--blue); stroke-width: 1.7; background: #e8f1fc; border-radius: 12px; padding: 10px; }
.info-item h3 { font-size: 1.02rem; margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--muted); font-size: .93rem; }
.info-item a.strong { color: var(--blue); font-weight: 800; font-size: 1.05rem; }

.map-embed { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 70%, var(--blue) 100%);
  color: #fff; padding: 72px 0 64px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 90% 10%, rgba(251,142,40,.2), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin-top: 10px; }
.page-hero .crumbs { color: #a8c1dc; font-size: .88rem; font-weight: 700; }
.page-hero .crumbs a { color: #fff; }
.page-hero .crumbs span { margin: 0 8px; color: var(--orange); }
.page-hero .lead { color: #d9e6f5; margin-top: 14px; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 26px; }
.team-card {
  background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card__media { position: relative; background: linear-gradient(135deg, #dfeafd, #eef4fc); aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card__media .initials { font-family: var(--font-display); font-size: 3.2rem; color: var(--blue); font-weight: 700; }
.team-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.team-card__role {
  font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.6px;
  color: var(--orange-dark); margin-bottom: 6px;
}
.team-card h3 { margin-bottom: 2px; }
.team-card .qual { color: var(--muted); font-size: .87rem; margin-bottom: 10px; }
.team-card .gdc { font-size: .78rem; font-weight: 700; color: var(--blue); background: #e8f1fc; border-radius: 999px; padding: 4px 12px; align-self: flex-start; margin-bottom: 12px; }
.team-card .bio { color: var(--muted); font-size: .9rem; }

/* ---------- Price tables ---------- */
.price-group { margin-bottom: 44px; }
.price-group h3 {
  font-size: 1.35rem; margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
}
.price-group h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.price-table th {
  text-align: left; padding: 14px 22px; background: var(--navy); color: #fff;
  font-size: .8rem; text-transform: uppercase; letter-spacing: 1.4px;
}
.price-table th:last-child { text-align: right; }
.price-table td { padding: 16px 22px; border-top: 1px solid var(--line); vertical-align: top; }
.price-table tr:nth-child(even) td { background: var(--cream); }
.price-table .t-name { font-weight: 700; color: var(--navy); }
.price-table .t-note { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; margin-top: 3px; }
.price-table .t-price { text-align: right; font-weight: 800; color: var(--blue); white-space: nowrap; }
.table-wrap { overflow-x: auto; }

.policy-card {
  background: #fff7ef; border: 1px solid #f7ddc2; border-left: 5px solid var(--orange);
  border-radius: 14px; padding: 28px 32px; margin-top: 10px;
}
.policy-card h3 { margin-bottom: 8px; }
.policy-card p { color: var(--ink); font-size: .95rem; }
.policy-card p + p { margin-top: 8px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: #b9cde2; padding: 70px 0 0; }
.footer a { color: #dce9f7; }
.footer a:hover { color: var(--orange); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 48px; }
.footer__brand img { height: 46px; margin-bottom: 18px; }
.footer__brand p { font-size: .92rem; max-width: 300px; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: .93rem; }
.footer .social { display: flex; gap: 10px; margin-top: 20px; }
.footer .social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); transition: background .15s ease, transform .15s ease;
}
.footer .social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer .social svg { width: 17px; height: 17px; fill: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: 4px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .82rem; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 72px; }
  .hero__media .frame img { height: 380px; }
  .hero__card { left: 12px; bottom: -18px; }
  .split, .booking { grid-template-columns: 1fr; gap: 40px; }
  .split__media img { height: 360px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 46px 30px; }
}

@media (max-width: 860px) {
  .topbar .container { justify-content: center; }
  .topbar__items { justify-content: center; gap: 14px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); flex-direction: column; align-items: stretch;
    padding: 14px 22px 26px; gap: 6px; box-shadow: 0 18px 30px rgba(4,18,33,.4);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 16px; font-size: 1rem; }
  .nav .btn { margin: 10px 0 0; }
  .offers { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; }
  .hero__media .frame img { height: 300px; }
  .hero__card { padding: 12px 16px; }
  .cta-band { padding: 38px 22px; }
  .form-card { padding: 28px 22px; }
  .regulators { gap: 30px; }
  .regulators img { height: 64px; }
}
