:root {
  --cream: #fff8ef;
  --paper: #fffdf9;
  --ink: #21152b;
  --muted: #6e6268;
  --coral: #ff6548;
  --coral-deep: #ef4f35;
  --green: #176b5a;
  --green-light: #8bc6a5;
  --amber: #f3ae3d;
  --line: rgba(58, 37, 45, 0.12);
  --glass: rgba(255, 253, 249, 0.68);
  --shadow: 0 24px 70px rgba(87, 54, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: min(1380px, calc(100% - 64px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 23%, rgba(255, 170, 121, 0.23), transparent 27%),
    radial-gradient(circle at 42% 95%, rgba(243, 174, 61, 0.14), transparent 28%),
    linear-gradient(135deg, #fffaf3 0%, #fff6eb 55%, #fff9f0 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(33, 21, 43, 0.045) 0.8px, transparent 0.8px);
  background-size: 6px 6px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  content: "";
  pointer-events: none;
}

.ambient {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
  animation: ambient-drift 9s ease-in-out infinite alternate;
}

.ambient-one {
  top: 14%;
  right: 7%;
  width: 190px;
  height: 190px;
  background: rgba(255, 101, 72, 0.2);
}

.ambient-two {
  right: 28%;
  bottom: 7%;
  width: 160px;
  height: 160px;
  background: rgba(23, 107, 90, 0.14);
  animation-delay: -4s;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 108px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  justify-self: start;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50% 50% 42% 58%;
  color: white;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(145deg, #ff8064, var(--coral-deep));
  box-shadow: 0 10px 28px rgba(255, 101, 72, 0.3);
}

.brand-mark::after {
  position: absolute;
  right: -9px;
  bottom: -2px;
  width: 24px;
  height: 36px;
  border-radius: 80% 20% 75% 25%;
  background: var(--green);
  content: "";
  transform: rotate(20deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.06;
}

.brand-copy strong {
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  gap: clamp(28px, 3.2vw, 58px);
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.question-button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  align-items: center;
  gap: 10px;
  justify-self: end;
  border: 1px solid rgba(23, 107, 90, 0.55);
  border-radius: 999px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.question-button:hover {
  color: white;
  background: var(--green);
  transform: translateY(-2px);
}

.question-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 150px minmax(430px, 0.92fr) minmax(480px, 1.08fr);
  min-height: 610px;
  align-items: center;
}

.section-rail {
  position: relative;
  display: flex;
  height: 470px;
  flex-direction: column;
  justify-content: space-between;
}

.rail-line {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 20px;
  width: 1px;
  background: linear-gradient(var(--coral), rgba(23, 107, 90, 0.2));
}

.rail-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  color: #82777b;
  font-size: 11px;
}

.rail-item b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(23, 107, 90, 0.18);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 250, 243, 0.88);
}

.rail-item.is-active {
  color: var(--coral-deep);
}

.rail-item.is-active b {
  border-color: transparent;
  color: white;
  background: var(--coral);
  box-shadow: 0 8px 22px rgba(255, 101, 72, 0.25);
}

.hero-copy {
  position: relative;
  z-index: 5;
  align-self: center;
  padding: 20px 26px 20px 4px;
}

.eyebrow {
  display: inline-flex;
  min-height: 38px;
  padding: 0 16px 0 11px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(23, 107, 90, 0.13);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 9px 35px rgba(86, 62, 47, 0.06);
  backdrop-filter: blur(12px);
}

.eyebrow-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #5fc89e, var(--green) 70%);
  box-shadow: 0 0 0 7px rgba(23, 107, 90, 0.08);
}

.hero h1 {
  max-width: 680px;
  margin: 32px 0 22px;
  font-size: clamp(54px, 5.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 em {
  position: relative;
  font-style: normal;
  color: var(--coral-deep);
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 8px;
  border-bottom: 2px solid rgba(255, 101, 72, 0.45);
  border-radius: 50%;
  content: "";
}

.hero-lead {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 28px;
}

.primary-button {
  display: inline-flex;
  min-height: 60px;
  padding: 0 13px 0 25px;
  align-items: center;
  gap: 25px;
  border-radius: 18px 32px 32px 18px;
  border: 0;
  color: white;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #ff785c, var(--coral-deep));
  box-shadow: 0 18px 35px rgba(239, 79, 53, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--coral-deep);
  font-size: 22px;
  background: white;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(239, 79, 53, 0.32);
}

.text-link {
  display: inline-flex;
  padding-bottom: 5px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(23, 107, 90, 0.4);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.portrait-stage {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 580px;
  transform: translate(
    calc(var(--pointer-x) * -3px),
    calc(var(--pointer-y) * -3px)
  );
  transition: transform 260ms ease-out;
}

.portrait-glow {
  position: absolute;
  top: 64px;
  right: 0;
  left: 4%;
  height: 490px;
  border-radius: 46% 54% 48% 52% / 43% 46% 54% 57%;
  background:
    radial-gradient(circle at 66% 32%, rgba(255, 212, 168, 0.9), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(247, 212, 182, 0.62));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.84), var(--shadow);
  transform: rotate(-3deg);
}

.portrait-placeholder {
  position: absolute;
  top: 112px;
  right: 8%;
  bottom: 58px;
  left: 12%;
  z-index: 4;
  display: flex;
  padding: 42px;
  align-items: flex-end;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 48% 52% 45% 55% / 45% 45% 55% 55%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 248, 239, 0.82)),
    radial-gradient(circle at 50% 25%, rgba(255, 101, 72, 0.22), transparent 33%),
    linear-gradient(145deg, #f5dfcb, #edd0b8);
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.45);
}

.portrait-with-photo {
  padding: 0;
  background: #ead4bf;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 24px 64px rgba(89, 54, 39, 0.16);
}

.portrait-with-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 43%;
}

.portrait-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.04) 48%, rgba(33, 21, 43, 0.18) 100%),
    radial-gradient(circle at 52% 34%, transparent 46%, rgba(33, 21, 43, 0.08) 100%);
  pointer-events: none;
}

.placeholder-monogram {
  position: absolute;
  top: 45%;
  left: 50%;
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, serif;
  font-size: 240px;
  transform: translate(-50%, -50%);
}

.portrait-placeholder > div:last-child {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.portrait-placeholder strong {
  max-width: 270px;
  font-size: 15px;
}

.portrait-placeholder span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 58px;
  right: -15%;
  width: 114%;
  height: 455px;
  border-color: rgba(255, 101, 72, 0.58);
  transform: rotate(-17deg);
  animation: orbit-one 16s linear infinite;
}

.orbit-two {
  top: 90px;
  right: -7%;
  width: 105%;
  height: 430px;
  border-color: rgba(23, 107, 90, 0.58);
  transform: rotate(20deg);
  animation: orbit-two 22s linear infinite reverse;
}

.orbit-three {
  top: 33px;
  right: 2%;
  width: 86%;
  height: 520px;
  border-color: rgba(243, 174, 61, 0.56);
  transform: rotate(55deg);
  animation: orbit-three 26s linear infinite;
}

.particle {
  position: absolute;
  top: 48%;
  left: -10px;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(68, 40, 31, 0.2);
}

.particle.coral {
  background: var(--coral);
}

.particle.green {
  top: 13%;
  right: 7%;
  left: auto;
  width: 15px;
  height: 15px;
  background: var(--green);
}

.particle.amber {
  top: auto;
  right: 8%;
  bottom: 4%;
  left: auto;
  width: 25px;
  height: 25px;
  background: var(--amber);
}

.floating-card,
.diploma-card {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  color: var(--ink);
  background: var(--glass);
  box-shadow: 0 18px 45px rgba(85, 57, 45, 0.13);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-card:hover,
.diploma-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(85, 57, 45, 0.18);
}

.floating-card {
  padding: 14px 17px;
}

.floating-card > div,
.diploma-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card strong,
.diploma-card strong {
  font-size: 13px;
}

.floating-card small,
.diploma-card small {
  max-width: 135px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.card-symbol,
.diploma-seal {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  font-size: 22px;
  background: rgba(139, 198, 165, 0.28);
}

.leaf-symbol {
  color: var(--coral-deep);
  background: rgba(255, 101, 72, 0.15);
}

.card-education {
  top: 88px;
  left: 0;
  transform: translate(
    calc(var(--pointer-x) * 8px),
    calc(var(--pointer-y) * 6px)
  );
}

.card-method {
  top: 285px;
  right: -2%;
  transform: translate(
    calc(var(--pointer-x) * -8px),
    calc(var(--pointer-y) * -6px)
  );
}

.diploma-card {
  right: 5%;
  bottom: 38px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: default;
}

.diploma-seal {
  color: white;
  background: var(--green);
}

.proof-strip {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -20px;
  padding-bottom: 34px;
}

.proof-card {
  display: flex;
  min-height: 115px;
  padding: 24px 28px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 253, 249, 0.64);
  box-shadow: 0 14px 45px rgba(93, 61, 48, 0.06);
  backdrop-filter: blur(12px);
}

.proof-card:first-child {
  border-radius: 28px 0 0 28px;
}

.proof-card:last-child {
  border-radius: 0 28px 28px 0;
}

.proof-number {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 101, 72, 0.12);
}

.proof-card:nth-child(2) .proof-number {
  color: var(--green);
  background: rgba(23, 107, 90, 0.12);
}

.proof-card:nth-child(3) .proof-number {
  color: #a66a00;
  background: rgba(243, 174, 61, 0.18);
}

.proof-card h2 {
  margin: 0;
  font-size: 15px;
}

.proof-card p {
  max-width: 260px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.section-pad {
  padding-block: 118px;
}

.section-kicker {
  margin: 0 0 19px;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-heading {
  display: flex;
  margin-bottom: 55px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading > .section-lead {
  width: 40%;
  margin: 0;
}

.section-heading.centered {
  display: flex;
  max-width: 820px;
  margin: 0 auto 58px;
  align-items: center;
  flex-direction: column;
  gap: 0;
  text-align: center;
}

.section-heading.centered .section-lead {
  width: auto;
  margin: 22px auto 0;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease var(--delay, 0ms),
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  position: relative;
  background: var(--paper);
}

.about-section::before {
  position: absolute;
  top: 16%;
  left: -10%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(23, 107, 90, 0.12);
  border-radius: 50%;
  content: "";
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 10%;
}

.about-visual {
  position: relative;
  min-height: 650px;
}

.about-photo {
  position: absolute;
  top: 0;
  right: 8%;
  bottom: 52px;
  left: 0;
  display: flex;
  padding: 36px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 45% 55% 30px 30px / 30% 38% 30px 30px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 101, 72, 0.2), transparent 35%),
    linear-gradient(145deg, #eed7bf, #f9ebdc 55%, #e8cab1);
  box-shadow: 0 30px 80px rgba(73, 46, 36, 0.14);
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 52%;
}

.about-photo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(33, 21, 43, 0.16) 100%);
  pointer-events: none;
}

.about-photo::before {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  content: "";
  z-index: 2;
}

.about-monogram {
  position: absolute;
  top: 44%;
  left: 50%;
  color: rgba(255, 255, 255, 0.66);
  font-family: Georgia, serif;
  font-size: 280px;
  transform: translate(-50%, -50%);
}

.photo-label {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.photo-label strong {
  font-size: 15px;
}

.photo-label span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.education-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  width: min(340px, 74%);
  padding: 22px;
  align-items: center;
  gap: 16px;
  border: 1px solid white;
  border-radius: 24px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 22px 58px rgba(74, 48, 38, 0.16);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease;
}

.education-card:hover {
  transform: translateY(-5px);
}

.education-preview {
  display: block;
  width: 52px;
  height: 66px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid white;
  border-radius: 8px;
  background: #243878;
  box-shadow: 0 8px 18px rgba(33, 44, 91, 0.2);
}

.education-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.education-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.education-card small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.education-card strong {
  margin-top: 5px;
  font-size: 14px;
}

.education-card em {
  margin-top: 4px;
  color: var(--green);
  font-size: 11px;
  font-style: normal;
}

.about-copy > p:not(.section-kicker, .section-lead) {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-copy .section-lead {
  margin: 30px 0 18px;
  color: var(--ink);
}

.about-values {
  display: grid;
  margin-top: 34px;
  gap: 12px;
}

.about-values div {
  display: flex;
  padding: 15px 18px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.about-values b {
  color: var(--coral-deep);
  font-size: 12px;
}

.about-values span {
  font-size: 14px;
  font-weight: 700;
}

.process-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(23, 107, 90, 0.08), transparent 27%),
    linear-gradient(#fff9f1, #fff4e8);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  position: relative;
  min-height: 285px;
  padding: 30px 30px 35px;
  border-right: 1px solid var(--line);
}

.process-card:last-child {
  border-right: 0;
}

.process-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 101, 72, 0.12);
}

.process-card:nth-child(2n) .process-number {
  color: var(--green);
  background: rgba(23, 107, 90, 0.12);
}

.process-line {
  width: 65%;
  height: 1px;
  margin: 31px 0 26px;
  background: linear-gradient(90deg, var(--coral), transparent);
}

.process-card:nth-child(2n) .process-line {
  background: linear-gradient(90deg, var(--green), transparent);
}

.process-card h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.process-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.services-section {
  background: var(--paper);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 650px;
  padding: 38px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fffaf4;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 65px rgba(73, 46, 36, 0.1);
}

.service-card.is-featured {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 87% 12%, rgba(255, 161, 95, 0.28), transparent 27%),
    linear-gradient(145deg, #206d5f, #105447);
  box-shadow: 0 28px 70px rgba(23, 107, 90, 0.22);
}

.popular-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
}

.service-tag {
  margin: 0 0 20px;
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.is-featured .service-tag {
  color: #ffd8b2;
}

.service-card h3 {
  max-width: 330px;
  margin: 0;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-description {
  min-height: 100px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.is-featured .service-description {
  color: rgba(255, 255, 255, 0.7);
}

.service-price {
  display: flex;
  margin: 8px 0 26px;
  align-items: flex-end;
  gap: 10px;
}

.service-price strong {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.service-price span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.is-featured .service-price span {
  color: rgba(255, 255, 255, 0.62);
}

.service-card ul {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #493d42;
  font-size: 13px;
  line-height: 1.45;
}

.is-featured li {
  color: rgba(255, 255, 255, 0.84);
}

.service-card li span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  font-size: 10px;
  background: rgba(23, 107, 90, 0.11);
}

.is-featured li span {
  color: var(--green);
  background: #d8f0e6;
}

.service-card > button {
  display: flex;
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(23, 107, 90, 0.25);
  border-radius: 16px;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  background: rgba(23, 107, 90, 0.05);
}

.is-featured > button {
  border-color: white;
  color: var(--green);
  background: white;
}

.intro-callout {
  display: flex;
  margin-top: 22px;
  padding: 25px 30px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffaf4;
}

.intro-callout > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-callout p {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
}

.intro-callout strong {
  color: var(--ink);
  font-size: 15px;
}

.intro-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 101, 72, 0.1);
}

.intro-callout button {
  padding: 13px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

.materials-section {
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 101, 72, 0.12), transparent 25%),
    #fff5e8;
}

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

.material-card {
  display: flex;
  min-height: 520px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 16px 50px rgba(74, 48, 38, 0.06);
  backdrop-filter: blur(12px);
}

.material-art {
  position: relative;
  display: grid;
  height: 180px;
  margin-bottom: 30px;
  place-items: center;
  overflow: hidden;
  border-radius: 23px;
  background: rgba(23, 107, 90, 0.08);
}

.material-coral .material-art {
  background: rgba(255, 101, 72, 0.09);
}

.material-amber .material-art {
  background: rgba(243, 174, 61, 0.12);
}

.material-orbit {
  position: absolute;
  width: 210px;
  height: 100px;
  border: 1px solid var(--green);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.material-coral .material-orbit {
  border-color: var(--coral);
}

.material-amber .material-orbit {
  border-color: var(--amber);
}

.material-orbit::after {
  position: absolute;
  top: 5px;
  right: 38px;
  width: 14px;
  height: 14px;
  border: 3px solid white;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.material-core {
  display: grid;
  width: 70px;
  height: 70px;
  z-index: 2;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-family: Georgia, serif;
  font-size: 30px;
  background: var(--green);
  box-shadow: 0 15px 35px rgba(23, 107, 90, 0.25);
}

.material-coral .material-core {
  background: var(--coral);
  box-shadow: 0 15px 35px rgba(255, 101, 72, 0.25);
}

.material-amber .material-core {
  background: var(--amber);
  box-shadow: 0 15px 35px rgba(243, 174, 61, 0.25);
}

.material-type {
  margin: 0 0 12px !important;
  color: var(--green) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.material-coral .material-type {
  color: var(--coral-deep) !important;
}

.material-amber .material-type {
  color: #9a6400 !important;
}

.material-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.material-card > p:not(.material-type) {
  margin: 16px 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.material-footer {
  display: flex;
  margin-top: auto;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.material-footer strong {
  font-size: 18px;
}

.material-footer button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

.ai-section {
  padding-block: 70px;
  background: var(--paper);
}

.ai-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 70px;
  overflow: hidden;
  border-radius: 42px;
  color: white;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 119, 84, 0.24), transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(143, 206, 177, 0.18), transparent 26%),
    linear-gradient(140deg, #21152b 0%, #123e3a 100%);
}

.ai-panel::after {
  position: absolute;
  top: -42%;
  right: -4%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.ai-copy {
  position: relative;
  z-index: 2;
  padding-right: 55px;
}

.light-kicker {
  color: #ffc5a6;
}

.ai-copy h2,
.final-panel h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 61px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.ai-copy > p:not(.section-kicker) {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.ai-rules {
  display: flex;
  margin: 24px 0 30px;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-rules span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
}

.ai-copy button,
.final-panel > button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 20px;
  align-items: center;
  gap: 20px;
  border: 0;
  border-radius: 16px;
  color: white;
  font-weight: 800;
  cursor: pointer;
  background: var(--coral);
  box-shadow: 0 16px 35px rgba(255, 101, 72, 0.2);
}

.ai-console {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.console-head {
  display: flex;
  padding-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.console-head > span {
  display: flex;
  gap: 7px;
}

.console-head i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.console-head i:nth-child(2) {
  background: var(--amber);
}

.console-head i:nth-child(3) {
  background: var(--green-light);
}

.console-head small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.console-question {
  width: 78%;
  margin: 35px 0 20px auto;
  padding: 17px;
  border-radius: 18px 18px 5px 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
  background: #fff4e9;
}

.console-answer {
  display: flex;
  padding: 18px;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px 18px 18px 5px;
  background: rgba(255, 255, 255, 0.07);
}

.answer-mark {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
}

.console-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.console-sources {
  display: flex;
  margin-top: 18px;
  flex-wrap: wrap;
  gap: 7px;
}

.console-sources span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-light);
  font-size: 9px;
  background: rgba(139, 198, 165, 0.1);
}

.articles-section {
  background: var(--paper);
}

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

.article-card {
  padding: 16px 16px 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fffaf4;
}

.article-art {
  position: relative;
  display: flex;
  height: 245px;
  padding: 23px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 62% 40%, rgba(255, 255, 255, 0.9), transparent 8%),
    linear-gradient(145deg, #ffc2a3, #ef6a4f);
}

.article-art::before,
.article-art::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  content: "";
}

.article-art::before {
  top: 25px;
  right: -55px;
  width: 210px;
  height: 130px;
  transform: rotate(28deg);
}

.article-art::after {
  top: 90px;
  right: 45px;
  width: 100px;
  height: 100px;
}

.article-art-2 {
  background: linear-gradient(145deg, #a5d2bb, #256d5e);
}

.article-art-3 {
  background: linear-gradient(145deg, #ffd78a, #f1a43a);
}

.article-art span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-family: Georgia, serif;
  font-size: 58px;
}

.article-meta {
  display: flex;
  margin: 22px 6px 14px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.article-meta span:first-child {
  color: var(--green);
  font-weight: 800;
}

.article-card h3 {
  min-height: 82px;
  margin: 0 6px;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.article-card button {
  display: flex;
  width: calc(100% - 12px);
  margin: 24px 6px 0;
  padding: 14px 0 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

.faq-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(23, 107, 90, 0.08), transparent 27%),
    #fff6eb;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 10%;
}

.faq-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.faq-intro .section-lead {
  font-size: 16px;
}

.faq-intro button {
  padding: 14px 19px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

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

.faq-list summary {
  display: flex;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(23, 107, 90, 0.28);
  border-radius: 50%;
  color: var(--green);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 45px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  padding: 90px 0;
  background: var(--paper);
}

.final-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 64px 70px;
  align-items: center;
  gap: 55px;
  overflow: hidden;
  border-radius: 38px;
  color: white;
  background:
    radial-gradient(circle at 83% 30%, rgba(255, 179, 120, 0.24), transparent 26%),
    linear-gradient(135deg, #205f54, #113e38);
}

.final-panel > div {
  position: relative;
  z-index: 2;
}

.final-panel h2 {
  max-width: 720px;
}

.final-panel > div > p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.final-panel > button {
  position: relative;
  z-index: 2;
}

.final-orbit {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 500px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: rotate(20deg);
}

footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  background: #fff8ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: start;
  gap: 55px;
}

.footer-grid > p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer-grid nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  margin-top: 50px;
  padding-top: 20px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.floating-question {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  min-height: 48px;
  padding: 5px 15px 5px 5px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: white;
  cursor: pointer;
  background: var(--green);
  box-shadow: 0 15px 40px rgba(23, 107, 90, 0.3);
}

.floating-question span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: white;
}

.floating-question em {
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  padding: 22px;
  place-items: center;
  background: rgba(27, 18, 30, 0.66);
  backdrop-filter: blur(9px);
  animation: modal-in 180ms ease;
}

.modal-backdrop[hidden] {
  display: none !important;
}

.modal-card {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 44px);
  padding: 46px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.modal-backdrop.is-diploma .modal-card {
  width: min(1120px, 100%);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 25px;
  cursor: pointer;
  background: white;
}

.modal-card h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(30px, 5vw, 45px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.modal-lead,
.diploma-modal > p:not(.section-kicker),
.success-state > p:not(.section-kicker) {
  max-width: 560px;
  margin: 17px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.modal-card form {
  display: grid;
  gap: 16px;
}

.modal-card label {
  display: grid;
  gap: 7px;
  color: #4c4146;
  font-size: 11px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-card input,
.modal-card select,
.modal-card textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(66, 45, 52, 0.15);
  border-radius: 13px;
  outline: 0;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.72);
}

.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 107, 90, 0.08);
}

.modal-card textarea {
  resize: vertical;
}

.modal-card .consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.45;
}

.consent input {
  width: 15px;
  height: 15px;
  margin-top: 1px;
  accent-color: var(--green);
}

.form-submit,
.success-state button {
  display: flex;
  min-height: 54px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 15px;
  color: white;
  font-weight: 800;
  cursor: pointer;
  background: var(--coral);
}

.modal-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  background: var(--green);
  box-shadow: 0 14px 35px rgba(23, 107, 90, 0.22);
}

.diploma-gallery {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1.62fr);
  margin-top: 28px;
  align-items: end;
  gap: 22px;
}

.diploma-gallery figure {
  margin: 0;
}

.diploma-image-link {
  display: block;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(23, 107, 90, 0.14);
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 45px rgba(45, 36, 54, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.diploma-image-link:hover,
.diploma-image-link:focus-visible {
  outline: 0;
  box-shadow: 0 22px 55px rgba(45, 36, 54, 0.2);
  transform: translateY(-3px);
}

.diploma-image-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.diploma-gallery figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.success-state button {
  min-width: 170px;
  justify-content: center;
}

@keyframes modal-in {
  from {
    opacity: 0;
  }
}

@keyframes ambient-drift {
  to {
    transform: translate3d(24px, 18px, 0) scale(1.08);
  }
}

@keyframes orbit-one {
  to {
    transform: rotate(343deg);
  }
}

@keyframes orbit-two {
  to {
    transform: rotate(380deg);
  }
}

@keyframes orbit-three {
  to {
    transform: rotate(415deg);
  }
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .main-nav {
    gap: 22px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: 95px minmax(390px, 0.95fr) minmax(390px, 1.05fr);
  }

  .section-rail span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(48px, 5.5vw, 68px);
  }

  .portrait-stage {
    min-height: 540px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 36px, 720px);
  }

  .site-header {
    display: flex;
    height: 86px;
    justify-content: space-between;
  }

  .question-button {
    margin-left: auto;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    padding: 22px;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .section-rail {
    display: none;
  }

  .hero-copy {
    padding: 45px 0 15px;
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    align-items: center;
  }

  .portrait-stage {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .proof-card,
  .proof-card:first-child,
  .proof-card:last-child {
    border-radius: 22px;
  }
}

@media (max-width: 580px) {
  .shell {
    width: min(100% - 28px, 520px);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .question-button {
    width: 46px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .hero-copy {
    padding-top: 35px;
  }

  .hero h1 {
    margin-top: 25px;
    font-size: clamp(41px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .portrait-stage {
    min-height: 485px;
  }

  .portrait-glow {
    top: 55px;
    left: 0;
    height: 385px;
  }

  .portrait-placeholder {
    top: 86px;
    right: 5%;
    bottom: 65px;
    left: 5%;
    padding: 26px;
  }

  .placeholder-monogram {
    font-size: 180px;
  }

  .card-education {
    top: 58px;
    left: -3%;
  }

  .card-method {
    top: 270px;
    right: -2%;
  }

  .floating-card {
    padding: 10px;
    border-radius: 16px;
  }

  .floating-card small {
    max-width: 100px;
  }

  .diploma-card {
    right: 4%;
    bottom: 55px;
  }

  .orbit-one,
  .orbit-two,
  .orbit-three {
    height: 360px;
  }

  .proof-card {
    min-height: 100px;
    padding: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1160px) {
  .about-grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr);
    gap: 6%;
  }

  .about-visual {
    min-height: 580px;
  }

  .process-card {
    padding-inline: 20px;
  }

  .service-card {
    min-height: 670px;
    padding: 30px;
  }

  .popular-badge {
    position: static;
    width: fit-content;
    margin: -6px 0 18px;
  }

  .service-description {
    min-height: 120px;
  }

  .ai-panel {
    padding: 55px;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding-block: 90px;
  }

  .section-heading,
  .services-heading,
  .articles-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-heading > .section-lead {
    width: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-visual {
    width: min(100%, 590px);
    min-height: 630px;
    margin-inline: auto;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-card {
    border-bottom: 1px solid var(--line);
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .services-grid,
  .materials-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-description {
    min-height: auto;
  }

  .material-card {
    min-height: 470px;
  }

  .ai-panel {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ai-copy {
    padding-right: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-intro {
    position: static;
  }

  .final-panel {
    grid-template-columns: 1fr;
    padding: 55px;
  }

  .final-panel > button {
    width: fit-content;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

@media (max-width: 580px) {
  .section-pad {
    padding-block: 72px;
  }

  .section-title {
    font-size: 38px;
  }

  .section-lead {
    font-size: 16px;
  }

  .about-visual {
    min-height: 500px;
  }

  .about-photo {
    right: 0;
    bottom: 55px;
    padding: 24px;
  }

  .about-monogram {
    font-size: 210px;
  }

  .education-card {
    right: 8px;
    width: calc(100% - 30px);
    padding: 15px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 230px;
    border-right: 0;
  }

  .service-card,
  .material-card {
    padding: 25px;
    border-radius: 24px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .service-price strong {
    font-size: 30px;
  }

  .intro-callout {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .material-art {
    height: 155px;
  }

  .ai-panel {
    width: min(100% - 20px, 520px);
    padding: 38px 24px;
    border-radius: 28px;
  }

  .console-question {
    width: 93%;
  }

  .article-art {
    height: 210px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .final-cta {
    padding-block: 65px;
  }

  .final-panel {
    padding: 42px 25px;
    border-radius: 27px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-question {
    right: 14px;
    bottom: 14px;
    padding-right: 5px;
  }

  .floating-question em {
    display: none;
  }

  .modal-backdrop {
    padding: 10px;
  }

  .modal-card {
    max-height: calc(100vh - 20px);
    padding: 38px 22px 25px;
    border-radius: 23px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .diploma-gallery {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .diploma-cover-figure {
    width: min(58%, 240px);
    margin-inline: auto !important;
  }
}

.static-notice{position:fixed;left:50%;bottom:24px;z-index:120;max-width:min(620px,calc(100% - 28px));padding:14px 18px;border-radius:15px;color:#fff;font-size:13px;line-height:1.45;background:#21152b;box-shadow:0 18px 50px rgba(0,0,0,.25);transform:translate(-50%,130%);opacity:0;transition:.25s ease}
.static-notice.show{transform:translate(-50%,0);opacity:1}
.static-service-button{display:flex;width:100%;min-height:54px;margin-top:auto;padding:0 20px;align-items:center;justify-content:space-between;border:1px solid rgba(23,107,90,.25);border-radius:16px;color:var(--green);font-weight:800;cursor:pointer;background:rgba(23,107,90,.05)}
.is-featured .static-service-button{border-color:white;color:var(--green);background:white}
@media(max-width:580px){.static-notice{bottom:74px}}
@media(max-width:420px){.question-button{display:none}.brand{gap:9px}.brand-copy strong{font-size:13px}.brand-copy small{font-size:9px}}

/* NutriOK brand refresh */
:root{
  --cream:#f4f5ed;--paper:#fffef8;--ink:#143b34;--muted:#64736e;
  --coral:#9bcf63;--coral-deep:#2b876f;--green:#124f43;
  --green-light:#a9d8bd;--amber:#e8a45f;--line:rgba(20,59,52,.12);
  --glass:rgba(255,254,248,.76);--shadow:0 24px 70px rgba(31,72,62,.12)
}
.hero{background:radial-gradient(circle at 84% 23%,rgba(155,207,99,.24),transparent 27%),radial-gradient(circle at 42% 95%,rgba(232,164,95,.13),transparent 28%),linear-gradient(135deg,#fafbf3 0%,#f1f5e9 55%,#fbf8ed 100%)}
.ambient-one{background:rgba(155,207,99,.24)}
.ambient-two{background:rgba(43,135,111,.16)}
.brand-mark{overflow:hidden;border:1px solid rgba(18,79,67,.12);border-radius:18px;color:inherit;background:linear-gradient(145deg,#fff,#eaf2df);box-shadow:0 10px 28px rgba(18,79,67,.16)}
.brand-mark::after{display:none}
.brand-plate{position:absolute;width:34px;height:34px;border:6px solid var(--green);border-radius:50%}
.brand-plate::before,.brand-plate::after{position:absolute;border-radius:50%;background:var(--coral);content:""}
.brand-plate::before{top:-3px;right:4px;width:8px;height:8px}
.brand-plate::after{right:-2px;bottom:4px;width:6px;height:6px}
.brand-check{position:absolute;right:5px;bottom:1px;display:grid;width:22px;height:22px;place-items:center;border:3px solid var(--paper);border-radius:50%;color:#fff;font-size:12px;font-weight:900;background:var(--coral-deep)}
.brand-copy strong{color:var(--green);font-size:23px;font-weight:850;letter-spacing:-.055em}
.brand-copy strong span{color:var(--coral-deep)}
.brand-copy small{font-size:10px;font-weight:650;letter-spacing:.015em}
.eyebrow-ok{display:grid;min-width:30px;height:24px;padding-inline:5px;place-items:center;border-radius:8px;color:#fff;font-size:10px;letter-spacing:0;background:var(--coral-deep);box-shadow:0 0 0 6px rgba(43,135,111,.08)}
.hero h1 em::after{border-bottom:3px solid rgba(155,207,99,.85)}
.primary-button{background:linear-gradient(135deg,#2d8f76,var(--green));box-shadow:0 18px 35px rgba(18,79,67,.24)}
.primary-button span{color:var(--green)}
.primary-button:hover{box-shadow:0 22px 44px rgba(18,79,67,.3)}
.hero-signet{position:absolute;top:20px;right:6%;z-index:2;display:flex;align-items:baseline;color:rgba(18,79,67,.08);font-size:clamp(54px,6vw,92px);font-weight:850;letter-spacing:-.075em;transform:rotate(4deg)}
.hero-signet strong{color:rgba(43,135,111,.12)}
.portrait-glow{background:radial-gradient(circle at 66% 32%,rgba(215,237,186,.92),transparent 30%),linear-gradient(145deg,rgba(255,255,255,.86),rgba(207,227,192,.66))}
.orbit-one{border-color:rgba(155,207,99,.72)}
.orbit-two{border-color:rgba(43,135,111,.58)}
.leaf-symbol{color:#fff;background:var(--coral-deep)}
.proof-number{color:var(--green);font-size:17px;background:rgba(155,207,99,.2)}
.proof-card:nth-child(2) .proof-number{color:#fff;background:var(--coral-deep)}
.proof-card:nth-child(3) .proof-number{color:#805118;background:rgba(232,164,95,.22)}
@media(max-width:580px){.brand-copy strong{font-size:19px}.brand-copy small{max-width:160px;font-size:8.5px}.hero-signet{top:28px;right:2%;font-size:56px}}
@media(max-width:420px){.brand-copy strong{font-size:18px}.brand-copy small{max-width:145px;font-size:8px}}
