/* ============================================================
   Element Dental Clinic — v2
   Style: premium light — Plus Jakarta Sans, navy on ice white,
   sky-blue accents, pill buttons, thin-bordered rounded cards
   ============================================================ */

:root {
  --navy: #0f2942;
  --navy-2: #13314f;
  --navy-deep: #0b2138;
  --ink: #0e2443;
  --muted: #5b7189;
  --sky: #3f9de6;
  --sky-dark: #2f86c9;
  --sky-soft: #eaf3fb;
  --bg: #f8fafc;
  --white: #ffffff;
  --line: #e6edf4;
  --radius: 20px;
  --shadow-sm: 0 1px 3px rgba(15, 41, 66, .06);
  --shadow-md: 0 14px 40px rgba(15, 41, 66, .10);
  --shadow-lg: 0 30px 70px rgba(15, 41, 66, .16);
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 58px; /* room for fixed emergency bar */
}

img { max-width: 100%; display: block; }
a { color: var(--sky-dark); text-decoration: none; }

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

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

/* ---------- Typography ---------- */
h1, h2, h3 { font-weight: 800; line-height: 1.12; color: var(--navy); letter-spacing: -.02em; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.18rem; letter-spacing: -.01em; }

.eyebrow {
  display: block; text-transform: uppercase; letter-spacing: .32em;
  font-size: .75rem; font-weight: 700; color: var(--sky);
  margin-bottom: 16px;
}

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

.section { padding: 96px 0; }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: #c7d8ea; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head h2 { margin-bottom: 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--font); font-weight: 700; font-size: .95rem;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 10px 26px rgba(15, 41, 66, .28); }
.btn--navy:hover { background: var(--navy-2); box-shadow: 0 14px 32px rgba(15, 41, 66, .34); }
.btn--outline { border-color: #cfdce9; color: var(--navy); background: var(--white); }
.btn--outline:hover { border-color: var(--navy); }
.btn--sky { background: var(--sky); color: #fff; box-shadow: 0 10px 26px rgba(63, 157, 230, .35); }
.btn--sky:hover { background: var(--sky-dark); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--navy-deep); color: #cfe0f2;
  font-size: .84rem; font-weight: 600; letter-spacing: .02em;
}
.announce .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 10px; padding-bottom: 10px; }
.announce span { display: inline-flex; align-items: center; gap: 9px; }
.announce svg { width: 14px; height: 14px; fill: var(--sky); flex-shrink: 0; }
.announce a { color: #fff; font-weight: 700; white-space: nowrap; }
.announce .right { display: flex; gap: 24px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 13px; padding-bottom: 13px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand__badge {
  width: 46px; height: 46px; border-radius: 999px; background: var(--navy);
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(15, 41, 66, .25);
}
.brand__badge svg { width: 20px; height: 20px; fill: none; stroke: #8fc6f2; stroke-width: 1.8; }
.brand__name { line-height: 1.15; }
.brand__name strong { display: block; color: var(--navy); font-weight: 800; font-size: 1.08rem; letter-spacing: -.01em; }
.brand__name small { display: block; color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--ink); font-weight: 600; font-size: .94rem;
  padding: 9px 14px; border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--sky-dark); background: var(--sky-soft); }
.nav a.active { color: var(--navy); background: var(--sky-soft); font-weight: 700; }
.nav .btn { margin-left: 12px; padding: 12px 24px; font-size: .9rem; }
.nav a.btn--navy { color: #fff; background: var(--navy); }
.nav a.btn--navy:hover { color: #fff; background: var(--navy-2); }

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

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 55% 65% at 92% 0%, rgba(63,157,230,.10), transparent 60%),
    radial-gradient(ellipse 45% 55% at 0% 100%, rgba(63,157,230,.07), transparent 60%),
    linear-gradient(180deg, #f4f8fc 0%, var(--bg) 100%);
}
.hero .container {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center;
  padding-top: 92px; padding-bottom: 104px;
}
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 999px;
  font-weight: 700; font-size: .8rem; color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 4px rgba(63,157,230,.18); }

.hero h1 { margin: 22px 0 8px; }
.hero h1 .thin { display: block; font-weight: 300; color: #6d87a1; letter-spacing: 0; }
.hero p.lead { margin: 18px 0 34px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.hero__meta span { display: inline-flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 700; color: var(--muted); }
.hero__meta svg { width: 18px; height: 18px; fill: none; stroke: var(--sky); stroke-width: 2; }

.hero__media { position: relative; }
.hero__media .photo {
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.hero__media .photo img { width: 100%; height: 480px; object-fit: cover; }
.hero__stat {
  position: absolute; left: -30px; bottom: 34px;
  background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 18px 24px; display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--line);
}
.hero__stat .num { font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero__stat .stars { color: #f5a623; letter-spacing: 2px; font-size: .9rem; }
.hero__stat small { display: block; color: var(--muted); font-size: .78rem; font-weight: 600; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--navy); color: #bcd6ee; overflow: hidden;
  padding: 16px 0; white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 0; animation: marquee 36s linear infinite; }
.marquee span {
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: 700; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 0 28px;
}
.marquee span::after { content: "✦"; color: var(--sky); font-size: .8rem; margin-left: 28px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Feature / treatment cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--navy); margin-bottom: 22px;
  box-shadow: 0 8px 18px rgba(15, 41, 66, .22);
}
.card__icon svg { width: 24px; height: 24px; fill: none; stroke: #8fc6f2; stroke-width: 1.8; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; flex: 1; }
.card__links { display: flex; align-items: center; gap: 22px; margin-top: 20px; }
.card__links a { font-weight: 700; font-size: .9rem; }
.card__links a.book { color: var(--sky-dark); display: inline-flex; align-items: center; gap: 6px; }
.card__links a.book svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.2; transition: transform .18s ease; }
.card__links a.book:hover svg { transform: translateX(3px); }
.card__links a.more { color: var(--muted); }
.card__links a.more:hover { color: var(--navy); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split__media { position: relative; }
.split__media img {
  border-radius: 28px; width: 100%; height: 480px; object-fit: cover;
  box-shadow: var(--shadow-lg); border: 6px solid var(--white);
}
.split h2 { margin-bottom: 16px; }
.split p + p { margin-top: 14px; }

.stat-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0 34px; }
.stat-chip {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 20px; font-weight: 700; font-size: .92rem; color: var(--navy);
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-sm);
}
.stat-chip svg { width: 20px; height: 20px; fill: none; stroke: var(--sky); stroke-width: 2; flex-shrink: 0; }

.checklist { list-style: none; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; padding: 9px 0; font-weight: 600; }
.checklist svg { width: 21px; height: 21px; flex-shrink: 0; fill: none; stroke: var(--sky); stroke-width: 2.2; margin-top: 3px; }
.section--navy .checklist li { color: #dbe8f5; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 22px; }
.gallery figure {
  border-radius: var(--radius); overflow: hidden; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  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: 48px; }
.rating-banner .num { font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.rating-banner .stars { color: #f5a623; font-size: 1.3rem; letter-spacing: 4px; }
.rating-banner p { color: var(--muted); font-size: .92rem; }
.rating-banner a { font-weight: 700; }

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: #f5a623; letter-spacing: 3px; font-size: .92rem; }
.review p { color: var(--ink); font-size: .95rem; 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(--sky-soft); color: var(--sky-dark); 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: 60px; flex-wrap: wrap; }
.regulators img { height: 84px; width: auto; }

/* ---------- Form card / register section ---------- */
.register { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.register > *, .split > *, .info-item, .info-item > div { min-width: 0; }
.form-card {
  background: var(--white); border-radius: 24px; box-shadow: var(--shadow-lg);
  padding: 44px; color: var(--ink);
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--navy); }
.form-card > p { color: var(--muted); font-size: .92rem; margin-bottom: 26px; }
.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: 7px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 17px; border-radius: 14px; border: 1.5px solid var(--line);
  font-family: var(--font); font-size: .95rem; color: var(--ink); background: var(--bg);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sky); background: var(--white); }
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235b7189' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }

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

/* ---------- Info items (contact) ---------- */
.info-stack { display: flex; flex-direction: column; gap: 16px; }
.info-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.info-item svg { width: 44px; height: 44px; flex-shrink: 0; fill: none; stroke: var(--sky-dark); stroke-width: 1.7; background: var(--sky-soft); border-radius: 13px; padding: 10px; }
.info-item h3 { font-size: 1rem; margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--muted); font-size: .93rem; }
.info-item a.strong { color: var(--navy); font-weight: 800; font-size: 1.04rem; }

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

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 50% 70% at 90% 0%, rgba(63,157,230,.10), transparent 60%),
    linear-gradient(180deg, #f2f7fc 0%, var(--bg) 100%);
  padding: 76px 0 60px;
}
.page-hero .crumbs { color: var(--muted); font-size: .86rem; font-weight: 700; }
.page-hero .crumbs a { color: var(--sky-dark); }
.page-hero .crumbs span { margin: 0 9px; color: var(--sky); }
.page-hero h1 { margin-top: 12px; font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.page-hero .lead { margin-top: 14px; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.team-card {
  background: var(--white); border-radius: var(--radius); 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 { background: linear-gradient(150deg, #e8f2fb, #f4f9fd); 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-size: 3rem; color: var(--sky); font-weight: 800; }
.team-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.team-card__role { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .22em; color: var(--sky-dark); margin-bottom: 8px; }
.team-card h3 { margin-bottom: 2px; }
.team-card .qual { color: var(--muted); font-size: .87rem; margin-bottom: 10px; }
.team-card .gdc { font-size: .76rem; font-weight: 700; color: var(--sky-dark); background: var(--sky-soft); border-radius: 999px; padding: 4px 13px; align-self: flex-start; margin-bottom: 13px; }
.team-card .bio { color: var(--muted); font-size: .9rem; }

/* ---------- Price tables ---------- */
.price-group { margin-bottom: 46px; }
.price-group h3 { font-size: 1.3rem; margin-bottom: 18px; display: flex; align-items: center; gap: 14px; }
.price-group h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.table-wrap { overflow-x: auto; }
.price-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.price-table th {
  text-align: left; padding: 15px 24px; background: var(--navy); color: #cfe0f2;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; font-weight: 700;
}
.price-table th:last-child { text-align: right; }
.price-table td { padding: 17px 24px; border-top: 1px solid var(--line); vertical-align: top; }
.price-table tr:nth-child(even) td { background: var(--bg); }
.price-table .t-name { font-weight: 700; color: var(--navy); }
.price-table .t-note { display: block; font-weight: 500; color: var(--muted); font-size: .85rem; margin-top: 3px; }
.price-table .t-price { text-align: right; font-weight: 800; color: var(--sky-dark); white-space: nowrap; }

.policy-card {
  background: var(--sky-soft); border: 1px solid #cfe3f5; border-left: 5px solid var(--sky);
  border-radius: 16px; padding: 30px 34px; margin-top: 12px;
}
.policy-card h3 { margin-bottom: 8px; }
.policy-card p { color: var(--ink); font-size: .95rem; }
.policy-card p + p { margin-top: 8px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy); border-radius: 28px; color: #c7d8ea;
  padding: 58px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -70px; top: -70px; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(63,157,230,.16);
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: #9db4ca; padding: 72px 0 0; }
.footer a { color: #c9dcee; }
.footer a:hover { color: var(--sky); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1.2fr 1fr 1fr; gap: 48px; padding-bottom: 50px; }
.footer .brand__name strong { color: #fff; }
.footer .brand__name small { color: #7d97b0; }
.footer .brand__badge { background: rgba(255,255,255,.08); box-shadow: none; }
.footer__brand > p { font-size: .92rem; max-width: 280px; margin-top: 16px; }
.footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .22em; margin-bottom: 20px; font-weight: 700; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: .93rem; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; min-width: 0; }
.footer__contact a, .info-item a.strong { overflow-wrap: anywhere; }
.footer__contact svg { width: 17px; height: 17px; fill: none; stroke: var(--sky); stroke-width: 1.9; flex-shrink: 0; margin-top: 4px; }
.footer .hours strong { color: #dbe8f5; display: block; font-size: .93rem; }
.footer .hours span { font-size: .85rem; }
.footer .social { display: flex; gap: 10px; margin-top: 22px; }
.footer .social a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); transition: background .15s ease, transform .15s ease;
}
.footer .social a:hover { background: var(--sky); transform: translateY(-2px); }
.footer .social svg { width: 16px; height: 16px; fill: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0; font-size: .82rem;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}

/* ---------- Emergency bar ---------- */
.emergency-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--sky); color: #fff;
}
.emergency-bar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 13px; padding-bottom: 13px;
}
.emergency-bar span { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: .93rem; }
.emergency-bar span svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 2; }
.emergency-bar a { color: #fff; font-weight: 800; display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.emergency-bar a svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2.2; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); 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: 1040px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 80px; }
  .hero__media .photo img { height: 400px; }
  .hero__stat { left: 14px; bottom: 20px; }
  .split, .register { grid-template-columns: 1fr; gap: 44px; }
  .split__media img { height: 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 46px 32px; }
}

@media (max-width: 880px) {
  .announce .right { display: none; }
  .announce .container { justify-content: center; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    padding: 14px 22px 26px; gap: 6px; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 16px; font-size: 1rem; }
  .nav .btn { margin: 10px 0 0; }
  .section { padding: 68px 0; }
  .stat-chips { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; padding-bottom: 76px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; }
  .hero__media .photo img { height: 300px; }
  .hero__stat { padding: 13px 16px; }
  .form-card { padding: 30px 22px; }
  .cta-band { padding: 40px 24px; }
  .regulators { gap: 32px; }
  .regulators img { height: 62px; }
  .emergency-bar .container { flex-direction: column; gap: 4px; padding-top: 10px; padding-bottom: 10px; }
}
