:root {
  --blue-950: #08254a;
  --blue-900: #0a3470;
  --blue-700: #0b63c6;
  --blue-500: #1995ff;
  --cyan-300: #65d7ff;
  --teal-500: #11b6a1;
  --gold-500: #f5b51b;
  --gold-soft: rgba(245, 181, 27, 0.18);
  --slate-900: #102033;
  --slate-700: #42526a;
  --slate-100: #eef6ff;
  --white: #ffffff;
  --line: rgba(11, 99, 198, 0.16);
  --shadow: 0 20px 60px rgba(8, 37, 74, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--slate-900);
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 62%, #f7fbff 100%);
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(8, 37, 74, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(245, 181, 27, 0.66);
  box-shadow: 0 12px 34px rgba(11, 99, 198, 0.2);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 3px;
  color: var(--blue-700);
  font-weight: 700;
}

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

.nav-item {
  position: relative;
}

.nav-parent,
.nav-links .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--slate-700);
  font-weight: 700;
}

.nav-parent svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.nav-parent:hover,
.nav-item:focus-within .nav-parent {
  color: var(--blue-900);
  background: var(--slate-100);
}

.nav-parent.active-page {
  color: var(--blue-900);
  background: var(--slate-100);
}

.nav-item:hover .nav-parent svg,
.nav-item:focus-within .nav-parent svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 270px;
  padding: 10px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.dropdown-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--slate-700);
  font-size: 0.94rem;
  font-weight: 800;
}

.dropdown-link svg {
  width: 18px;
  height: 18px;
  color: var(--blue-700);
}

.dropdown-link:hover {
  color: var(--blue-950);
  background: var(--slate-100);
}

.nav-links .nav-cta {
  color: var(--white);
  background: var(--blue-700);
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--blue-900);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--blue-900);
  background: var(--slate-100);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/ips-samysalud-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 37, 74, 0.9) 0%, rgba(8, 37, 74, 0.72) 39%, rgba(8, 37, 74, 0.18) 72%),
    linear-gradient(0deg, rgba(8, 37, 74, 0.35), rgba(8, 37, 74, 0.08));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 92px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan-300);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), #0c82df);
  box-shadow: 0 12px 32px rgba(25, 149, 255, 0.26);
}

.button.primary:hover {
  background: var(--blue-500);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.button.secondary.dark {
  color: var(--blue-950);
  border-color: rgba(8, 37, 74, 0.16);
  background: var(--white);
}

.metrics {
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metrics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--cyan-300), var(--blue-700));
}

.metric {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.metric span {
  color: var(--slate-700);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-section,
.appointment-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 72px;
  align-items: start;
}

.section h2,
.contact-band h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section p,
.contact-band p {
  color: var(--slate-700);
  line-height: 1.7;
}

.intro-text {
  margin: 30px 0 0;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 36px;
}

.section-heading p {
  margin: 16px 0 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 232px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #fbfdff);
  box-shadow: 0 10px 28px rgba(8, 37, 74, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700), var(--teal-500), var(--gold-500));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 182, 161, 0.45);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card svg {
  width: 28px;
  height: 28px;
  padding: 10px;
  color: var(--blue-700);
  background: linear-gradient(135deg, rgba(25, 149, 255, 0.12), rgba(17, 182, 161, 0.12));
  border: 1px solid rgba(11, 99, 198, 0.12);
  border-radius: 8px;
  box-sizing: content-box;
  margin-bottom: 24px;
}

.service-card h3,
.route-panel h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.25rem;
}

.service-card p {
  margin: 12px 0 0;
}

.blue-band {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(8, 37, 74, 0.97), rgba(10, 52, 112, 0.96)),
    radial-gradient(circle at 85% 15%, rgba(101, 215, 255, 0.24), transparent 36%);
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.section-heading.light .eyebrow {
  color: var(--cyan-300);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 800;
}

.tab.active {
  color: var(--blue-950);
  background: var(--white);
}

.route-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-panel > div {
  min-height: 224px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
}

.route-panel h3 {
  color: var(--white);
}

.route-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.step-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold-500);
  font-size: 0.92rem;
  font-weight: 900;
}

.appointment-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold-500);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.appointment-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-weight: 800;
}

.appointment-form .full-field,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 37, 74, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--slate-900);
  background: var(--white);
  outline: 0;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(25, 149, 255, 0.14);
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-900);
  font-weight: 800;
}

.faq-section {
  padding-top: 20px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue-950);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: var(--slate-700);
  line-height: 1.7;
}

.faq-answer.open {
  display: block;
}

.contact-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700) 62%, #0c8fd7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.contact-band h2,
.contact-band p {
  color: var(--white);
}

.contact-band .eyebrow {
  color: var(--gold-500);
}

.contact-band p {
  margin-bottom: 0;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--slate-700);
  border-top: 1px solid var(--line);
}

.footer a {
  color: var(--blue-700);
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/ips-samysalud-hero.png");
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 37, 74, 0.94), rgba(8, 37, 74, 0.72) 48%, rgba(8, 37, 74, 0.26)),
    linear-gradient(0deg, rgba(8, 37, 74, 0.45), rgba(8, 37, 74, 0.08));
}

.page-hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--cyan-300);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.7;
}

.quick-links {
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.quick-link {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-950);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(8, 37, 74, 0.1);
  font-weight: 900;
}

.quick-link svg {
  width: 22px;
  height: 22px;
  color: var(--blue-700);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.detail-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #f8fcff);
  box-shadow: 0 12px 34px rgba(8, 37, 74, 0.08);
  overflow: hidden;
}

.detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--cyan-300), var(--blue-700));
}

.detail-card .icon-box,
.info-card .icon-box,
.contact-card .icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--blue-700);
  background: linear-gradient(135deg, rgba(25, 149, 255, 0.12), rgba(245, 181, 27, 0.14));
  border: 1px solid rgba(11, 99, 198, 0.12);
}

.detail-card h2,
.info-card h3,
.contact-card h3,
.timeline-step h3 {
  margin: 0;
  color: var(--blue-950);
}

.detail-card p,
.info-card p,
.contact-card p,
.timeline-step p {
  color: var(--slate-700);
  line-height: 1.7;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--slate-700);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px var(--gold-soft);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 37, 74, 0.07);
}

.timeline {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.timeline-step {
  position: relative;
  padding: 24px 24px 24px 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 37, 74, 0.06);
  counter-increment: step;
}

.timeline-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-950);
  background: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
}

.soft-band {
  width: 100%;
  max-width: none;
  padding: 92px max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(238, 246, 255, 0.92), rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, rgba(245, 181, 27, 0.12), rgba(25, 149, 255, 0.08));
}

.requirement-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.map-panel {
  min-height: 340px;
  display: grid;
  align-content: end;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 37, 74, 0.9), rgba(11, 99, 198, 0.72)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
}

.map-panel h2,
.map-panel p {
  color: var(--white);
}

.page-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  color: var(--white);
  box-shadow: var(--shadow);
}

.page-cta h2,
.page-cta p {
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    justify-content: center;
  }

  .nav-item {
    width: 100%;
  }

  .nav-parent {
    justify-content: center;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin: 4px 0 8px;
    padding: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-link {
    justify-content: flex-start;
  }

  .hero {
    min-height: 78svh;
    background-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(8, 37, 74, 0.92), rgba(8, 37, 74, 0.56));
  }

  .metrics,
  .intro-section,
  .appointment-section,
  .route-panel,
  .quick-links,
  .detail-grid,
  .split-section,
  .info-grid,
  .requirement-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    margin-top: 0;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

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

  .contact-band,
  .page-cta,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .quick-links {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(1180px, calc(100% - 24px));
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-content {
    width: min(1180px, calc(100% - 28px));
    padding: 48px 0 72px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(1180px, calc(100% - 28px));
    padding: 66px 0;
  }

  .page-hero-content,
  .quick-links {
    width: min(1180px, calc(100% - 28px));
  }

  .page-hero {
    min-height: 380px;
  }

  .service-grid,
  .appointment-form {
    grid-template-columns: 1fr;
  }

  .appointment-form {
    padding: 20px;
  }

  .section h2,
  .contact-band h2 {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .contact-band {
    width: min(1180px, calc(100% - 28px));
    padding: 28px 20px;
  }

  .soft-band {
    padding: 66px 14px;
  }

  .detail-card,
  .info-card,
  .contact-card,
  .timeline-step,
  .page-cta {
    padding: 22px;
  }

  .timeline-step {
    padding-left: 70px;
  }

  .page-cta {
    width: min(1180px, calc(100% - 28px));
  }
}
