:root {
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif;
  --ink: #102331;
  --ink-soft: #395062;
  --paper: #f7fbff;
  --card: #ffffff;
  --line: #c9d9e6;
  --brand: #0f5d7f;
  --brand-strong: #093f59;
  --accent: #d48b26;
  --hero-grad: radial-gradient(circle at 10% 5%, #f7fcff 0%, #dceefa 32%, #c9e2f4 58%, #e8f3fb 100%);
  --green: #126044;
  --red: #9d2d26;
  --shadow: 0 14px 36px rgba(9, 42, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 42%, #eef6fc 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #e6a83d;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  z-index: 1000;
  padding: 8px 12px;
  background: #ffffff;
  border: 2px solid var(--brand-strong);
  border-radius: 10px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 48, 70, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.logo:hover {
  color: #ffffff;
}

.logo-mark {
  display: inline-block;
  position: relative;
  width: 154px;
  height: 32px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 3px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.55));
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(0, 0, 0, 0.24) 100%);
  mix-blend-mode: soft-light;
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 2px;
  z-index: 2;
  height: 8px;
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.48) 50%, transparent 100%);
  opacity: 0.78;
}

.logo-mark img {
  display: block;
  width: 154px;
  height: auto;
  filter: contrast(1.08) saturate(1.06);
}

.logo-note {
  color: #d5ecfa;
  font-size: 0.9rem;
  font-weight: 500;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-phone {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.topbar-phone:hover,
.topbar-phone:focus-visible {
  color: #d5ecfa;
  outline: none;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: #ebf7ff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.06);
  line-height: 1.2;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ebf7ff;
  border-color: rgba(235, 247, 255, 0.75);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.hero {
  background: var(--hero-grad);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 30px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 20px 44px;
}

.hero-inner.hero-inner-single {
  grid-template-columns: minmax(0, 1fr);
}

.breadcrumbs {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.breadcrumbs a {
  text-underline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-strong);
  font-size: 0.78rem;
  margin: 0 0 14px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  color: #08293b;
  max-width: 18ch;
}

h2 {
  margin: 0 0 12px;
  color: #073148;
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  line-height: 1.2;
}

h3 {
  margin: 0 0 8px;
  color: #093e59;
  font-size: 1.05rem;
  line-height: 1.3;
}

.lead {
  margin: 18px 0 0;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.hero-media {
  margin: 0;
  border: 1px solid #bfd7e8;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 10px;
  max-width: 520px;
  width: 100%;
  justify-self: end;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
}

.page-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 20px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.content-section + .content-section {
  margin-top: 0;
}

.content-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(11, 44, 65, 0.05);
}

.grid-two,
.grid-three,
.price-grid,
.steps-grid,
.link-grid {
  display: grid;
  gap: 16px;
}

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

.grid-three,
.link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.card,
.price-card,
.notice,
.contact-card {
  border: 1px solid #d6e4ef;
  border-radius: 14px;
  background: #fafdff;
  box-shadow: none;
}

.card,
.contact-card {
  padding: 16px;
}

.card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.feature-list,
.check-list,
.city-list {
  margin: 12px 0 0;
  padding-left: 1.25rem;
}

.feature-list li,
.check-list li,
.city-list li {
  margin: 7px 0;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.price-card {
  background: #f0f8ff;
  border: 1px solid #c7deed;
  border-radius: 16px;
  padding: 16px;
}

.price-card-primary {
  border: 1px solid #c7deed;
}

.price-label {
  margin: 0;
  color: #1a4d68;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  margin: 8px 0 4px;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  line-height: 1;
  color: #062e44;
  font-weight: 800;
}

.price-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.cost-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
}

.cost-table th,
.cost-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.cost-table th {
  background: #eaf4fb;
}

.cost-table tr:last-child td {
  border-bottom: 0;
}

.notice {
  padding: 16px;
  border-left: 4px solid var(--accent);
}

.notice p {
  margin: 0;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  background: var(--brand-strong);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #8cb3cb;
  color: #0c3e58;
}

.button-whatsapp {
  background: #146c43;
  border: 1px solid #146c43;
  color: #ffffff;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.text-link {
  font-weight: 800;
  text-underline-offset: 3px;
}

.steps-grid {
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 16px 16px 16px 62px;
  border: 1px solid #d6e4ef;
  border-radius: 14px;
  background: #fafdff;
}

.step::before {
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  content: counter(steps);
  counter-increment: steps;
  font-weight: 900;
}

.step p {
  margin: 0;
}

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

.contact-card address {
  font-style: normal;
}

.contact-value {
  margin: 4px 0 18px;
  font-size: 1.05rem;
  font-weight: 700;
}

.avail-card {
  max-width: none;
  margin-top: 12px;
  border: 1px solid #d3e3ef;
  border-radius: 14px;
  background: #fbfeff;
  padding: 14px;
  box-shadow: none;
}

.avail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.avail-month {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #0a3a53;
  text-transform: capitalize;
}

.avail-nav {
  border: 1px solid #9fbfd4;
  border-radius: 10px;
  background: #ffffff;
  color: #0e3f59;
  min-width: 36px;
  min-height: 34px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.avail-nav:hover,
.avail-nav:focus-visible {
  background: #eef7fd;
  border-color: #7ea8c4;
  outline: none;
}

.avail-weekdays,
.avail-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.avail-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #557084;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 0;
}

.avail-day {
  min-height: 42px;
  border: 1px solid #d4e3ee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #214557;
  background: #f5fbff;
  font-variant-numeric: tabular-nums;
}

.avail-day.booked {
  background: #ffe7e5;
  border-color: #e5aea8;
  color: #7f231b;
}

.avail-day.past {
  color: #97a8b4;
  background: #f3f6f8;
  border-color: #e1e7ec;
  box-shadow: none;
}

.avail-day.today {
  border: 2px solid #0a4f70;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(10, 79, 112, 0.2);
}

.avail-day.today.booked {
  border-color: #8f2c22;
  box-shadow: inset 0 0 0 1px rgba(143, 44, 34, 0.2);
}

.avail-day.empty {
  visibility: hidden;
}

.avail-legend {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #4b687c;
  font-size: 0.9rem;
}

.avail-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.avail-legend-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.avail-legend-item-free::before {
  background: #cdeaf9;
  border: 1px solid #9acde8;
}

.avail-legend-item-booked::before {
  background: #f2aaa2;
  border: 1px solid #d67f77;
}

.faq {
  max-width: none;
  margin: 0;
}

.faq dt {
  font-family: var(--font-sans);
  font-weight: 700;
  margin-top: 14px;
  color: #0a3a53;
}

.faq dt:first-child {
  margin-top: 0;
}

.faq dd {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.link-card {
  display: block;
  min-height: 100%;
  padding: 16px;
  border: 1px solid #d6e4ef;
  border-radius: 14px;
  background: #fafdff;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.link-card:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 32px;
  }

  .hero-media {
    justify-self: center;
  }

  .grid-two,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .logo {
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 8px;
    white-space: nowrap;
  }

  .logo-mark {
    width: 136px;
    height: 28px;
  }

  .logo-mark img {
    width: 136px;
  }

  .logo-note {
    display: inline;
    font-size: 0.84rem;
    margin: 0;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .grid-three,
  .price-grid,
  .steps-grid,
  .link-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  html {
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .topbar {
    position: static;
  }

  .topbar-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .nav a {
    width: 100%;
    font-size: 0.94rem;
    min-height: 40px;
  }

  .hero-inner,
  .page-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-inner {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .page-main {
    padding-top: 20px;
  }

  .content-section {
    padding: 18px;
    border-radius: 16px;
  }

  .card,
  .contact-card {
    padding: 18px 16px;
  }

  h1 {
    font-size: clamp(2.25rem, 8.5vw, 2.8rem);
    line-height: 1.12;
  }

  h2 {
    font-size: 1.55rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    min-height: 46px;
  }

  .avail-card {
    padding: 12px;
  }

  .avail-weekdays,
  .avail-grid {
    gap: 4px;
  }

  .avail-day {
    min-height: 40px;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  .topbar,
  .cta-row,
  .site-footer {
    display: none;
  }

  body {
    background: #ffffff;
  }

  .hero,
  .card,
  .price-card,
  .contact-card,
  .avail-card {
    border-color: #777777;
    background: #ffffff;
    box-shadow: none;
  }
}
