/* Design tokens */
:root {
  --bg: #050706;
  --bg-rgb: 6, 8, 13;
  --bg-soft: #0b100d;
  --panel-solid: #111813;
  --panel-raised: #172235;

  --text: #f4f8f5;
  --text-soft: #a5b2a9;
  --text-muted: #6d7a70;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --accent: #7cff9b;
  --accent-rgb: 79, 216, 255;
  --accent-strong-rgb: 47, 195, 255;
  --secondary-accent-rgb: 102, 117, 255;
  --success: #7cff9b;
  --success-rgb: 108, 231, 183;
  --danger: #ff8e8e;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --container: 1200px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.46);
  outline-offset: 4px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.section {
  position: relative;
  padding: 128px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.process-intro h2,
.faq-intro h2,
.contact-copy h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.7vw, 4.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading p,
.process-intro > p,
.faq-intro > p,
.contact-copy > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08);
}

.button-primary:hover {
  background: var(--accent);
  box-shadow: 0 18px 50px rgba(var(--accent-strong-rgb), 0.18);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.06);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--text);
  font-weight: 700;
}

.text-link span {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

/* Header and navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(var(--bg-rgb), 0.82);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.14), rgba(var(--secondary-accent-rgb), 0.08));
  color: var(--accent);
  font-size: 1rem;
  overflow: hidden;
  box-shadow: inset 0 0 18px rgba(var(--accent-rgb), 0.06);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  background: var(--accent);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a.active {
  color: var(--text);
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 38px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  width: 100%;
  max-width: 1080px;
  text-align: center;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.availability-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(var(--success-rgb), 0.08), 0 0 14px rgba(var(--success-rgb), 0.45);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.4vw, 4.6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.062em;
  text-align: center;
}

.hero-lead {
  max-width: 700px;
  margin: 28px auto 0;
  color: var(--text-soft);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
  text-align: center;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--text-muted);
  list-style: none;
  font-size: 0.87rem;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust span {
  color: var(--success);
}

/* Audience strip */
.audience-strip {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  margin-top: 72px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  overflow: hidden;
}

.audience-strip > span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-list {
  display: flex;
  gap: 24px;
  align-items: center;
  min-width: max-content;
}

.audience-list strong {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.audience-list i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line-strong);
}

/* Projects */
.projects-section {
  border-bottom: 1px solid var(--line);
}

.projects-list {
  display: grid;
  gap: 30px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(320px, 0.77fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.16);
}

.project-card-reverse {
  grid-template-columns: minmax(320px, 0.77fr) minmax(0, 1.23fr);
}

.project-card-reverse .project-media {
  order: 2;
}

.project-card-reverse .project-content {
  order: 1;
}

.project-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--panel-solid);
}

.project-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(4, 7, 11, 0.25), transparent 50%);
  pointer-events: none;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

.project-media:hover img {
  transform: scale(1.035);
  filter: brightness(1.06);
}

.project-open {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(var(--bg-rgb), 0.67);
  color: var(--text);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.project-media:hover .project-open {
  transform: rotate(10deg);
  background: var(--accent);
  color: var(--bg);
}

.project-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.project-meta span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.project-content p {
  margin: 20px 0 30px;
  color: var(--text-soft);
}

/* Process */
.process-section {
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 100px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 120px;
}

.process-intro > p {
  max-width: 480px;
  margin-top: 24px;
}

.process-intro .text-link {
  margin-top: 30px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

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

.process-step {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.process-item p {
  max-width: 620px;
  margin: 0;
  color: var(--text-soft);
}

/* Pricing */
.pricing-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 58%, rgba(var(--accent-rgb), 0.045), transparent 25rem),
    rgba(255, 255, 255, 0.01);
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.price-card-featured {
  border-color: rgba(var(--accent-rgb), 0.42);
  background: linear-gradient(160deg, rgba(var(--accent-rgb), 0.075), rgba(255, 255, 255, 0.02) 52%);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.06);
}

.price-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 29px;
  margin-bottom: 31px;
  color: var(--text-muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
}

.price-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: -0.035em;
}

.price-purpose {
  min-height: 82px;
  margin: 10px 0 21px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.price span {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.price small {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 27px 0 31px;
  padding: 0;
  color: var(--text-soft);
  list-style: none;
  font-size: 0.91rem;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✓";
  color: var(--success);
  font-weight: 800;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

/* Supplements */
.supplements {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
}

.supplements-heading {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.supplements-heading .section-kicker {
  margin-bottom: 10px;
}

.supplements-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
}

.supplements-heading p {
  max-width: 500px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.supplements-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.supplements-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.supplements-table th,
.supplements-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.supplements-table th {
  background: rgba(var(--accent-rgb), 0.055);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supplements-table td {
  color: var(--text-soft);
}

.supplements-table th:last-child,
.supplements-table td:last-child {
  width: 220px;
  color: var(--text);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

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

.pricing-notes {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.pricing-notes p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.pricing-notes strong,
.pricing-notes sup {
  color: var(--text-soft);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 96px;
}

.faq-intro > p {
  max-width: 500px;
  margin-top: 24px;
}

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

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

.faq-item summary {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary span {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

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

.faq-item p {
  max-width: 700px;
  margin: -4px 0 26px;
  color: var(--text-soft);
}

/* Contact */
.contact-section {
  padding: 128px 0 100px;
  border-bottom: 1px solid var(--line);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 72px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 12%, rgba(var(--accent-rgb), 0.09), transparent 24rem),
    linear-gradient(145deg, var(--panel-raised), var(--bg-soft) 72%);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.25rem);
}

.contact-copy > p {
  max-width: 580px;
  margin-top: 25px;
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.contact-direct a {
  display: flex;
  gap: 13px;
  align-items: center;
  width: fit-content;
  color: var(--text-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-direct a:hover {
  transform: translateX(4px);
  color: var(--text);
}

.contact-direct-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--accent);
  font-weight: 800;
}

.contact-direct small,
.contact-direct strong {
  display: block;
}

.contact-direct small {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct strong {
  color: inherit;
  font-size: 0.93rem;
}

.response-time {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 35px;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.contact-form {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(var(--bg-rgb), 0.48);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 49px;
  padding: 0 14px;
}

.field textarea {
  min-height: 145px;
  padding: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--line-strong);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(var(--accent-rgb), 0.55);
  background: rgba(var(--accent-rgb), 0.025);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.07);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: rgba(255, 142, 142, 0.7);
}

.field select {
  cursor: pointer;
}

.field select option {
  background: var(--panel-solid);
  color: var(--text);
}

.submit-button {
  width: 100%;
  margin-top: 3px;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  font-size: 0.85rem;
  text-align: center;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.form-privacy {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.74rem;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 0 0 27px;
}

.footer-main {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-main > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav {
    gap: 22px;
  }

  .project-card,
  .project-card-reverse {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .project-media {
    min-height: 390px;
  }

  .contact-shell {
    gap: 46px;
  }
}

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

  .section {
    padding: 98px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 77px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    transform: translateY(-14px) scale(0.98);
    transform-origin: top;
    border: 1px solid var(--line-strong);
    border-radius: 17px;
    background: rgba(10, 13, 18, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav > a:not(.nav-cta),
  .nav-cta {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 13px;
    border: 0;
    border-radius: 10px;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav > a:hover,
  .nav-cta:hover {
    background: rgba(var(--accent-rgb), 0.07);
    color: var(--text);
  }

  .hero {
    padding-top: 135px;
  }

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

  .section-heading,
  .process-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading p {
    max-width: 680px;
  }

  .project-card,
  .project-card-reverse {
    grid-template-columns: 1fr;
  }

  .project-card-reverse .project-media,
  .project-card-reverse .project-content {
    order: initial;
  }

  .project-media {
    min-height: 430px;
  }

  .audience-list {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .process-grid,
  .faq-grid {
    gap: 55px;
  }

  .process-intro {
    position: static;
  }

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

  .price-purpose {
    min-height: 0;
  }

  .price-card {
    padding: 36px;
  }

  .contact-shell {
    gap: 52px;
  }

  .contact-copy > p {
    max-width: 700px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .supplements-heading {
    display: block;
  }

  .supplements-heading p {
    margin-top: 12px;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .main-nav {
    top: 69px;
    right: 14px;
    left: 14px;
  }

  .hero {
    padding: 119px 0 28px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.7rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 11px;
  }

  .audience-strip {
    justify-content: flex-start;
    gap: 20px;
    margin-top: 54px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .audience-strip::-webkit-scrollbar {
    display: none;
  }

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

  .section-heading h2,
  .process-intro h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .project-card {
    border-radius: 21px;
  }

  .project-media {
    min-height: 280px;
  }

  .project-content {
    padding: 29px 24px 34px;
  }

  .price-card {
    padding: 27px 23px;
  }

  .process-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 29px 0;
  }

  .faq-item summary {
    gap: 14px;
    font-size: 1rem;
  }

  .contact-section {
    padding-bottom: 78px;
  }

  .contact-shell {
    gap: 43px;
    padding: 31px 20px;
    border-radius: 22px;
  }

  .contact-form {
    padding: 20px 15px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Pages légales */
.legal-page { padding: 150px 0 90px; }
.legal-container { max-width: 880px; }
.legal-container > h1 { margin: 14px 0 8px; font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: 1; letter-spacing: -0.055em; }
.legal-updated { margin: 0 0 52px; color: var(--text-muted); font-size: .85rem; }
.legal-container section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-container section h2 { margin: 0 0 16px; font-size: 1.25rem; }
.legal-container section p { max-width: 760px; margin: 0 0 14px; color: var(--text-soft); line-height: 1.75; }
.legal-container a, .form-privacy a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) { .legal-page { padding: 120px 0 65px; } .legal-updated { margin-bottom: 35px; } }
