/*
 * Minimalist Modern design layer.
 * Loaded after home.css so the redesign stays isolated and reversible.
 */
:root {
  --background: #fbfaf5;
  --foreground: #17251f;
  --muted: #eff4f1;
  --muted-foreground: #65746d;
  --card: #ffffff;
  --border: #dce6e0;
  --brand-950: #06382c;
  --brand-900: #074c3a;
  --brand-800: #095c45;
  --brand-700: #0d6b50;
  --brand-500: #1a8b68;
  --brand-300: #8fc8b3;
  --brand-100: #dff1ea;
  --accent: #f0d353;
  --accent-soft: #fff7cf;
  --accent-foreground: #28321d;
  --danger: #b24c3c;
  --gradient-brand: linear-gradient(135deg, var(--brand-800), var(--brand-500));
  --gradient-brand-hover: linear-gradient(135deg, var(--brand-700), #22a27b);
  --shadow-sm: 0 1px 3px rgba(6, 56, 44, 0.06);
  --shadow-md: 0 8px 24px rgba(6, 56, 44, 0.08);
  --shadow-lg: 0 20px 50px rgba(6, 56, 44, 0.12);
  --shadow-brand: 0 12px 30px rgba(13, 107, 80, 0.24);
  --font-body: "Nunito", "Segoe UI", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-mono: ui-monospace, "SFMono-Regular", Consolas, monospace;
  --container: 1152px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-padding-top: 102px; }
body {
  position: relative;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
}
body, button, input, select, textarea { font-family: var(--font-body); }
::selection { background: rgba(240, 211, 83, 0.45); color: var(--foreground); }
:focus-visible { outline: 3px solid rgba(26, 139, 104, 0.42); outline-offset: 4px; }

h1, h2, h3 {
  color: var(--foreground);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
}
h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.4vw, 4.75rem);
  line-height: 1.02;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 3.8vw, 3.35rem);
  line-height: 1.1;
}
.gradient-text {
  display: inline;
  background: var(--gradient-brand);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container { width: min(calc(100% - 48px), var(--container)); }
.skip-link {
  z-index: 1000;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--brand-800);
  box-shadow: var(--shadow-md);
}

/* Floating navigation */
.header {
  position: sticky;
  z-index: 100;
  top: 12px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}
.header-inner {
  width: min(calc(100% - 32px), var(--container));
  min-height: 70px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(220, 230, 224, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(6, 56, 44, 0.08);
  backdrop-filter: blur(18px) saturate(135%);
  pointer-events: auto;
}
.brand { gap: 11px; }
.brand-mark {
  width: 46px;
  height: 46px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(223, 241, 234, 0.7);
}
.brand-name {
  color: var(--brand-800);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
}
.nav { gap: 3px; }
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #43534c;
  font-size: 13px;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}
.nav a:hover, .nav a:focus-visible {
  background: var(--muted);
  color: var(--brand-800);
  transform: translateY(-1px);
}
.nav a:last-child {
  padding: 12px 20px;
  border: 0;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.nav a:last-child:hover, .nav a:last-child:focus-visible {
  background: var(--gradient-brand-hover);
  color: #fff;
  transform: translateY(-2px);
}
.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
}
.menu-toggle span { background: #fff; }

/* Shared system */
.section {
  position: relative;
  isolation: isolate;
  padding: 124px 0;
  overflow: hidden;
}
.section-label {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 20px;
  padding: 7px 13px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(13, 107, 80, 0.22);
  border-radius: 999px;
  background: rgba(223, 241, 234, 0.65);
  color: var(--brand-700);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}
h1.section-label,
h2.section-label {
  display: block;
  max-width: none;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-700);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: none;
}
h1.section-label {
  margin: 0 0 18px;
  font-size: clamp(2.55rem, 4.5vw, 4rem);
  line-height: 1.04;
}
h2.section-label {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.08;
}
h1.section-label::before,
h2.section-label::before {
  display: none;
}
.section-opening {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.section-label::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border: 0;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 5px rgba(26, 139, 104, 0.1);
  animation: indicator-pulse 2.6s ease-in-out infinite;
}
.button {
  min-height: 52px;
  padding: 14px 25px;
  border: 0;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
  font-size: 15px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.button::after {
  margin-left: 9px;
  content: "→";
  transition: transform 220ms ease;
}
.button:hover, .button:focus-visible {
  background: var(--gradient-brand-hover);
  color: #fff;
  box-shadow: 0 16px 36px rgba(13, 107, 80, 0.3);
  filter: brightness(1.04);
  transform: translateY(-2px);
}
.button:hover::after, .button:focus-visible::after { transform: translateX(4px); }
.button:active { transform: scale(0.98); }

/* Hero */
.hero {
  position: relative;
  min-height: min(900px, calc(100svh - 24px));
  margin-top: -70px;
  padding: 182px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(26, 139, 104, 0.16), transparent 30%),
    radial-gradient(circle at 9% 86%, rgba(240, 211, 83, 0.2), transparent 26%),
    linear-gradient(180deg, #fbfaf5 0%, #f8f7f0 100%);
}
.hero::before {
  position: absolute;
  top: 90px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px dashed rgba(13, 107, 80, 0.17);
  border-radius: 50%;
  box-shadow: inset 0 0 0 92px rgba(26, 139, 104, 0.025), inset 0 0 0 184px rgba(26, 139, 104, 0.025);
  content: "";
  animation: ring-rotate 64s linear infinite;
}
.hero::after {
  position: absolute;
  bottom: 65px;
  left: 4%;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--accent);
  box-shadow: 0 20px 38px rgba(184, 151, 20, 0.18);
  content: "";
  opacity: 0.58;
  transform: rotate(13deg);
}
.hero-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, .9fr);
  column-gap: clamp(60px, 8vw, 104px);
  row-gap: 0;
  align-items: center;
}
.hero-intro,
.hero-body-copy {
  max-width: 720px;
  animation: fade-up 700ms var(--ease-out) both;
}
.hero-intro {
  grid-column: 1;
  grid-row: 1;
}
.hero-body-copy {
  grid-column: 1;
  grid-row: 2;
}
.hero-body-copy > p {
  max-width: 680px;
  margin-bottom: 16px;
  color: #506159;
  font-size: 16px;
}
.hero-body-copy strong {
  color: var(--brand-800);
  font-weight: 800;
}
.hero-body-copy > p:last-of-type { margin-bottom: 32px; }
.hero-body-copy .button { margin-top: 4px; }
.hero-summary {
  position: relative;
  overflow: visible;
  padding: 32px;
  border: 1px solid rgba(220, 230, 224, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  animation: fade-up 800ms 120ms var(--ease-out) both, card-float 5.5s 1s ease-in-out infinite;
}
.hero-summary::before {
  top: 22px;
  left: 50%;
  width: 194px;
  height: 194px;
  transform: translateX(-50%);
  border: 1px dashed rgba(13, 107, 80, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 241, 234, 0.82) 0%, rgba(223, 241, 234, 0.32) 58%, transparent 60%);
  animation: ring-rotate-centered 44s linear infinite;
}
.hero-summary::after {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(184, 151, 20, 0.24);
  content: "";
  transform: rotate(10deg);
}
.hero-summary > img {
  position: relative;
  z-index: 1;
  width: 142px;
  height: 142px;
  margin: 18px auto 54px;
  filter: drop-shadow(0 12px 20px rgba(6, 56, 44, 0.12));
}
.hero-summary dl { position: relative; z-index: 1; }
.hero-summary dl > div {
  grid-template-columns: 104px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.hero-summary dt {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
}
.hero-summary dd { color: var(--brand-800); font-size: 15px; font-weight: 800; }

/* Feedback */
.section-feedback {
  background:
    radial-gradient(circle at 8% 16%, rgba(26, 139, 104, 0.12), transparent 25%),
    var(--background);
}
.section-feedback::before {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(circle, rgba(13, 107, 80, 0.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.45;
}
.feedback-heading { position: relative; z-index: 1; margin-bottom: 48px; }
.feedback-heading > p {
  max-width: 310px;
  margin-bottom: 0;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted-foreground);
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}
.feedback-slider { position: relative; z-index: 1; max-width: 620px; }
.feedback-slider::before {
  top: -14px;
  right: -14px;
  bottom: 26px;
  left: -14px;
  border: 2px solid transparent;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(var(--background), var(--background)) padding-box, var(--gradient-brand) border-box;
}
.feedback-track {
  min-height: 490px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-lg);
  transform: none;
}
.feedback-slide { padding: 20px; }
.feedback-slide img {
  height: 450px;
  border-radius: var(--radius-md);
  transition: transform 600ms var(--ease-out);
}
.feedback-slide.active img { transform: scale(1.006); }
.feedback-dots { margin-top: 26px; gap: 10px; }
.feedback-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid var(--brand-500);
  background: transparent;
  transition: width 220ms ease, background 220ms ease;
}
.feedback-dots button.active { width: 30px; background: var(--gradient-brand); }

/* Inverted content section */
.section-content {
  background: var(--brand-950);
  color: rgba(255, 255, 255, 0.84);
}
.section-content::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background-image:
    radial-gradient(circle at 86% 18%, rgba(26, 139, 104, 0.24), transparent 28%),
    radial-gradient(circle, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: auto, 32px 32px;
  box-shadow: none;
  opacity: 0.44;
}
.content-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: stretch;
}
.content-heading { grid-column: 1 / -1; margin-bottom: 6px; }
.content-heading h2.section-label { margin-bottom: 0; }
.section-content .section-label, .register-copy .section-label {
  border-color: rgba(240, 211, 83, 0.36);
  background: rgba(240, 211, 83, 0.08);
  color: #f6df78;
}
.section-content h2.section-label,
.register-copy h2.section-label {
  border: 0;
  background: transparent;
}
.section-content .section-label::before, .register-copy .section-label::before {
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(240, 211, 83, 0.11);
}
.consulting-content,
.package-details {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.consulting-points {
  display: grid;
  height: 100%;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.consulting-points article {
  display: flex;
  padding: 26px 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
  transition: border-color 240ms ease, background 240ms ease, transform 240ms var(--ease-out);
}
.consulting-points article:hover {
  border-color: rgba(240, 211, 83, 0.3);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-3px);
}
.consulting-points h3 {
  margin: 1px 0 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.consulting-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}
.package-details {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* Support */
.section-support {
  background:
    radial-gradient(circle at 12% 80%, rgba(240, 211, 83, 0.17), transparent 24%),
    var(--muted);
}
.support-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(62px, 9vw, 126px);
  align-items: center;
}
.support-duration {
  min-height: 360px;
  padding: 58px 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  box-shadow: var(--shadow-lg), var(--shadow-brand);
  transform: translateY(-14px);
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease;
}
.support-duration:hover { box-shadow: 0 30px 70px rgba(6, 56, 44, 0.22); transform: translateY(-20px); }
.support-duration::after {
  top: auto;
  right: -46px;
  bottom: -46px;
  width: 190px;
  height: 190px;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 0 36px rgba(255, 255, 255, 0.04);
}
.support-duration span, .support-duration p {
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-mono);
}
.support-duration span {
  font-size: 13px;
  letter-spacing: 0.08em;
}
.support-duration strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 7vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.07em;
}
.support-duration p { font-size: 16px; }
.support-copy p:not(.section-label) { color: #4d5d55; }
.support-copy > .section-opening {
  color: var(--foreground);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.support-copy .support-scope {
  margin: 28px 0 8px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-500);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-900);
  box-shadow: var(--shadow-sm);
}

/* Package information cards */
.service-info { gap: 14px; }
.service-info > div {
  position: relative;
  min-height: 150px;
  padding: 26px 25px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease, border-color 280ms ease;
}
.service-info > div::after {
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(223, 241, 234, 0.8);
  content: "";
  transition: transform 400ms var(--ease-out);
}
.service-info > div:nth-child(3) {
  border: 2px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box, var(--gradient-brand) border-box;
  box-shadow: var(--shadow-md);
}
.service-info > div:hover {
  border-color: rgba(26, 139, 104, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-info > div:hover::after { transform: scale(1.2) translate(-8px, -8px); }
.service-info dt {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--brand-700);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.service-info dd {
  position: relative;
  z-index: 1;
  color: #4e5e56;
  font-size: 15px;
}
.service-info dd strong {
  color: var(--brand-800);
  font-family: var(--font-display);
  font-size: 1.65rem;
}
.package-details .service-info {
  display: grid;
  height: 100%;
  padding: 8px 22px;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}
.package-details .service-info > div {
  display: grid;
  min-height: 0;
  padding: 17px 0;
  overflow: visible;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.package-details .service-info > div:last-child { border-bottom: 0; }
.package-details .service-info > div::after { display: none; }
.package-details .service-info > div:nth-child(3) {
  margin: 4px -12px;
  padding: 18px 12px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(223, 241, 234, 0.9), rgba(255, 247, 207, 0.82));
  box-shadow: none;
}
.package-details .service-info > div:hover {
  border-color: var(--border);
  box-shadow: none;
  transform: none;
}
.package-details .service-info dt { margin: 0; }
.package-details .service-info dd { line-height: 1.55; }

/* Registration */
.section-register { background: var(--brand-950); }
.section-register::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 18%, rgba(26, 139, 104, 0.28), transparent 27%),
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: auto, 32px 32px;
  content: "";
  opacity: 0.44;
}
.section-register::after {
  right: -160px;
  bottom: -250px;
  width: 560px;
  height: 560px;
  border: 1px dashed rgba(240, 211, 83, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 80px rgba(240, 211, 83, 0.025), inset 0 0 0 160px rgba(240, 211, 83, 0.025);
}
.register-layout {
  position: relative;
  z-index: 1;
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.register-copy { padding-top: 0; text-align: center; }
.register-copy h2.section-label { margin: 0 auto 14px; text-align: center; }
.section-register .register-form .form-row,
.section-register .register-form .form-row-three {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.section-register .register-form .button { width: 100%; }
.register-copy > .section-opening {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.register-copy > p:not(.section-label) { color: rgba(255, 255, 255, 0.76); font-size: 17px; }
.register-form {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}
.form-row { gap: 18px; }
.form-group label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}
.form-group label span { color: var(--accent); }
.form-group input, .form-group select {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 15px;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.form-group select option { background: var(--card); color: var(--foreground); }
.form-group input::placeholder { color: rgba(255, 255, 255, 0.48); }
.form-group input:hover, .form-group select:hover {
  border-color: rgba(143, 200, 179, 0.48);
  background: rgba(255, 255, 255, 0.12);
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--brand-300);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(26, 139, 104, 0.2);
}
.form-group input.error, .form-group select.error {
  border-color: #ffab9d;
  box-shadow: 0 0 0 3px rgba(255, 171, 157, 0.12);
}
.form-error { color: #ffc0b5; }
.register-form .button {
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 12px 28px rgba(184, 151, 20, 0.2);
}
.register-form .button:hover, .register-form .button:focus-visible {
  background: #f6df78;
  color: var(--accent-foreground);
}
.form-note { color: rgba(255, 255, 255, 0.5); }

/* Compact registration form in the hero */
.hero-register-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  scroll-margin-top: 112px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(220, 230, 224, 0.94);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  animation: fade-up 800ms 120ms var(--ease-out) both;
}
.hero-register-card::before {
  position: absolute;
  top: -82px;
  right: -68px;
  width: 210px;
  height: 210px;
  border: 1px dashed rgba(13, 107, 80, 0.22);
  border-radius: 50%;
  background: rgba(223, 241, 234, 0.42);
  box-shadow: inset 0 0 0 42px rgba(26, 139, 104, 0.025);
  content: "";
  pointer-events: none;
}
.hero-register-header,
.hero-register-form { position: relative; z-index: 1; }
.hero-register-title {
  max-width: 360px;
  margin: 0 0 8px;
  color: var(--brand-900);
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.12;
}
.hero-register-header > p {
  margin: 0 0 18px;
  color: #57675f;
  font-size: 14px;
  line-height: 1.55;
}
.hero-register-meta {
  display: grid;
  margin: 0 0 10px;
  overflow: hidden;
  grid-template-columns: 1.35fr 0.85fr;
  border: 1px solid rgba(13, 107, 80, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(223, 241, 234, 0.78), rgba(255, 247, 207, 0.7));
  box-shadow: 0 8px 22px rgba(6, 56, 44, 0.07);
}
.hero-register-meta > * {
  display: grid;
  min-height: 58px;
  padding: 10px 12px;
  place-items: center;
  border-left: 1px solid rgba(13, 107, 80, 0.13);
  color: #40564c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
.hero-register-meta > :first-child { border-left: 0; }
.hero-register-price {
  display: flex;
  min-height: 56px;
  margin: 0 0 20px;
  padding: 10px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 12px;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-brand);
}
.hero-register-price span {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-register-price strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1;
}
.hero-register-form.register-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-register-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.hero-register-form .form-group { margin-bottom: 13px; }
.hero-register-form .form-group label {
  color: #31483e;
  font-size: 12px;
}
.hero-register-form .form-group label span { color: var(--danger); }
.hero-register-form .form-group input,
.hero-register-form .form-group select {
  min-height: 48px;
  padding: 0 13px;
  border-color: var(--border);
  border-radius: 10px;
  background: #f7faf8;
  color: var(--foreground);
  font-size: 14px;
}
.hero-register-form .form-group input::placeholder { color: #93a29b; }
.hero-register-form .form-group input:hover,
.hero-register-form .form-group select:hover { border-color: rgba(26, 139, 104, 0.42); background: #fff; }
.hero-register-form .form-group input:focus,
.hero-register-form .form-group select:focus {
  border-color: var(--brand-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 139, 104, 0.12);
}
.hero-register-form .form-error { color: var(--danger); font-size: 11px; }
.hero-register-form.register-form .button {
  width: 100%;
  min-width: 0;
  margin-top: 3px;
  border: 0;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.hero-register-form.register-form .button:hover,
.hero-register-form.register-form .button:focus-visible {
  background: var(--gradient-brand-hover);
  color: #fff;
}
.hero-register-form .form-note {
  margin: 10px 0 0;
  color: var(--muted-foreground);
  font-size: 11px;
  text-align: center;
}

/* Light footer */
.footer {
  position: relative;
  padding: 62px 0 24px;
  border-top: 1px solid var(--border);
  background: #f7f8f4;
  color: #526159;
}
.brand-footer .brand-name { color: var(--brand-800); }
.brand-footer .brand-mark { background: rgba(223, 241, 234, 0.72); }
.footer-contact a {
  padding: 8px 12px;
  border-radius: 8px;
  color: #47574f;
  transition: color 220ms ease, background 220ms ease;
}
.footer-contact a:hover, .footer-contact a:focus-visible {
  background: var(--brand-100);
  color: var(--brand-800);
}
.footer-bottom { border-top-color: var(--border); color: #7a8781; }

/* Thank-you */
.thankyou-page, .thankyou-main { background: var(--background); }
.thankyou-hero {
  min-height: calc(100svh - 220px);
  margin-top: -70px;
  padding: 182px 0 112px;
  background:
    radial-gradient(circle at 82% 20%, rgba(26, 139, 104, 0.16), transparent 30%),
    radial-gradient(circle at 8% 82%, rgba(240, 211, 83, 0.17), transparent 24%),
    var(--background);
}
.thankyou-hero::after {
  right: -180px;
  bottom: -330px;
  border: 1px dashed rgba(13, 107, 80, 0.17);
  box-shadow: inset 0 0 0 84px rgba(26, 139, 104, 0.025), inset 0 0 0 168px rgba(26, 139, 104, 0.025);
  animation: ring-rotate 64s linear infinite;
}
.thankyou-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(58px, 8vw, 108px);
  align-items: center;
}
.thankyou-check {
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 18px;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
  transform: rotate(-4deg);
}
.thankyou-intro > .thankyou-opening { font-size: clamp(1.65rem, 2.7vw, 2.3rem); }
.thankyou-next-card > .section-opening { font-size: clamp(1.35rem, 2vw, 1.75rem); }
.thankyou-intro > p:not(.section-label), .thankyou-next-card > p:not(.section-label) { color: #506159; }
.thankyou-next-card {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  animation: card-float 5.5s ease-in-out infinite;
}

@keyframes indicator-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(26, 139, 104, 0.08); transform: scale(1); }
  50% { box-shadow: 0 0 0 7px rgba(26, 139, 104, 0.03); transform: scale(1.12); }
}
@keyframes ring-rotate { to { transform: rotate(360deg); } }
@keyframes ring-rotate-centered {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .header-inner { position: relative; }
  .nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    padding: 0 22px;
    overflow: hidden;
    flex-direction: column;
    gap: 2px;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 300ms ease, padding 300ms ease, opacity 220ms ease, transform 300ms var(--ease-out);
  }
  .nav.open {
    max-height: 430px;
    padding: 14px 20px 20px;
    border-color: var(--border);
    opacity: 1;
    transform: translateY(0);
  }
  .nav a, .nav a:last-child {
    padding: 12px 14px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #43534c;
  }
  .nav a:last-child {
    margin-top: 5px;
    background: var(--gradient-brand);
    color: #fff;
    text-align: center;
  }
  .hero-summary {
    display: grid;
    max-width: 720px;
    padding: 38px 46px;
    grid-template-columns: 190px 1fr;
    gap: 40px;
  }
  .hero-summary::before {
    top: 50%;
    left: 117px;
    transform: translate(-50%, -50%);
    animation: none;
  }
  .hero-summary > img { margin: 0 auto; }
  .register-layout, .thankyou-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .support-layout { gap: 58px; }
}

@media (max-width: 820px) {
  .hero-layout { grid-template-columns: 1fr; gap: 0; }
  .hero-intro,
  .hero-body-copy { max-width: 720px; }
  .hero-intro { grid-column: 1; grid-row: 1; }
  .hero-body-copy { grid-column: 1; grid-row: 2; }
  .hero-register-card {
    max-width: 720px;
    margin-top: 38px;
    grid-column: 1;
    grid-row: 3;
    align-self: start;
  }
  .content-layout { grid-template-columns: minmax(0, 1fr); gap: 50px; }
  .consulting-content,
  .package-details { display: block; }
  .consulting-points { height: auto; grid-template-rows: none; }
  .package-details {
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .package-details .service-info { height: auto; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 92px; }
  body { font-size: 15px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .header { top: 8px; }
  .header-inner {
    width: min(calc(100% - 18px), var(--container));
    min-height: 62px;
    padding: 6px 7px 6px 12px;
  }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 16px; }
  .menu-toggle { width: 46px; height: 46px; }
  .nav { top: 70px; }
  h1 { font-size: clamp(2.75rem, 12.5vw, 3.55rem); }
  h2 { font-size: clamp(2.15rem, 9.8vw, 2.8rem); }
  .section-label { min-height: 32px; padding: 7px 11px; font-size: 10px; }
  h1.section-label {
    min-height: 0;
    padding: 0;
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }
  h2.section-label {
    min-height: 0;
    padding: 0;
    font-size: clamp(1.95rem, 8.5vw, 2.45rem);
  }
  .section-opening,
  .support-copy > .section-opening,
  .register-copy > .section-opening { font-size: clamp(1.2rem, 5.4vw, 1.45rem); }
  .section { padding: 88px 0; }
  .hero {
    min-height: auto;
    margin-top: -62px;
    padding: 142px 0 88px;
  }
  .hero::before { top: 30px; right: -380px; }
  .hero::after { display: none; }
  .hero-body-copy > p { font-size: 15px; }
  .hero-body-copy .button, .support-button, .register-form .button, .thankyou-next-card .button { width: 100%; }
  .hero-layout { gap: 0; }
  .hero-register-card { display: block; margin-top: 34px; padding: 26px 20px; }
  .hero-register-header { margin-bottom: 20px; }
  .hero-register-meta { grid-template-columns: 1.25fr 0.75fr; }
  .hero-register-meta > * { padding: 9px 8px; font-size: 11px; }
  .hero-register-price { min-height: 54px; padding: 10px 14px; }
  .hero-register-price strong { font-size: 22px; }
  .hero-register-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-summary { display: block; padding: 28px 22px 24px; }
  .hero-summary::before { top: 20px; left: 50%; transform: translateX(-50%); }
  .hero-summary > img { margin: 12px auto 50px; }
  .feedback-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
  .feedback-heading > p { width: fit-content; }
  .feedback-slider::before { display: none; }
  .feedback-track { min-height: 0; aspect-ratio: 1 / 1.03; border-radius: var(--radius-md); }
  .feedback-slide { padding: 10px; }
  .feedback-slide img { height: 100%; border-radius: var(--radius-sm); }
  .register-layout, .thankyou-layout { gap: 38px; }
  .package-details { padding-top: 38px; }
  .consulting-points article { display: block; padding: 22px 20px; }
  .support-layout { grid-template-columns: 1fr; gap: 44px; }
  .support-duration { min-height: 300px; padding: 48px 25px; transform: none; }
  .support-duration:hover { transform: translateY(-4px); }
  .support-duration strong { font-size: clamp(4.2rem, 20vw, 5.8rem); }
  .package-details .service-info { grid-template-columns: 1fr; }
  .package-details .service-info > div { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .service-info > div { min-height: 0; padding: 24px 22px; }
  .register-form { padding: 27px 18px; border-radius: var(--radius-md); }
  .form-row, .form-row-three { grid-template-columns: 1fr; gap: 0; }
  .footer { padding-top: 52px; }
  .footer-contact a { padding: 7px 0; }
  .thankyou-hero {
    min-height: auto;
    margin-top: -62px;
    padding: 146px 0 88px;
  }
  .thankyou-next-card { padding: 28px 22px; border-radius: var(--radius-md); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
