/* YES Dental — Prevence & záchovná stomatologie LP */
/* Brand colors from yesdentalclinic.cz */

:root {
  --navy: #163d69;
  --navy-dark: #0f2d4a;
  --navy-soft: rgba(22, 61, 105, 0.72);
  --teal: #16beba;
  --teal-dark: #0f8c9d;
  --teal-soft: #d9eeee;
  --teal-mist: #f1f8f8;
  --orange: #feba1c;
  --orange-dark: #e5a410;
  --white: #ffffff;
  --bg: #f7fbfb;
  --text: #163d69;
  --muted: rgba(22, 61, 105, 0.68);
  --line: rgba(22, 61, 105, 0.1);
  --lavender: #e8eef8;
  --mint: #dff3f1;
  --sand: #f6f3ea;

  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
  --header-h: 76px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 9999px;
  --shadow-soft: 0 18px 50px rgba(22, 61, 105, 0.08);
  --shadow-card: 0 10px 40px rgba(22, 61, 105, 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(22, 190, 186, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(254, 186, 28, 0.08), transparent 45%),
    var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container--narrow { width: min(100% - 2.5rem, 760px); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.85rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(22, 190, 186, 0.28);
}
.btn--teal:hover { background: var(--teal-dark); }

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(254, 186, 28, 0.32);
}
.btn--orange:hover { background: var(--orange-dark); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(22, 61, 105, 0.22);
}
.btn--navy:hover { background: var(--navy-dark); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border: 1.5px solid rgba(22, 61, 105, 0.12);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: var(--white);
  border-color: rgba(22, 61, 105, 0.2);
}

.btn--sm {
  padding: 0.75rem 1.35rem;
  font-size: 0.875rem;
}

.btn--full { width: 100%; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 251, 251, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(22, 61, 105, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo img {
  width: 148px;
  height: auto;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.125rem;
  background: rgba(22, 61, 105, 0.06);
  border-radius: 999px;
}

.lang-switcher__btn {
  border: none;
  background: transparent;
  padding: 0.375rem 0.625rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.lang-switcher__btn:hover {
  color: var(--navy);
}

.lang-switcher__btn.is-active {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 1px 3px rgba(22, 61, 105, 0.1);
}

.lang-switcher__btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.header__phone {
  display: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0.85rem;
}

@media (min-width: 768px) {
  .header__phone { display: inline-flex; }
}

@media (max-width: 480px) {
  .header__actions .btn--sm {
    padding: 0.65rem 0.95rem;
    font-size: 0.8rem;
  }
}

/* Hero — full-bleed composition */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(247, 251, 251, 0.97) 0%, rgba(247, 251, 251, 0.9) 38%, rgba(247, 251, 251, 0.35) 62%, rgba(22, 61, 105, 0.18) 100%),
    linear-gradient(to top, rgba(247, 251, 251, 0.95) 0%, transparent 42%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 9vw, 6rem);
  max-width: 640px;
  animation: heroRise 0.9s var(--ease) both;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(22, 190, 186, 0.18);
  animation: pulseDot 2.4s ease-in-out infinite;
}

.hero__title {
  margin: 0 0 1.15rem;
  font-size: clamp(2.35rem, 5.2vw, 3.85rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero__subtitle {
  margin: 0 0 1.85rem;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--navy-soft);
  max-width: 34rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.hero__micro {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 0.35rem;
}

/* Sections shared */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.section__lead {
  margin: 0;
  color: var(--navy-soft);
  font-size: 1.08rem;
  max-width: 44rem;
}

.section__lead + .section__lead { margin-top: 1rem; }

/* Problem */
.problem {
  background: var(--white);
}

.problem__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .problem__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

.benefit-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.benefit-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.15rem;
  background: var(--teal-mist);
  border-radius: 18px;
}

.benefit-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.benefit-list span { color: var(--muted); font-size: 0.95rem; }

.benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  flex-shrink: 0;
}

.problem__aside {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(160deg, var(--lavender), var(--mint));
  box-shadow: var(--shadow-card);
}

.problem__aside img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.problem__quote {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: var(--shadow-soft);
}

/* Services */
.services {
  background:
    linear-gradient(180deg, var(--teal-mist) 0%, rgba(241, 248, 248, 0.4) 100%);
}

.services__intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.services__grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }
}

.service-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  border-radius: var(--radius-xl);
  min-height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-panel--prevent {
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 190, 186, 0.18), transparent 45%),
    linear-gradient(165deg, #eef8f8 0%, #e3f4f4 100%);
}

.service-panel--hygiene {
  background:
    radial-gradient(circle at 100% 0%, rgba(254, 186, 28, 0.18), transparent 45%),
    linear-gradient(165deg, #f8f6ef 0%, #f3efe3 100%);
}

.service-panel--restore {
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 61, 105, 0.12), transparent 45%),
    linear-gradient(165deg, #eef2f8 0%, #e4ebf5 100%);
}

@media (min-width: 900px) {
  .service-panel h3 {
    font-size: 1.35rem;
  }

  .check-list li {
    font-size: 0.9rem;
  }
}

.service-panel__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.45);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-panel h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-panel__lead {
  margin: 0 0 1.35rem;
  color: var(--navy-soft);
  font-size: 1rem;
}

.service-panel h4 {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  flex: 1;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--navy-soft);
  font-size: 0.96rem;
  line-height: 1.45;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2316beba'/%3E%3Cpath d='M5.5 10.2l2.8 2.8 6.2-6.2' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.service-panel__note {
  margin: 0 0 1.35rem;
  padding: 0 0 0 0.95rem;
  border-left: 3px solid var(--teal);
  background: none;
  border-radius: 0;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.service-panel .btn {
  align-self: stretch;
  width: 100%;
  margin-top: auto;
  min-height: 4.5rem;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  padding-inline: 1.15rem;
}

/* Endodontics deep-dive */
.endo-panel {
  margin-top: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 61, 105, 0.08), transparent 40%),
    linear-gradient(165deg, #f4f7fb 0%, #e8eef6 100%);
  box-shadow: none;
}

.endo-panel__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--navy);
}

.endo-panel__headline {
  margin: 0 0 1.25rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: -0.01em;
}

.endo-panel__copy {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
  max-width: 52rem;
}

.endo-panel__copy p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 1.02rem;
}

.endo-panel h4 {
  margin: 0 0 0.95rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.endo-steps {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: endo;
  border-top: 1px solid rgba(22, 61, 105, 0.12);
}

@media (min-width: 900px) {
  .endo-steps {
    grid-template-columns: 1fr 1fr;
  }

  .endo-steps li:nth-child(odd) {
    border-right: 1px solid rgba(22, 61, 105, 0.1);
    padding-right: 1.75rem;
  }

  .endo-steps li:nth-child(even) {
    padding-left: 1.75rem;
  }
}

.endo-steps li {
  counter-increment: endo;
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  column-gap: 0.85rem;
  align-items: start;
  padding: 1.25rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(22, 61, 105, 0.12);
  border-radius: 0;
}

.endo-steps li::before {
  content: counter(endo, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-top: 0.12rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--teal-dark);
  font-variant-numeric: tabular-nums;
}

.endo-steps strong {
  grid-column: 2;
  display: block;
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.3;
}

.endo-steps span {
  grid-column: 2;
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.endo-panel__warning {
  margin: 0 0 1.5rem;
  padding: 0.15rem 0 0.15rem 0.95rem;
  border-radius: 0;
  background: none;
  border-left: 3px solid var(--orange);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
}

.endo-benefits {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 700px) {
  .endo-benefits {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
  }
}

.endo-benefits li {
  position: relative;
  padding: 0 0 0 1.7rem;
  background: none;
  border-radius: 0;
  color: var(--navy-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.endo-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2316beba'/%3E%3Cpath d='M5.5 10.2l2.8 2.8 6.2-6.2' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.endo-panel .btn {
  display: inline-flex;
  width: auto;
  min-width: min(100%, 22rem);
  min-height: 3.35rem;
  margin-bottom: 1.25rem;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.endo-panel__footnote {
  margin: 0;
  max-width: 48rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(22, 61, 105, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.55;
}

/* Why us */
.why {
  background: var(--white);
}

.why__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

@media (min-width: 700px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-item--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    align-items: start;
  }

  .why-item--wide .why-item__icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
}

.why-item {
  padding: 1.4rem 1.35rem;
  border-radius: 22px;
  background: var(--teal-mist);
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.why-item:hover {
  transform: translateY(-3px);
  background: var(--white);
  border-color: var(--teal-soft);
  box-shadow: var(--shadow-card);
}

.why-item__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.95rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(22, 190, 186, 0.15);
  color: var(--teal-dark);
}

.why-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Steps */
.steps {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(22, 190, 186, 0.1), transparent 50%),
    var(--navy);
  color: var(--white);
}

.steps .section__eyebrow { color: rgba(22, 190, 186, 0.95); }
.steps .section__title { color: var(--white); }
.steps .section__lead { color: rgba(255, 255, 255, 0.72); }

.steps__grid {
  display: grid;
  gap: 1.15rem;
  margin: 2.5rem 0 2.25rem;
}

@media (min-width: 860px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.step-card {
  position: relative;
  padding: 1.65rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.step-card__num {
  display: block;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--teal);
  opacity: 0.95;
}

.step-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
}

.steps__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* FAQ */
.faq {
  background: var(--bg);
}

.faq__list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq-item.is-open {
  border-color: rgba(22, 190, 186, 0.35);
  box-shadow: var(--shadow-card);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-mist);
  color: var(--teal-dark);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__panel p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Final CTA */
.final-cta {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.final-cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(254, 186, 28, 0.22), transparent 35%),
    radial-gradient(circle at 0% 100%, rgba(22, 190, 186, 0.25), transparent 40%),
    linear-gradient(135deg, #163d69 0%, #1a5278 55%, #0f8c9d 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.final-cta__panel h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;
  max-width: 16ch;
  line-height: 1.15;
}

.final-cta__panel p {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Footer */
.footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.footer__brand img {
  width: 130px;
  margin-bottom: 0.85rem;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.footer a:hover { color: var(--teal-dark); }

.footer h4 {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.footer__hours p {
  line-height: 1.55;
}

.footer__stack {
  display: grid;
  gap: 0.35rem;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal='left'] { transform: translateX(-28px); }
[data-reveal='right'] { transform: translateX(28px); }
[data-reveal='left'].is-visible,
[data-reveal='right'].is-visible { transform: none; }

[data-reveal-delay='1'] { transition-delay: 0.1s; }
[data-reveal-delay='2'] { transition-delay: 0.2s; }
[data-reveal-delay='3'] { transition-delay: 0.3s; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 6px rgba(22, 190, 186, 0.18); }
  50% { box-shadow: 0 0 0 10px rgba(22, 190, 186, 0.08); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .btn { white-space: normal; text-align: center; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.5rem); }
  .problem__aside { min-height: 280px; }
  .problem__aside img { min-height: 280px; }
}
