:root {
  --bg: #f6f8fb;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #ffffff;
  --surface-deep: #0f2740;
  --text: #123c5f;
  --text-soft: #5f7487;
  --line: rgba(18, 60, 95, 0.08);
  --primary: #164a78;
  --primary-deep: #0f3353;
  --accent: #a9cbe3;
  --shadow: 0 24px 60px rgba(15, 23, 34, 0.08);
  --shadow-soft: 0 12px 30px rgba(15, 23, 34, 0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", sans-serif;
  --font-editorial: "Instrument Serif", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(169, 203, 227, 0.12), transparent 26%),
    linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 55%, #fafbfd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 24%);
  opacity: 0.48;
}

.spine-note {
  position: fixed;
  left: 8px;
  bottom: 40px;
  z-index: 6;
  display: none;
  pointer-events: none;
}

.spine-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 7px;
  border: 1px solid rgba(18, 60, 95, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(18, 60, 95, 0.82);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  backdrop-filter: blur(10px);
}

.site-shell {
  width: min(100% - 20px, var(--max-width));
  margin: 0 auto;
  padding-bottom: 80px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 34, 0.06);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: 0 10px 32px rgba(15, 23, 34, 0.06);
}

.brand,
.nav a {
  text-decoration: none;
  color: inherit;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-left: 8px;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
  padding: 2px 0 4px;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 34, 0.06);
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(161, 210, 239, 0.22);
  border-color: rgba(78, 141, 186, 0.22);
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-pill-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 12px 24px rgba(18, 60, 95, 0.18);
}

.nav-pill-primary:visited {
  color: #fff !important;
}

.nav-pill-primary:hover,
.nav-pill-primary:focus-visible,
.nav-pill-primary:active {
  background: linear-gradient(135deg, #2d79b7 0%, #174766 100%);
  color: #fff !important;
  border-color: transparent;
}

.section {
  padding: 72px 0;
}

.gallery-section {
  padding-bottom: 24px;
}

.contacts-section {
  padding-top: 24px;
}

.gadgets-section {
  padding-top: 42px;
}

.gallery-section .section-heading {
  margin-bottom: 18px;
}

.contacts-section .section-heading {
  margin-bottom: 14px;
}

.gadgets-section .section-heading {
  margin-bottom: 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-height: calc(100svh - 86px);
  align-items: center;
  padding-top: 30px;
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 1180px;
  min-height: calc(100svh - 98px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

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

h1 {
  font-size: clamp(3.65rem, 17vw, 9.4rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
  font-weight: 700;
}

h1 span {
  display: block;
  font-family: var(--font-editorial);
  font-size: clamp(1.85rem, 7vw, 3rem);
  line-height: 1.02;
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: -0.035em;
  font-style: italic;
}

.hero-subtitle {
  margin: 22px 0 0;
  font-size: clamp(1.24rem, 6.4vw, 2.15rem);
  color: var(--primary-deep);
  max-width: 13ch;
  letter-spacing: -0.045em;
  line-height: 1;
  font-weight: 500;
}

.hero-subtitle span {
  display: block;
  margin-top: 0;
}

.hero-subtitle span:last-child {
  font-size: 0.84em;
  margin-top: 0.38em;
}

.hero-support {
  margin: 18px 0 0;
  max-width: 34ch;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: clamp(120px, 22vh, 260px);
}

.hero-actions .button {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 16px 22px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  box-shadow: none;
}

.hero-actions .button-primary {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible {
  background: #1c5a8f;
  border-color: #1c5a8f;
  color: #fff;
}

.hero-actions .button-secondary {
  background: rgba(228, 236, 244, 0.86);
  border: 1px solid rgba(18, 60, 95, 0.18);
  color: var(--primary-deep);
  backdrop-filter: blur(16px);
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  background: rgba(216, 228, 238, 0.96);
  border-color: rgba(18, 60, 95, 0.24);
}

.hero-bubble-wrap {
  width: 100%;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bubble-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 340px);
  min-height: 108px;
  padding: 20px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(132, 156, 137, 0.96), rgba(110, 137, 116, 0.98));
  color: #f8fbf8;
  text-decoration: none;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.22;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.025em;
  box-shadow: 0 18px 36px rgba(82, 107, 88, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.hero-bubble-link:hover,
.hero-bubble-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(82, 107, 88, 0.22);
  filter: saturate(1.03);
}

.hero-text,
.card p,
.story-copy p,
.offer-overview p,
.package-heading p,
.contacts-card p,
.compare-card li,
.phase-card li,
.pillar p,
.signal-item p,
.testimonial-card p,
.method-card p,
.waitlist-form label,
.form-note {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-text,
.brand-definition {
  max-width: 62ch;
}

.hero-rights {
  display: block;
  margin-top: 12px;
  font-size: 0.68rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0.56;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 34px;
}

.contacts-disclaimer {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.74rem;
  line-height: 1.45;
}

.contacts-disclaimer p {
  margin: 0;
}

.contacts-disclaimer-title {
  color: var(--primary);
  font-size: 0.64rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #1e5f97 0%, #14466f 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 51, 83, 0.16);
}

.button-secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 34, 0.08);
}

.button-matte {
  color: #fff;
  background: #6eb9e2;
  border-color: #6eb9e2;
  box-shadow: none;
}

.button-matte:hover,
.button-matte:focus-visible {
  background: #5daedc;
  border-color: #5daedc;
  color: #fff;
}

.hero-visual,
.photo-stack,
.story-grid,
.offers-layout,
.waiting-grid,
.attention-grid,
.split-grid,
.waves-grid {
  display: grid;
  gap: 20px;
}

.prime-onde-statement {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: none;
  grid-column: 1 / -1;
}

.prime-onde-kicker {
  font-family: var(--font-sans);
  font-size: 1.08rem !important;
  line-height: 1.4 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  color: var(--primary) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  margin-top: -6px !important;
}

.prime-onde-statement p {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(2.12rem, 5.6vw, 3.5rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: var(--primary-deep);
  font-style: italic;
  font-weight: 500;
  max-width: none;
}

@media (min-width: 700px) {
  .split-grid {
    grid-template-columns: 1fr;
  }

  .prime-onde-statement p:not(.prime-onde-kicker) {
    max-width: 100%;
  }
}

.card,
.phase-card,
.compare-card,
.photo-placeholder,
.testimonial-card,
.method-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 34, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.card,
.compare-card,
.testimonial-card,
.method-card {
  padding: 26px;
}

.hero-card {
  padding: 0;
  min-height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  align-self: start;
}

.card-label,
.phase-label,
.compare-label {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card-label {
  color: var(--primary);
}

.hero-card h2 {
  font-family: var(--font-editorial);
  font-size: clamp(1.08rem, 3.4vw, 1.45rem);
  line-height: 1.26;
  margin-bottom: 0;
  letter-spacing: -0.03em;
  color: var(--primary-deep);
  font-style: italic;
  font-weight: 500;
}

.feature-list,
.phase-card ul,
.compare-card ul,
.attention-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.feature-list li,
.phase-card li,
.compare-card li,
.attention-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before,
.phase-card li::before,
.compare-card li::before,
.attention-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.feature-list li {
  padding-left: 28px;
}

.feature-list li::before {
  content: "✓";
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.feature-list-deep {
  margin-top: 22px;
}

.feature-list-deep li {
  color: rgba(255, 255, 255, 0.9);
}

.feature-list-deep li::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(138, 184, 216, 0.92));
}

.photo-placeholder {
  min-height: 168px;
  padding: 0;
  display: block;
  text-align: left;
  background: #e8f0f5;
  color: var(--text);
  border-radius: 0;
  border: 0;
  box-shadow:
    -22px 0 34px rgba(17, 40, 62, 0.08),
    22px 0 34px rgba(17, 40, 62, 0.08),
    0 28px 38px rgba(17, 40, 62, 0.1);
}

.hero .photo-placeholder {
  min-height: 100%;
  border-radius: 0;
}

.photo-placeholder::before {
  content: none;
}

.photo-placeholder img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04) brightness(1.06);
  transform: none;
  background: linear-gradient(180deg, #dde6ee, #f3f6f9);
}

.gallery-grid .photo-placeholder {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.gallery-grid .photo-placeholder:last-child img {
  object-position: center 54%;
}

.story-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(0.82);
  filter: saturate(0.88) contrast(1.08) brightness(1.03) grayscale(0.04);
}

.story-photo.photo-placeholder {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.gadgets-card {
  padding: 28px 26px;
  display: grid;
  gap: 24px;
  align-items: start;
}

.gadgets-book {
  max-width: 320px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
}

.gadgets-book img {
  min-height: 0;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02) brightness(1.02);
  background: transparent;
}

.gadgets-copy {
  max-width: 42rem;
  margin: 0 auto;
}

.gadgets-copy-columns {
  display: grid;
  gap: 20px;
}

.gadgets-copy-column {
  display: grid;
  gap: 16px;
}

.gadgets-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text);
}

.gadgets-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  padding-top: 8px;
}

@media (min-width: 960px) {
  .gadgets-copy {
    max-width: none;
    margin: 0;
  }
}

.timeline-trigger {
  font: inherit;
  font-weight: 800;
  color: var(--primary-deep);
}

.timeline-popup {
  position: relative;
  margin-top: 18px;
  padding: 18px 18px 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 48, 70, 0.08);
  box-shadow: 0 24px 60px rgba(15, 46, 74, 0.12);
}

.timeline-popup::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 44px;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid rgba(23, 48, 70, 0.08);
  border-top: 1px solid rgba(23, 48, 70, 0.08);
}

.timeline-popup-inner {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline-popup-inner::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(28, 91, 143, 0.18), rgba(28, 91, 143, 0.42), rgba(28, 91, 143, 0.18));
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-entry-gap-lg {
  margin-bottom: 18px;
}

.timeline-entry-gap-lg + .timeline-entry {
  margin-top: 18px;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(28, 91, 143, 0.08);
}

.timeline-year {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.timeline-entry p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.photo-placeholder span,
.photo-placeholder strong {
  display: none;
}

.photo-placeholder strong span {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  opacity: 0.9;
}

.photo-stack .photo-placeholder strong {
  padding-top: 14px;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}

.photo-focus-blue-shirt img {
  object-position: center 24%;
}

.photo-placeholder-alt {
  background: #dfeaf1;
}

.section-heading {
  margin-bottom: 28px;
  max-width: 760px;
}

.section-heading.compact {
  max-width: 620px;
}

.section-heading h2 {
  font-size: clamp(2rem, 10vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.section-deep-subtitle {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.pillars-label {
  margin: 6px 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.phase-grid,
.compare-grid,
.pillars,
.method-grid,
.package-grid,
.gallery-grid,
.testimonials-grid {
  display: grid;
  gap: 18px;
}

.phase-card {
  padding: 28px;
}

.phase-age {
  margin: 14px 0 16px;
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0.8;
}

.phase-card.active .phase-age {
  color: rgba(255, 255, 255, 0.82);
}

.phase-examples {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.phase-note {
  margin: 0 0 6px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--text-soft);
  opacity: 0.86;
}

.phase-examples-label {
  margin: 0 0 4px;
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0.8;
}

.phase-example {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0.8;
}

.phase-example span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  color: var(--primary-deep);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

.phase-card.active {
  position: relative;
  background:
    linear-gradient(180deg, rgba(14, 53, 83, 0.96), rgba(10, 37, 59, 0.96)),
    linear-gradient(160deg, rgba(138, 184, 216, 0.1), transparent);
  color: #fff;
  overflow: visible;
}

.phase-card.active h3,
.phase-card.active li,
.phase-card.active .phase-label {
  color: #fff;
}

.phase-card.muted {
  opacity: 0.82;
}

.phase-card h3,
.compare-card h3,
.package-card h3,
.pillar h3,
.highlighted-card h3,
.testimonial-card h3,
.method-card h3 {
  font-family: var(--font-display);
  font-size: 1.36rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.package-card h3 {
  font-size: 1.08rem;
  line-height: 1.14;
  white-space: normal;
}

.promo-package-face h3 {
  font-size: 1.08rem;
  line-height: 1.14;
  white-space: normal;
}

.split-grid {
  align-items: start;
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(23, 48, 70, 0.08);
  border-radius: var(--radius-md);
}

.signal-item span,
.method-index {
  font-family: var(--font-editorial);
  font-size: 2.8rem;
  color: var(--primary);
}

.section-deep {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 32px 22px;
  background:
    linear-gradient(180deg, rgba(13, 47, 74, 0.94), rgba(10, 38, 61, 0.92)),
    radial-gradient(circle at top, rgba(138, 184, 216, 0.18), transparent 30%);
  color: #fff;
}

.section-deep-inline {
  margin: 0;
  min-width: 0;
}

.section-deep-inline .section-heading {
  margin-bottom: 18px;
}

@media (min-width: 700px) {
  .section-deep-inline {
    margin-top: 0;
    align-self: start;
    aspect-ratio: 3 / 2;
    min-height: 700px;
  }
}

.section-deep .section-heading h2,
.section-deep .eyebrow,
.section-deep .card p,
.section-deep .pillar p,
.section-deep .pillar h3 {
  color: inherit;
}

.section-deep .section-heading h2 {
  white-space: normal;
}

.section-deep .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.pillar {
  padding: 16px 16px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 112px;
}

.section-deep .pillar h3 {
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.section-deep .pillar p {
  font-size: 1.04rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.compare-label.positive {
  color: var(--primary);
}

.compare-label.negative {
  color: #a15353;
}

.method-card {
  appearance: none;
  width: 100%;
  min-height: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  perspective: 1200px;
}

.method-card:focus-visible {
  outline: 2px solid rgba(138, 184, 216, 0.9);
  outline-offset: 4px;
}

.method-card-inner {
  position: relative;
  min-height: 280px;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.method-card.is-flipped .method-card-inner {
  transform: rotateY(180deg);
}

.method-card-face {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 26px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 251, 0.84));
  box-shadow: var(--shadow);
}

.method-card-front {
  position: relative;
}

.method-card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  background:
    linear-gradient(180deg, rgba(28, 91, 143, 0.98), rgba(18, 60, 95, 0.98)),
    linear-gradient(135deg, rgba(138, 184, 216, 0.18), transparent);
}

.method-card-back .eyebrow,
.method-card-back p {
  color: #fff;
}

.method-card p,
.package-card p,
.testimonial-card p {
  margin-bottom: 0;
}

.method-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.method-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-soft);
  text-align: center;
}

.method-toggle-wrap {
  display: flex;
  justify-content: center;
}

.method-toggle {
  position: relative;
  min-width: 280px;
  padding: 18px 26px 18px 74px;
  border: 1px solid rgba(23, 48, 70, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 251, 0.92)),
    linear-gradient(135deg, rgba(138, 184, 216, 0.16), transparent);
  color: var(--primary-deep);
  box-shadow: 0 20px 40px rgba(18, 60, 95, 0.1);
}

.method-toggle-wave {
  position: absolute;
  left: 22px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M8 40c7 0 7-6 14-6s7 6 14 6 7-6 14-6 7 6 14 6' fill='none' stroke='%232a92d4' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M8 28c7 0 7-6 14-6s7 6 14 6 7-6 14-6 7 6 14 6' fill='none' stroke='%2368c3f0' stroke-width='5' stroke-linecap='round' opacity='0.95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.method-toggle-label {
  position: relative;
  z-index: 1;
}

.method-content {
  margin-top: 28px;
}

.method-content[hidden] {
  display: none !important;
}

.method-content .section-heading h2,
.method-content .eyebrow,
.method-content .method-note {
  color: inherit;
}

.method-content .method-note {
  color: var(--text-soft);
}

.attention-section .card,
.offer-overview,
.package-card,
.waitlist-form,
.contacts-card,
.story-copy {
  background: rgba(255, 255, 255, 0.84);
}

.highlighted-card {
  background:
    linear-gradient(180deg, rgba(28, 91, 143, 0.98), rgba(18, 60, 95, 0.98)),
    linear-gradient(135deg, rgba(138, 184, 216, 0.12), transparent);
  color: #fff;
}

.highlighted-card p,
.highlighted-card h3 {
  color: #fff;
}

.package-block {
  display: grid;
  gap: 20px;
  padding: 2px 0 0;
}

.offer-column {
  display: grid;
  gap: 14px;
  align-self: start;
}

.offers-section .section-heading {
  margin-bottom: 24px;
}

.offer-season-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}

.offer-season-status {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.offers-layout {
  padding: 26px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 64px rgba(15, 46, 74, 0.08);
}

.offer-stack {
  display: grid;
  gap: 44px;
}

.offer-chapter {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px 18px 20px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 34, 0.06);
  box-shadow: 0 20px 50px rgba(15, 23, 34, 0.05);
}

.offer-chapter-group {
  padding-top: 24px;
}

.offer-banner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 2px;
}

.offer-banner {
  justify-self: start;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(123, 191, 235, 0.18);
  border: 1px solid rgba(82, 164, 222, 0.2);
  color: #2a6b95;
  font-size: 0.68rem;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.offer-banner-button {
  min-height: 38px;
  padding: 10px 16px;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.offer-chapter-individual {
  border: 1px solid rgba(15, 23, 34, 0.06);
  background: rgba(255, 255, 255, 0.78);
}

.offer-chapter-individual > .offer-scroll-cue {
  display: none;
}

.offer-subsection-plus {
  margin-top: 20px;
  display: none !important;
}

.offer-subsection-plus .offer-bookmark {
  display: none;
}

.offer-subsection-plus .offer-chapter-head {
  padding-top: 22px;
  border-top: 1px solid rgba(18, 60, 95, 0.08);
}

.offer-bookmark {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 0;
  padding: 7px 10px;
  background: linear-gradient(180deg, rgba(22, 74, 120, 0.96), rgba(15, 51, 83, 0.96));
  color: #f6f8fb;
  font-size: 0.66rem;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(14, 44, 71, 0.12);
}

.offer-chapter-head {
  display: grid;
  gap: 8px;
  max-width: none;
}

.offer-title-row {
  display: grid;
  gap: 14px;
  width: 100%;
}

.offer-inline-banner {
  margin: 10px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(103, 179, 229, 0.3);
  background: linear-gradient(180deg, rgba(232, 244, 251, 0.96), rgba(223, 238, 248, 0.92));
  color: var(--primary-deep);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(73, 132, 178, 0.08);
}

.consent-popup {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 40;
  width: min(100% - 24px, 680px);
  transform: translateX(-50%);
}

.consent-popup-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(18, 60, 95, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(15, 23, 34, 0.12);
  backdrop-filter: blur(18px);
  border-radius: 22px;
}

.consent-popup-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.consent-popup-title {
  margin: 0;
  color: var(--primary-deep);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.consent-popup-note {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.consent-popup-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.offer-inline-banner.is-visible {
  animation: offerBannerFadeIn 220ms ease;
}

@keyframes offerBannerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-title-row h3 {
  margin: 0;
}

.offer-title-row .offer-interest-button {
  margin-left: 0;
}

.offer-chapter-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 7vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.offer-interest-button {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  font-size: 0.94rem;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: normal;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

.offer-interest-button:hover,
.offer-interest-button:focus-visible {
  background: #1c5a8f;
  border-color: #1c5a8f;
  color: #fff;
}

.offer-chapter-subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.offer-subsection {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 60, 95, 0.08);
}

.offer-subsection-promo {
  margin-top: 20px;
  padding-top: 24px;
}

.offer-subsection-plus {
  margin-top: 20px;
}

.offer-subsection-note {
  margin: -10px 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.offer-scroll-cue {
  margin: 6px 0 0;
  justify-self: center;
  display: grid;
  gap: 4px;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  opacity: 0.98;
}

.offer-scroll-cue-standalone {
  display: none !important;
}

.offer-chapter-group > .offer-scroll-cue {
  display: none;
}

.offer-scroll-cue span {
  font-size: 1.2rem;
  color: var(--primary);
  line-height: 1;
}

.offer-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
}

.offer-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(28, 91, 143, 0.08);
  color: var(--primary-deep);
  font-size: 0.82rem;
  line-height: 1;
}

.offer-overview {
  align-self: start;
}

.offer-divider {
  display: none;
}

.offer-group-summary {
  display: grid;
  gap: 4px;
  padding: 4px 0 2px;
}

.offer-group-summary p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.offer-facts {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.offer-fact {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin: 0;
  align-items: start;
}

.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(28, 91, 143, 0.08);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}

.group-schedule {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.group-schedule-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
  font-weight: 800;
}

.group-schedule-table {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.group-schedule-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  align-items: start;
  padding: 12px 12px 13px;
  border-radius: 14px;
  background: rgba(244, 249, 252, 0.96);
  border: 1px solid rgba(23, 48, 70, 0.06);
}

.group-schedule-row span {
  display: grid;
  gap: 4px;
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text);
}

.group-schedule-row:not(.group-schedule-row-head) span::before {
  font-size: 0.66rem;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-soft);
}

.group-schedule-row:not(.group-schedule-row-head) span:nth-child(1)::before {
  content: "Giorno";
}

.group-schedule-row:not(.group-schedule-row-head) span:nth-child(2)::before {
  content: "Orario";
}

.group-schedule-row:not(.group-schedule-row-head) span:nth-child(3)::before {
  content: "Classe";
}

.group-schedule-row:not(.group-schedule-row-head) span:nth-child(4)::before {
  content: "Livello";
}

.group-schedule-row:not(.group-schedule-row-head) span:nth-child(5)::before {
  content: "Struttura";
}

.group-schedule-row:not(.group-schedule-row-head) span:nth-child(3),
.group-schedule-row:not(.group-schedule-row-head) span:nth-child(5) {
  grid-column: 1 / -1;
}

.group-schedule-row-head {
  display: none;
}

.group-schedule-day-name {
  font-weight: 800;
  color: var(--text) !important;
}

.group-schedule-note {
  margin: 12px 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-soft);
  opacity: 0.86;
  display: none;
}

.group-schedule-table-wrap,
.group-schedule-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.group-schedule-table-enhanced {
  width: 100%;
  min-width: 760px;
  table-layout: fixed;
  border-collapse: collapse;
}

.group-schedule-table-enhanced colgroup col:nth-child(1) {
  width: 14%;
}

.group-schedule-table-enhanced colgroup col:nth-child(2) {
  width: 11%;
}

.group-schedule-table-enhanced colgroup col:nth-child(3) {
  width: 24%;
}

.group-schedule-table-enhanced colgroup col:nth-child(4) {
  width: 17%;
}

.group-schedule-table-enhanced colgroup col:nth-child(5) {
  width: 34%;
}

.group-schedule-table-enhanced thead th {
  padding: 0 14px 12px;
  text-align: left;
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary-deep);
  border-bottom: 1px solid rgba(23, 48, 70, 0.08);
}

.group-schedule-table-enhanced tbody tr {
  border-bottom: 1px solid rgba(23, 48, 70, 0.06);
}

.group-schedule-table-enhanced tbody th,
.group-schedule-table-enhanced tbody td {
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  background: transparent;
}

.group-schedule-table-enhanced tbody th {
  font-weight: 800;
  color: var(--primary-deep);
}

.package-card {
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: default;
  background: transparent;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 48, 70, 0.08);
  box-shadow: none;
}

.package-card:focus-visible {
  outline: 2px solid rgba(138, 184, 216, 0.9);
  outline-offset: 4px;
}

.package-card-inner {
  position: relative;
  min-height: 196px;
}

.package-card-face {
  min-height: 196px;
  padding: 26px 24px 56px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 48, 70, 0.08);
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 252, 0.92)),
    linear-gradient(135deg, rgba(138, 184, 216, 0.08), transparent);
}

.package-card-front {
  position: relative;
}

.package-card-price-inline,
.promo-package-price-inline {
  position: absolute;
  right: 16px;
  bottom: 14px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(18, 60, 95, 0.72);
}

.package-card em,
.promo-package-face em {
  display: block;
  margin-top: 12px;
  font-style: italic;
  color: rgba(95, 116, 135, 0.88);
  font-weight: 400;
}

.package-card-price-inline-back,
.promo-package-price-inline-back {
  position: static;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
}

.packages-season-label {
  margin: 2px 0 -2px;
  justify-self: start;
  padding: 7px 12px;
  border-radius: 0;
  background: rgba(126, 191, 232, 0.24);
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
  font-weight: 800;
}

.package-card-format {
  margin: 8px 0 16px;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.promo-packages {
  display: grid;
  gap: 18px;
  order: 5;
  margin-top: 48px;
  padding: 30px 0 6px;
  border-top: 2px solid rgba(154, 107, 47, 0.3);
}

.promo-packages-label {
  margin: 0;
  justify-self: start;
  padding: 7px 12px;
  border-radius: 0;
  background: rgba(126, 191, 232, 0.24);
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
  font-weight: 800;
}

.promo-package-icon {
  display: none;
}

.package-heading {
  order: 1;
}

.packages-season-label {
  order: 2;
}

.package-grid {
  order: 3;
}

.offer-actions {
  order: 4;
}

.promo-packages-grid {
  display: grid;
  gap: 16px;
}

.promo-package-item {
  display: grid;
  gap: 12px;
}

.promo-package-card {
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: default;
  background: transparent;
  border: 0;
}

.promo-package-cta {
  justify-self: start;
  background: #174766;
  border-color: #174766;
  color: #fff;
}

.promo-package-card:focus-visible {
  outline: 2px solid rgba(194, 141, 62, 0.45);
  outline-offset: 4px;
}

.promo-package-inner {
  position: relative;
  min-height: 196px;
}

.promo-package-face {
  min-height: 196px;
  padding: 24px 24px 52px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 48, 70, 0.08);
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 252, 0.92)),
    linear-gradient(135deg, rgba(138, 184, 216, 0.08), transparent);
}

.promo-package-front {
  position: relative;
}

.promo-package-back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  transform: rotateY(180deg);
}

.promo-package-back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
}

.promo-package-face h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.48rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.promo-package-face p {
  margin: 0;
  color: var(--text-soft);
}

.promo-package-icon {
  margin-bottom: 10px !important;
  font-size: 1.2rem;
  line-height: 1;
}

.promo-package-format {
  margin: 6px 0 12px !important;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary) !important;
  font-weight: 800;
}

.promo-package-icon {
  color: var(--primary);
}

.promo-package-price {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text) !important;
}

.formats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.formats span {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 48, 70, 0.08);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.offer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-actions-centered {
  justify-content: center;
  align-items: center;
}

.offer-actions-centered .button {
  min-width: min(100%, 260px);
}

.atelier-toggle-wrap {
  display: flex;
  justify-content: center;
}

.atelier-toggle-button {
  min-width: min(100%, 360px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 251, 0.92)),
    linear-gradient(135deg, rgba(138, 184, 216, 0.16), transparent);
  color: var(--primary-deep);
  border-color: rgba(28, 91, 143, 0.16);
  box-shadow: 0 18px 36px rgba(18, 60, 95, 0.1);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atelier-toggle-button:hover,
.atelier-toggle-button:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 245, 250, 0.96)),
    linear-gradient(135deg, rgba(138, 184, 216, 0.22), transparent);
  color: var(--primary);
}

.custom-path[hidden] {
  display: none !important;
}

.custom-path-simple-copy {
  display: grid;
  gap: 12px;
}

.custom-path-simple-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.custom-path {
  display: grid;
  gap: 18px;
  margin-top: 10px;
  padding: 22px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92)),
    linear-gradient(135deg, rgba(138, 184, 216, 0.08), transparent);
  border: 1px solid rgba(23, 48, 70, 0.08);
  box-shadow: 0 24px 54px rgba(15, 46, 74, 0.08);
}

.custom-path-intro {
  margin: 24px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.86;
}

.custom-path h3 {
  margin: 0;
}

.custom-path-subtitle {
  margin: 0;
  color: var(--text-soft);
}

.custom-path-layout {
  display: grid;
  gap: 16px;
}

.custom-path-bank,
.custom-path-dropzone {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(23, 48, 70, 0.16);
  background: rgba(244, 248, 251, 0.94);
  min-height: 86px;
}

.custom-path-bank.is-over,
.custom-path-dropzone.is-over {
  border-color: rgba(28, 91, 143, 0.42);
  background: rgba(234, 243, 249, 0.96);
}

.custom-topic {
  appearance: none;
  border: 1px solid rgba(23, 48, 70, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.96));
  border-radius: 16px;
  padding: 10px 12px;
  display: grid;
  gap: 2px;
  text-align: left;
  cursor: grab;
  box-shadow: 0 12px 24px rgba(15, 46, 74, 0.08);
  width: 100%;
  min-width: 0;
}

.custom-topic[data-topic-id="stile-libero-zero"] {
  order: 1;
}

.custom-topic[data-topic-id="stile-libero-perfezionamento"] {
  order: 2;
}

.custom-topic[data-topic-id="dorso-zero"] {
  order: 3;
}

.custom-topic[data-topic-id="dorso-perfezionamento"] {
  order: 4;
}

.custom-topic[data-topic-id="rana-zero"] {
  order: 5;
}

.custom-topic[data-topic-id="rana-perfezionamento"] {
  order: 6;
}

.custom-topic[data-topic-id="propulsione-efficace"] {
  order: 7;
}

.custom-topic[data-topic-id="scivolamenti-perfetti"] {
  order: 8;
}

.custom-topic[data-topic-id="respirazione"] {
  order: 9;
}

.custom-topic[data-topic-id="coordinazione"] {
  order: 10;
}

.custom-topic[data-topic-id="tuffi"] {
  order: 11;
}

.custom-topic[data-topic-id="profondita"] {
  order: 12;
}

.custom-topic[data-topic-id="sicurezza"] {
  order: 13;
}

.custom-topic[data-topic-id="autonomia"] {
  order: 14;
}

.custom-topic[data-topic-id="fantasia"] {
  order: 15;
}

.custom-topic.is-dragging {
  opacity: 0.55;
}

.custom-topic-title {
  font-weight: 700;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.3;
}

.custom-topic-meta {
  font-size: 0.66rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.custom-path-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 8px;
}

.custom-path-progress-layout {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.custom-path-title,
.custom-path-meter {
  margin: 0;
}

.custom-path-title {
  font-weight: 700;
  color: var(--text);
}

.custom-path-meter {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--primary-deep);
  font-weight: 800;
}

.custom-path-progress {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.custom-path-progress-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(226, 239, 247, 0.95), rgba(214, 231, 242, 0.92));
  overflow: hidden;
}

.custom-path-progress-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(111, 190, 234, 0.92), rgba(28, 91, 143, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: height 220ms ease;
}

.custom-path-progress-fill::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  right: 6px;
  bottom: 8px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 12px, rgba(255, 255, 255, 0.22), transparent 18px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 40%);
}

.custom-path-slots {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(15, minmax(0, 1fr));
  gap: 6px;
  height: 100%;
  min-height: 220px;
  padding: 8px 10px;
}

.custom-path-slot {
  min-height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.custom-path-slot.is-filled {
  background: rgba(255, 255, 255, 0.82);
}

.custom-path-empty {
  margin: 0;
  color: var(--text-soft);
}

.custom-path-request {
  display: grid;
  gap: 14px;
  padding-top: 6px;
}

.custom-path-request[hidden] {
  display: none !important;
}

.custom-path-cta {
  display: flex;
  justify-content: flex-start;
  padding-top: 4px;
}

.custom-path-request-grid {
  display: grid;
  gap: 14px;
}

.custom-path-request label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.4;
}

.custom-path-request input,
.custom-path-request select,
.custom-path-request textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(23, 48, 70, 0.12);
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
}

.custom-path-request textarea {
  resize: vertical;
  min-height: 92px;
}

.custom-path-request-actions {
  display: grid;
  gap: 10px;
  align-items: start;
}

.custom-path-request-note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.privacy-consent {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  padding-top: 8px;
}

.privacy-checkbox {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.privacy-checkbox input[type="checkbox"] {
  width: 18px !important;
  min-width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid rgba(18, 60, 95, 0.22);
  border-radius: 3px;
  background: #fff;
  accent-color: var(--primary);
}

.privacy-checkbox span {
  display: block;
}

.privacy-note {
  margin: 2px 0 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.waiting-section .section-heading h2,
.waiting-section .eyebrow {
  color: var(--text);
}

.waiting-section .card p,
.waiting-section .form-note {
  color: var(--text-soft);
}

.waiting-section .waitlist-form label {
  color: var(--text);
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.field-note {
  font-size: 0.72rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-soft);
}

.waitlist-form input,
.waitlist-form textarea,
.waitlist-form select {
  width: 100%;
  border: 1px solid rgba(23, 48, 70, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(248, 251, 253, 0.95);
}

.testimonial-form textarea {
  display: block;
  aspect-ratio: 4 / 1;
  min-height: 110px;
  resize: vertical;
}

.duration-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.duration-fieldset legend {
  width: 100%;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.choice-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.choice-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.waitlist-form button {
  width: 100%;
  cursor: pointer;
}

.testimonial-card small {
  display: block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-card-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 38px 34px;
  display: grid;
  gap: 14px;
  text-align: center;
  border: 1px solid rgba(23, 48, 70, 0.06);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(15, 23, 34, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 253, 0.94)),
    linear-gradient(135deg, rgba(169, 203, 227, 0.06), transparent);
}

.testimonial-intro-main {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(1.68rem, 4.8vw, 2.2rem);
  line-height: 1.35;
  color: var(--primary-deep);
  font-style: italic;
}

.testimonial-intro-sub {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 500;
}

.testimonial-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
}

.testimonial-form {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin: 24px auto 0;
  background: rgba(255, 255, 255, 0.84);
}

.testimonial-form label {
  align-content: start;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}

.testimonial-form input,
.testimonial-form select,
.testimonial-form textarea,
.testimonial-form button,
.testimonial-form .field-note,
.testimonial-form .form-note {
  font-family: var(--font-sans);
}

.testimonial-form[hidden] {
  display: none !important;
}

.wide {
  min-height: 300px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  align-items: start;
}

.photo-placeholder img {
  min-height: 240px;
}

.tall {
  aspect-ratio: 3 / 2;
  min-height: 0;
}

.contacts-card {
  display: grid;
  gap: 18px;
}

.future-section.is-hidden {
  display: none;
}

@media (max-width: 699px) {
  .site-shell {
    width: min(100% - 16px, var(--max-width));
    padding-bottom: 64px;
  }

  .topbar {
    top: 8px;
    margin-top: 8px;
    padding: 12px;
    border-radius: 22px;
  }

  .brand {
    width: 100%;
    font-size: 1.12rem;
    line-height: 1.1;
  }

  .brand span {
    display: block;
    margin: 6px 0 0;
    font-size: 0.68rem;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: clamp(1.16rem, 5.8vw, 1.6rem);
    line-height: 0.98;
  }

  .hero-actions {
    margin-top: 34px;
    padding-top: 0;
    gap: 12px;
  }

  .hero-actions .button {
    min-height: 54px;
    padding: 15px 18px;
    font-size: 0.96rem;
  }

  .hero-bubble-wrap {
    margin-top: 24px;
  }

  .hero-bubble-link {
    width: 100%;
    min-height: 94px;
    padding: 18px 20px;
    border-radius: 22px;
    font-size: 1rem;
    line-height: 1.18;
  }

  .offer-chapter {
    padding: 22px 16px 20px;
  }

  .offer-bookmark {
    padding: 6px 9px;
    font-size: 0.62rem;
  }

  .offer-chapter-head h3 {
    font-size: clamp(1.3rem, 8vw, 1.75rem);
  }

  .offer-title-row {
    gap: 10px;
  }

  .offer-interest-button {
    min-height: 50px;
    font-size: 0.9rem;
  }

  .group-schedule {
    padding: 16px 14px;
    overflow: visible;
  }

  .group-schedule-table {
    overflow: visible;
  }

  .group-schedule-table-enhanced {
    min-width: 0;
    display: block;
  }

  .group-schedule-table-enhanced colgroup,
  .group-schedule-table-enhanced thead {
    display: none;
  }

  .group-schedule-table-enhanced tbody {
    display: grid;
    gap: 10px;
  }

  .group-schedule-table-enhanced tbody tr {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(23, 48, 70, 0.08);
    border-radius: 14px;
    background: rgba(244, 249, 252, 0.96);
  }

  .group-schedule-table-enhanced tbody th,
  .group-schedule-table-enhanced tbody td {
    display: grid;
    gap: 3px;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .group-schedule-table-enhanced tbody th::before,
  .group-schedule-table-enhanced tbody td::before {
    font-size: 0.66rem;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-soft);
  }

  .group-schedule-table-enhanced tbody th::before {
    content: "Giorno";
  }

  .group-schedule-table-enhanced tbody td[data-label]::before {
    content: attr(data-label);
  }

  .package-grid,
  .promo-packages-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card-intro {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .testimonial-intro-sub {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .package-card-front {
    padding: 20px 18px 48px;
  }

  .testimonial-form,
  .custom-path-request,
  .waitlist-form {
    gap: 12px;
  }

  .consent-popup {
    top: 10px;
    width: min(100% - 16px, 680px);
  }

  .consent-popup-card {
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  .consent-popup-title {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .consent-popup-note {
    font-size: 0.76rem;
  }

  .consent-popup-actions {
    flex-direction: column-reverse;
  }

  .consent-popup-actions .button {
    width: 100%;
  }

  .gadgets-card {
    padding: 22px 18px;
    gap: 18px;
  }

  .gadgets-book {
    max-width: 240px;
  }

  .gadgets-copy {
    max-width: none;
  }

  .gadgets-copy p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .gadgets-actions {
    margin-top: 6px;
  }
}

@media (max-width: 420px) {
  .nav a {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.5rem);
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 0.92rem;
  }

  .hero-bubble-link {
    min-height: 88px;
    padding: 16px 18px;
    font-size: 0.94rem;
  }
}

@media (min-width: 700px) {
  .spine-note {
    display: block;
  }

  .site-shell {
    width: min(100% - 56px, var(--max-width));
    padding-bottom: 104px;
  }

  .topbar {
    gap: 16px;
    padding: 16px 18px;
    border-radius: 999px;
  }

  .brand {
    font-size: 1.48rem;
  }

  .contact-actions,
  .offer-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section {
    padding: 96px 0;
  }

  .gallery-section {
    padding-bottom: 42px;
  }

  .contacts-section {
    padding-top: 34px;
  }

  .gadgets-section {
    padding-top: 52px;
  }

  .phase-grid,
  .compare-grid,
  .gallery-grid,
  .package-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    gap: 22px;
  }

  .split-grid,
  .attention-grid,
  .waiting-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    align-items: center;
    gap: 44px;
    padding-top: 52px;
  }

  .hero-copy {
    min-height: calc(100svh - 108px);
  }

  .hero-subtitle {
    max-width: 18ch;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    padding-top: clamp(220px, 30vh, 420px);
  }

  .hero-actions .button {
    width: auto;
    min-width: 220px;
  }

  .hero-bubble-wrap {
    margin-top: 54px;
    justify-content: center;
  }

  .hero-bubble-link {
    width: min(100%, 360px);
    min-height: 112px;
    padding: 20px 28px;
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .photo-placeholder {
    min-height: 0;
  }

  .photo-placeholder strong {
    font-size: 1.08rem;
  }

  .waiting-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .gadgets-card {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: 36px;
    padding: 34px 32px;
  }

  .gadgets-book {
    margin: 0;
  }

  .gadgets-copy-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
  }

  .offer-stack {
    gap: 64px;
  }

  .offer-chapter {
    gap: 24px;
    padding: 30px 24px 26px 40px;
  }

  .offer-chapter-group {
    padding-top: 34px;
  }

  .offer-bookmark {
    position: absolute;
    top: 22px;
    left: -1px;
    min-height: 88px;
    padding: 12px 7px 10px;
    font-size: 0.64rem;
    line-height: 1;
    letter-spacing: 0.16em;
    writing-mode: vertical-rl;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 14px 32px rgba(14, 44, 71, 0.2);
  }

  .offer-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .offer-title-row h3 {
    flex: 1 1 320px;
  }

  .offer-title-row .offer-interest-button {
    margin-left: auto;
    width: auto;
    min-width: 188px;
  }

  .offer-inline-banner {
    max-width: 360px;
  }

  .group-schedule {
    padding: 22px 20px;
    overflow-x: auto;
  }

  .group-schedule-table {
    min-width: 860px;
  }

  .group-schedule-row {
    grid-template-columns: 92px 72px minmax(150px, 1.2fr) minmax(120px, 0.9fr) minmax(210px, 1.25fr);
    gap: 12px;
    padding: 12px 14px;
  }

  .group-schedule-row span {
    display: block;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text);
  }

  .group-schedule-row:not(.group-schedule-row-head) span::before {
    content: none;
  }

  .group-schedule-row:not(.group-schedule-row-head) span:nth-child(3),
  .group-schedule-row:not(.group-schedule-row-head) span:nth-child(5) {
    grid-column: auto;
  }

  .group-schedule-row-head {
    display: none;
    background: transparent;
    border: 0;
    padding: 0 12px 4px;
  }

  .group-schedule-row-head span {
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary-deep);
  }

  .group-schedule-day-name {
    color: var(--primary-deep) !important;
  }

  .offers-layout {
    grid-template-columns: minmax(0, 0.72fr) 44px minmax(0, 1.28fr);
    align-items: start;
  }

  .offer-column-group {
    grid-row: 1 / span 2;
  }

  .offer-column-individual {
    display: contents;
  }

  .offer-column-individual > .offer-label {
    grid-column: 3;
    grid-row: 1;
  }

  .offer-column-individual > .package-block {
    grid-column: 3;
    grid-row: 2;
  }

  .offer-column-individual > .custom-path-intro {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 70px;
    max-width: 640px;
  }

  .offer-column-individual > .custom-path {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 0;
  }

  .custom-path-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .custom-path {
    padding: 26px 22px;
    border-radius: 28px;
  }

  .custom-path-bank,
  .custom-path-dropzone {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    padding: 14px;
    border-radius: 22px;
  }

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

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

  .offer-divider {
    display: block;
    grid-row: 1 / span 2;
    align-self: stretch;
    justify-self: center;
    width: 2px;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(23, 48, 70, 0.14), rgba(23, 48, 70, 0.34), rgba(23, 48, 70, 0.14));
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

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

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

@media (min-width: 960px) {
  .nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
    min-height: calc(100svh - 72px);
    padding-top: 44px;
  }

  .topbar {
    align-items: center;
  }

  .nav {
    width: auto;
    max-width: calc(100% - 240px);
  }

  .hero-copy {
    max-width: 1180px;
    padding-right: 0;
    min-height: calc(100svh - 112px);
  }

  h1 {
    font-size: clamp(5.2rem, 9.2vw, 8.4rem);
  }

  h1 span {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
  }

  .hero-subtitle {
    max-width: 24ch;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  .hero-actions {
    margin-top: clamp(244px, 34vh, 390px);
    padding-top: 0;
    justify-content: flex-end;
    gap: 14px;
  }

  .hero-actions .button {
    min-width: 230px;
    min-height: 62px;
    padding: 18px 26px;
    font-size: 1.04rem;
  }

  .hero-actions .button-secondary {
    background: rgba(215, 226, 236, 0.98);
    border-color: rgba(18, 60, 95, 0.22);
    color: var(--primary-deep);
  }

  .hero-bubble-wrap {
    margin-top: clamp(72px, 10vh, 124px);
    justify-content: center;
  }

  .hero-bubble-link {
    width: 360px;
    min-height: 116px;
    padding: 20px 30px;
    font-size: 1.14rem;
    line-height: 1.2;
  }

  .group-schedule {
    overflow-x: visible;
    padding: 24px 22px;
  }

  .group-schedule-table {
    min-width: 0;
    overflow-x: visible;
  }

  .group-schedule-table-enhanced {
    min-width: 0;
  }

  .group-schedule-table-enhanced thead th {
    padding: 0 16px 12px;
    font-size: 0.76rem;
  }

  .group-schedule-table-enhanced tbody th,
  .group-schedule-table-enhanced tbody td {
    padding: 16px;
    font-size: 0.97rem;
  }

  .offers-layout {
    padding: 34px 30px;
  }

  .offer-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
  }

  .offer-title-row h3 {
    min-width: 0;
  }

  .offer-title-row .offer-interest-button {
    margin-left: 0;
    min-width: 210px;
  }

  .offer-inline-banner {
    max-width: 360px;
  }

  .phase-grid {
    grid-template-columns: 0.85fr 1.2fr 0.85fr;
    align-items: stretch;
  }

  .phase-section {
    position: relative;
  }

  .phase-card.active::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    width: 170px;
    height: 250px;
    transform: translateX(-70%) scaleX(-1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='250' viewBox='0 0 170 250'%3E%3Cpath d='M18 8 C48 28, 58 48, 54 78 C50 106, 86 114, 98 138 C111 164, 90 190, 122 212 C134 220, 147 226, 159 232' fill='none' stroke='%231c5b8f' stroke-width='2.2' stroke-linecap='round' stroke-dasharray='7 8' opacity='0.45'/%3E%3Cpath d='M20 16 C35 28, 44 44, 40 67 C36 91, 70 108, 86 128 C98 143, 93 168, 116 188 C128 198, 138 206, 148 212' fill='none' stroke='%23123c5f' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='3 10' opacity='0.22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.9;
    pointer-events: none;
  }

  .phase-card.active::before {
    content: "";
    position: absolute;
    left: calc(50% - 6px);
    top: calc(100% + 146px);
    z-index: 3;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M12 58 H62 L49 66 H22 Z' fill='%23123c5f'/%3E%3Cpath d='M37 16 L37 57' stroke='%23123c5f' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M37 18 L56 40 L37 40 Z' fill='%231c5b8f'/%3E%3Cpath d='M35 23 L21 40 L35 40 Z' fill='%231a4f7b'/%3E%3Cpath d='M10 69 C20 65, 31 65, 41 69 C51 73, 62 73, 70 69' fill='none' stroke='%231c5b8f' stroke-width='2.4' stroke-linecap='round' opacity='0.85'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(6deg);
    pointer-events: none;
    filter: drop-shadow(0 6px 12px rgba(9, 29, 48, 0.12));
  }

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

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

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

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

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