:root {
  --navy: #10245f;
  --navy-strong: #0b1745;
  --blue: #1e40af;
  --sky: #0ea5e9;
  --teal: #14b8a6;
  --ink: #132033;
  --muted: #607087;
  --line: #dbe7ee;
  --paper: #ffffff;
  --soft: #f4f9fb;
  --warm: #f5efe6;
  --warm-strong: #e7d8c4;
  --shadow: 0 20px 60px rgba(15, 35, 75, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

body .container {
  width: min(1120px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 36, 95, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  width: clamp(188px, 21vw, 236px);
  min-height: 54px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 528 / 128;
  background: url("logo-podolider-header.png") left center / contain no-repeat;
}

.brand img {
  display: none;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  border-color: var(--teal);
}

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

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
}

.social-links--header .social-link {
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.social-links--header .social-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.social-links--footer {
  margin-top: 18px;
}

.social-links--footer .social-link {
  color: var(--navy);
  border: 1px solid rgba(16, 36, 95, 0.14);
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 35, 75, 0.06);
}

.social-links--footer .social-link:hover {
  color: var(--blue);
  border-color: rgba(30, 64, 175, 0.28);
  background: #f7fcff;
}

.menu-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-size: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 32px rgba(20, 184, 166, 0.26);
}

.btn-primary:hover {
  background: #0f9f91;
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(16, 36, 95, 0.26);
}

.btn-outline:hover {
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 720px;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(8, 19, 56, 0.82), rgba(16, 36, 95, 0.5) 46%, rgba(16, 36, 95, 0.12)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  align-content: center;
  max-width: 760px;
  padding: 110px 0 150px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-cta,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.quick-facts {
  position: relative;
  z-index: 2;
  margin-top: -88px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.fact {
  background: #fff;
  padding: 28px;
}

.fact strong {
  display: block;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--soft);
}

.section-warm {
  background: var(--warm);
}

.section-navy {
  color: #fff;
  background: var(--navy);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2,
.split h2,
.page-content h2,
.about-profile-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-navy .section-head h2,
.section-navy .split h2 {
  color: #fff;
}

.section-head p,
.split p,
.page-content p,
.about-profile-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.section-navy .section-head p,
.section-navy .split p {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.media-frame {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-grid,
.feature-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.feature-card,
.price-panel,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(15, 35, 75, 0.06);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card h3,
.feature-card h3,
.price-panel h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  line-height: 1.2;
}

.service-card p,
.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-card p {
  flex: 1;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 800;
}

.service-price {
  margin-top: 22px;
  padding: 13px 15px;
  border: 1px solid rgba(78, 191, 232, 0.28);
  border-radius: 14px;
  background: #f7fcff;
}

.service-price span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-price strong {
  color: var(--navy);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 1.05rem;
}

.service-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.service-card .service-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.service-book {
  background: var(--blue);
  color: #fff;
}

.service-book:hover {
  background: #1392cf;
}

.service-call {
  border: 1px solid rgba(19, 148, 207, 0.32);
  background: #fff;
  color: var(--navy);
}

.service-call:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--sky);
  font-weight: 800;
}

.gallery-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card p {
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--muted);
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 44px;
  align-items: stretch;
}

.about-profile-copy {
  align-self: center;
}

.about-profile-copy p {
  max-width: 760px;
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.about-photo-slot {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 390px;
  padding: 34px;
  border: 1px dashed rgba(16, 36, 95, 0.24);
  border-radius: 20px;
  color: var(--navy);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 251, 0.96)),
    radial-gradient(circle at 20% 18%, rgba(20, 184, 166, 0.13), transparent 34%),
    #fff;
  text-align: center;
  box-shadow: 0 10px 34px rgba(15, 35, 75, 0.07);
}

.photo-initials {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
}

.about-photo-slot p {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
}

.about-photo-slot span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.certificate-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 11px;
  min-height: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 35, 75, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.certificate-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, 0.38);
  box-shadow: 0 14px 32px rgba(15, 35, 75, 0.1);
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 7px;
  border: 1px solid rgba(16, 36, 95, 0.08);
  border-radius: 10px;
  background: #f9fbfd;
  object-fit: contain;
}

.certificate-card--landscape img {
  aspect-ratio: 4 / 3;
}

.certificate-title {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.28;
}

.certificate-action {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
}

.page-hero {
  position: relative;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(8, 19, 56, 0.82), rgba(16, 36, 95, 0.44)), var(--page-image);
  background-size: cover;
  background-position: center;
}

.page-hero-inner {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: 86px 0;
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.price-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  color: var(--ink);
}

.price-list li::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted #b8c5d3;
}

.price-list span {
  order: 2;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfdbe6;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--muted);
}

.map-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 36, 95, 0.92), rgba(16, 36, 95, 0.62)), url("gabinet-recepcja-02.png") center/cover;
}

.cta-band .container {
  position: relative;
  padding: 82px 0;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
}

.cta-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-footer {
  background: #f7f8fa;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.9fr);
  gap: 38px;
  padding: 46px 0;
  align-items: start;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: clamp(198px, 24vw, 238px);
  min-height: 58px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.footer-brand-mark::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 528 / 128;
  background: url("logo-podolider-footer.png") left center / contain no-repeat;
}

.footer-brand-mark img {
  display: none;
}

.footer-brand-mark span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(250px, 1.3fr) minmax(150px, 0.8fr) minmax(110px, 0.6fr);
  gap: 30px;
  text-align: left;
}

.footer-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 16px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.footer-bottom {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-strong);
  text-align: center;
  font-size: 14px;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(16, 36, 95, 0.98);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 46px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 640px;
  }

  .facts-grid,
  .service-grid,
  .feature-grid,
  .gallery-grid,
  .price-grid,
  .contact-layout,
  .footer-main,
  .footer-grid,
  .about-profile,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-facts {
    margin-top: -54px;
  }

  .footer-grid a {
    min-height: 44px;
  }

  .contact-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(1120px, calc(100% - 28px));
  }

  body .container {
    width: min(1120px, calc(100% - 28px));
  }

  .nav {
    min-height: 66px;
    gap: 14px;
  }

  .brand {
    width: clamp(164px, 50vw, 200px);
    min-height: 44px;
  }

  .menu-toggle {
    min-width: 46px;
    min-height: 46px;
  }

  .social-links--header {
    display: none;
  }

  .nav-links {
    top: 66px;
    padding: 10px 14px 18px;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hero,
  .hero-inner {
    min-height: 570px;
  }

  .hero::before {
    background-image: linear-gradient(90deg, rgba(8, 19, 56, 0.86), rgba(16, 36, 95, 0.56) 55%, rgba(16, 36, 95, 0.18)), var(--hero-image);
    background-position: 58% center;
  }

  .hero-inner {
    padding: 72px 0 118px;
  }

  .section {
    padding: 64px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero p {
    margin-top: 22px;
  }

  .page-hero-inner {
    min-height: 300px;
    padding: 58px 0 66px;
  }

  .quick-facts {
    margin-top: -44px;
  }

  .fact,
  .service-card,
  .feature-card,
  .price-panel,
  .contact-card {
    padding: 20px;
  }

  .facts-grid,
  .service-grid,
  .feature-grid,
  .gallery-grid,
  .price-grid,
  .contact-layout,
  .certificate-grid {
    gap: 14px;
  }

  .split,
  .split.reverse {
    gap: 28px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2,
  .split h2,
  .page-content h2 {
    font-size: 30px;
  }

  .media-frame,
  .gallery-card,
  .map-frame {
    border-radius: 14px;
  }

  .about-profile {
    gap: 26px;
  }

  .about-photo-slot {
    min-height: 280px;
    padding: 24px;
    border-radius: 14px;
  }

  .photo-initials {
    width: 94px;
    height: 94px;
    margin-bottom: 16px;
    font-size: 1.7rem;
  }

  .credential-strip span {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.84rem;
  }

  .certificate-card {
    padding: 10px;
    border-radius: 12px;
  }

  .certificate-card img {
    padding: 5px;
    border-radius: 8px;
  }

  .certificate-title {
    font-size: 0.86rem;
  }

  .certificate-action {
    font-size: 0.78rem;
  }

  .hero-cta,
  .cta-row {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
  }

  .cta-band .container {
    padding: 60px 0;
  }

  .footer-main {
    gap: 30px;
    padding: 38px 0;
  }

  .footer-grid {
    gap: 24px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 34px rgba(15, 35, 75, 0.14);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1.1;
  }

  .mobile-cta-primary {
    color: #fff;
    background: var(--teal);
  }

  .mobile-cta-secondary {
    color: var(--navy);
    border: 1px solid rgba(16, 36, 95, 0.22);
    background: #fff;
  }
}
