:root {
  --navy-950: #061426;
  --navy-900: #07182d;
  --navy-800: #0b213c;
  --navy-700: #133455;
  --gold-600: #b9851a;
  --gold-500: #cfa34a;
  --gold-300: #e7cb82;
  --cream-100: #fbf8f0;
  --cream-200: #f3eadb;
  --white: #ffffff;
  --ink: #172132;
  --muted: #647085;
  --line: rgba(17, 36, 60, 0.12);
  --shadow: 0 22px 60px rgba(6, 20, 38, 0.16);
  --shadow-soft: 0 14px 34px rgba(6, 20, 38, 0.09);
  --radius: 8px;
  --radius-lg: 8px;
  --container: 1180px;
  --ease: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(207, 163, 74, 0.72);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

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

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  margin: 0 0 10px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(2rem, 3.6vw, 3.65rem);
}

h3 {
  color: var(--navy-950);
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 55%, var(--gold-600));
  box-shadow: 0 12px 30px rgba(207, 163, 74, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(207, 163, 74, 0.48);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  border-color: rgba(231, 203, 130, 0.85);
  background: rgba(255, 255, 255, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 20, 38, 0.78);
  border-bottom: 1px solid rgba(231, 203, 130, 0.18);
  backdrop-filter: blur(20px);
  transition: box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.site-header.is-scrolled {
  background: rgba(6, 20, 38, 0.94);
  border-color: rgba(231, 203, 130, 0.32);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  width: min(calc(100% - 40px), 1240px);
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 224px;
  color: var(--white);
}

.brand img {
  width: 54px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(231, 203, 130, 0.42);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.brand em {
  color: var(--gold-300);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color var(--ease);
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 11px 16px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(207, 163, 74, 0.28);
  transition: transform var(--ease), box-shadow var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(207, 163, 74, 0.36);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(231, 203, 130, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-300);
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(820px, 86vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 20, 38, 0.98) 0%, rgba(6, 20, 38, 0.9) 37%, rgba(6, 20, 38, 0.38) 66%, rgba(6, 20, 38, 0.54) 100%),
    linear-gradient(180deg, rgba(6, 20, 38, 0.24), rgba(6, 20, 38, 0.68)),
    url("assets/iv-therapy-glow.jpeg") right center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: -2;
  content: "";
  background: linear-gradient(0deg, var(--navy-950), rgba(6, 20, 38, 0));
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.26;
  background-image:
    linear-gradient(120deg, transparent 0 42%, rgba(231, 203, 130, 0.32) 42.2%, transparent 42.8%),
    linear-gradient(60deg, transparent 0 62%, rgba(231, 203, 130, 0.18) 62.2%, transparent 62.8%);
  background-size: 520px 520px, 680px 680px;
  animation: lineDrift 18s ease-in-out infinite alternate;
}

.hero-content {
  padding: 84px 0 54px;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
}

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

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

.hero-proof span {
  color: rgba(255, 255, 255, 0.82);
  padding: 0 16px 0 0;
  border-right: 1px solid rgba(231, 203, 130, 0.32);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-proof span:last-child {
  border-right: 0;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding-bottom: 52px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  min-height: 152px;
  padding: 24px;
  border: 1px solid rgba(231, 203, 130, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.trust-item:hover,
.service-card:hover,
.package-card:hover,
.advantage-card:hover,
.value-card:hover,
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(207, 163, 74, 0.5);
  box-shadow: var(--shadow);
}

.trust-item svg,
.why-card svg,
.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item svg,
.why-card svg {
  color: var(--gold-600);
}

.trust-item h2 {
  margin: 14px 0 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.trust-item p,
.service-card p,
.why-card p,
.value-card p,
.advantage-card p,
.package-card li {
  font-size: 0.95rem;
}

.services-section {
  background:
    linear-gradient(180deg, var(--white), var(--cream-100));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 288px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 20, 38, 0.06);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card-feature {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  border-color: rgba(231, 203, 130, 0.3);
}

.service-card-feature h3,
.service-card-feature p,
.service-card-feature .text-link {
  color: var(--white);
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-600);
  border: 1px solid rgba(207, 163, 74, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8, #f7efde);
}

.service-card h3,
.advantage-card h3,
.value-card h3,
.why-card h3,
.package-card h3 {
  margin-bottom: 10px;
}

.service-card ul,
.package-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin: 7px 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card li::before,
.package-card li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold-500);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-600);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.iv-highlight {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}

.iv-highlight::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, rgba(231, 203, 130, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(231, 203, 130, 0.12) 1px, transparent 1px);
  background-size: 96px 96px;
}

.split-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 56px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border: 1px solid rgba(231, 203, 130, 0.32);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 600ms ease;
}

.media-frame:hover img {
  transform: scale(1.04);
}

.highlight-copy h2,
.highlight-copy h3 {
  color: var(--white);
}

.highlight-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.ingredient-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.ingredient-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(231, 203, 130, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.ingredient-list svg {
  width: 26px;
  height: 26px;
  color: var(--gold-300);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ingredient-list h3,
.ingredient-list p {
  margin-bottom: 4px;
}

.package-section {
  background: var(--cream-100);
}

.package-hero {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 34px;
}

.package-hero > div:first-child {
  max-width: 760px;
}

.price-card {
  min-width: 190px;
  padding: 22px;
  color: var(--navy-950);
  text-align: center;
  border: 1px solid rgba(207, 163, 74, 0.45);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 18px 40px rgba(207, 163, 74, 0.26);
}

.price-card span,
.price-card strong {
  display: block;
  line-height: 1;
}

.price-card span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
}

.price-card strong {
  margin-top: 8px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.package-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.package-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 20, 38, 0.06);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.package-card li {
  position: relative;
  margin: 6px 0;
  padding-left: 18px;
  color: var(--muted);
}

.package-aside {
  position: sticky;
  top: 98px;
  padding: 18px;
  border: 1px solid rgba(207, 163, 74, 0.28);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.package-aside img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.package-aside p {
  margin: 16px 0;
  font-size: 0.9rem;
}

.package-aside .btn {
  width: 100%;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 48px;
  align-items: start;
}

.about-copy p {
  font-size: 1.04rem;
}

.statement-stack {
  display: grid;
  gap: 18px;
}

.statement-card {
  padding: 28px;
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #fbf8f0);
  box-shadow: var(--shadow-soft);
}

.statement-card h3 {
  margin-bottom: 10px;
  color: var(--gold-600);
}

.advantage-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 20, 38, 0.98), rgba(10, 31, 57, 0.96)),
    url("assets/logo-navy-gold.jpeg") center / cover no-repeat;
}

.advantage-section h2,
.advantage-section h3 {
  color: var(--white);
}

.advantage-section p {
  color: rgba(255, 255, 255, 0.75);
}

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

.advantage-card {
  min-height: 274px;
  padding: 28px;
  border: 1px solid rgba(231, 203, 130, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.advantage-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-300);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.values-section {
  background: var(--cream-100);
}

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

.value-card {
  min-height: 248px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 20, 38, 0.06);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.value-card h3 {
  min-height: 52px;
}

.value-card p {
  font-size: 0.9rem;
}

.why-section {
  background: var(--white);
}

.why-layout .section-heading {
  margin-bottom: 36px;
}

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

.why-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--white), #fbf8f1);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.why-card svg {
  margin-bottom: 16px;
}

.cta-banner {
  padding: 68px 0;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 48%, var(--gold-600));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 680px;
  margin-bottom: 10px;
  color: var(--navy-950);
}

.cta-inner p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(6, 20, 38, 0.78);
}

.cta-banner .btn-primary {
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 16px 36px rgba(6, 20, 38, 0.25);
}

.contact-section {
  background:
    linear-gradient(180deg, var(--white), var(--cream-100));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-copy p {
  font-size: 1.02rem;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a,
.contact-list p {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.contact-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(207, 163, 74, 0.48);
  box-shadow: var(--shadow-soft);
}

.contact-list strong {
  color: var(--navy-950);
}

.contact-list span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(207, 163, 74, 0.24);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--navy-950);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(17, 36, 60, 0.18);
  border-radius: var(--radius);
  background: #fffdf8;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.form-row textarea {
  min-height: 134px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(207, 163, 74, 0.14);
  outline: none;
}

.form-submit {
  grid-column: 1 / -1;
  width: fit-content;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 44px;
  padding: 70px 0 42px;
}

.footer-brand img {
  width: 190px;
  height: 142px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 18px;
  border: 1px solid rgba(231, 203, 130, 0.28);
  border-radius: var(--radius);
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--white);
}

.footer-grid h2 {
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.footer-grid h3 {
  margin-bottom: 18px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a {
  transition: color var(--ease), transform var(--ease);
}

.footer-grid a:hover {
  color: var(--gold-300);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(6, 20, 38, 0.96), rgba(10, 31, 57, 0.92)),
    url("assets/logo-navy-gold.jpeg") center / cover no-repeat;
}

.thank-you-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 18px;
}

.thank-you-card {
  width: min(100%, 640px);
  padding: clamp(30px, 6vw, 56px);
  text-align: center;
  border: 1px solid rgba(231, 203, 130, 0.32);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.thank-you-card img {
  width: 158px;
  height: 118px;
  object-fit: cover;
  margin: 0 auto 26px;
  border: 1px solid rgba(207, 163, 74, 0.28);
  border-radius: var(--radius);
}

.thank-you-card h1 {
  margin-bottom: 16px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.thank-you-card p {
  max-width: 460px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

.section-observe {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lineDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 80px 50px, -70px 90px;
  }
}

@media (max-width: 1160px) {
  .nav-shell {
    gap: 18px;
  }

  .nav-menu {
    gap: 15px;
  }

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

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

  .package-layout {
    grid-template-columns: 1fr;
  }

  .package-aside {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: center;
  }

  .package-aside .btn {
    width: fit-content;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 74px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    align-items: stretch;
    padding: 12px 20px 24px;
    border-bottom: 1px solid rgba(231, 203, 130, 0.18);
    background: rgba(6, 20, 38, 0.98);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link,
  .nav-cta {
    width: 100%;
    padding: 15px 0;
  }

  .nav-link::after {
    bottom: 8px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
    padding: 14px 16px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(6, 20, 38, 0.96) 0%, rgba(6, 20, 38, 0.9) 45%, rgba(6, 20, 38, 0.74) 100%),
      url("assets/iv-therapy-glow.jpeg") center / cover no-repeat;
  }

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

  .split-layout,
  .about-grid,
  .contact-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .package-hero {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    height: 70px;
  }

  .brand {
    min-width: auto;
  }

  .brand span {
    display: none;
  }

  .nav-menu {
    inset: 70px 0 auto;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 76px;
  }

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

  .hero-actions .btn,
  .cta-inner .btn {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
    padding: 0;
    border-right: 0;
  }

  .trust-grid,
  .services-grid,
  .why-grid,
  .values-grid,
  .package-categories,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .package-aside {
    grid-template-columns: 1fr;
  }

  .contact-list a,
  .contact-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-submit {
    width: 100%;
  }

  .footer-brand img {
    width: 150px;
    height: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .section-observe {
    opacity: 1;
    transform: none;
  }
}
