/* =============================================
   Moovv for Physios — Landing Page Styles
   Brand tokens mirrored from moovvfit-landing
   ============================================= */

/* Font Faces */
@font-face {
  font-family: 'Lufga';
  src: url('../fonts/Lufga-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lufga';
  src: url('../fonts/Lufga-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lufga';
  src: url('../fonts/Lufga-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-VariableFont_wdth_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  --brand-blue: #4069FF;
  --bg-dark-1: #07060D;
  --bg-dark-2: #182132;
  --bg-dark-3: #1B2C6A;
  --bg-dark-4: #090A12;
  --bg-dark-5: #202C59;
  --cta-blue: #4069FF;

  --white-100: #FFFFFF;
  --white-80: rgba(255, 255, 255, 0.80);
  --white-60: rgba(255, 255, 255, 0.60);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-10: rgba(255, 255, 255, 0.10);
  --white-4: rgba(255, 255, 255, 0.04);

  --success-green: #10B981;
  --pain-red: #EF4444;

  --font-heading: 'Lufga', sans-serif;
  --font-body: 'Noto Sans', sans-serif;

  --container-max: 1280px;
  --section-padding: 80px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-100);
  background: var(--bg-dark-1);
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding) 0;
}

section[hidden] {
  display: none;
}

/* Shared typography */
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--white-60);
  font-size: 18px;
  margin-bottom: 48px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--cta-blue);
  color: var(--white-100);
  box-shadow: 0 8px 24px rgba(64, 105, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(64, 105, 255, 0.45);
}

.btn-secondary {
  background: var(--white-10);
  color: var(--white-100);
  border: 1px solid var(--white-15);
}

.btn-secondary:hover {
  background: var(--white-15);
  transform: translateY(-2px);
}

/* Glass panel */
.glass-panel {
  background: linear-gradient(135deg, rgba(27, 44, 106, 0.35) 0%, rgba(24, 33, 50, 0.55) 100%);
  border: 1px solid var(--white-10);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Media placeholders */
.media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border: 2px dashed var(--white-15);
  border-radius: 24px;
  background: var(--white-4);
  color: var(--white-60);
  font-family: var(--font-heading);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

.media-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.6;
}

.media-placeholder--video {
  aspect-ratio: 16 / 10;
}

.media-placeholder--tall {
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin: 0 auto;
}

.media-placeholder--wide {
  aspect-ratio: 16 / 10;
}

.media-placeholder--step {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 13px;
}

/* =============================================
   Navigation
   ============================================= */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1280px;
  padding: 12px 24px;
  border-radius: 60px;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: linear-gradient(135deg, rgba(27, 44, 106, 0.7) 0%, rgba(32, 44, 89, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-logo-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  border: 1px solid rgba(64, 105, 255, 0.5);
  border-radius: 60px;
  padding: 3px 10px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--white-80);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white-100);
}

.nav-links a.nav-login {
  color: var(--white-100);
  border: 1px solid var(--white-15);
  border-radius: 60px;
  padding: 8px 20px;
}

.nav-links a.nav-login:hover {
  background: var(--white-10);
}

.btn-nav-cta {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  background: var(--cta-blue);
  color: var(--white-100);
  padding: 10px 22px;
  border-radius: 60px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(64, 105, 255, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white-100);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(27, 44, 106, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(64, 105, 255, 0.18) 0%, transparent 70%),
    var(--bg-dark-1);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--white-80);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 13px;
  color: var(--white-60);
}

/* =============================================
   Social proof strip
   ============================================= */
.proof-strip {
  padding: 0 0 40px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  padding: 32px 24px;
}

.proof-item {
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--white-100);
  margin-bottom: 4px;
}

.proof-item span {
  font-size: 14px;
  color: var(--white-60);
}

/* =============================================
   Features
   ============================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(64, 105, 255, 0.4);
}

.panel-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(64, 105, 255, 0.15);
  color: var(--brand-blue);
  margin-bottom: 20px;
}

.panel-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--white-60);
}

/* =============================================
   Grow / Clinics split sections
   ============================================= */
.grow {
  background: linear-gradient(180deg, transparent 0%, rgba(24, 33, 50, 0.5) 50%, transparent 100%);
}

.grow-layout,
.clinics-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.grow-copy > p,
.clinics-copy > p {
  font-size: 17px;
  color: var(--white-80);
  margin-bottom: 28px;
  max-width: 560px;
}

.grow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.grow-list li {
  position: relative;
  padding-left: 34px;
}

.grow-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.grow-list strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
}

.grow-list span {
  font-size: 15px;
  color: var(--white-60);
}

/* =============================================
   How it works
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  position: relative;
}

.step-number {
  position: absolute;
  top: -14px;
  left: 16px;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cta-blue);
  color: var(--white-100);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(64, 105, 255, 0.4);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--white-60);
}

/* =============================================
   Pricing
   ============================================= */
.pricing {
  background: linear-gradient(180deg, transparent 0%, rgba(24, 33, 50, 0.5) 50%, transparent 100%);
}

.currency-toggle {
  display: inline-flex;
  gap: 4px;
  background: var(--white-4);
  border: 1px solid var(--white-10);
  border-radius: 60px;
  padding: 4px;
  margin-bottom: 40px;
}

.currency-btn {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--white-60);
  background: transparent;
  border: none;
  border-radius: 60px;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.currency-btn.active {
  background: var(--cta-blue);
  color: var(--white-100);
}

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

.pricing-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
}

.pricing-card--featured {
  border-color: rgba(64, 105, 255, 0.6);
  box-shadow: 0 16px 48px rgba(64, 105, 255, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-blue);
  color: var(--white-100);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 60px;
  padding: 5px 14px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--white-60);
  margin-bottom: 24px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.price {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
}

.pricing-period {
  font-size: 14px;
  color: var(--white-60);
}

.pricing-min {
  font-size: 14px;
  color: var(--white-60);
  margin: -12px 0 24px;
}

.pricing-min span {
  color: var(--white-80);
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--white-80);
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234069FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pricing-cta {
  width: 100%;
}

.pricing-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--white-60);
}

/* =============================================
   Clinic chains marquee
   ============================================= */
.chains-strip {
  padding: 40px 0;
}

.chains-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-60);
  text-align: center;
  margin-bottom: 28px;
}

.chains-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.chains-track {
  display: flex;
  width: max-content;
  animation: chains-scroll 30s linear infinite;
}

.chains-marquee:hover .chains-track {
  animation-play-state: paused;
}

.chains-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

@keyframes chains-scroll {
  to {
    transform: translateX(-50%);
  }
}

.chain-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 72px;
  border: 2px dashed var(--white-15);
  border-radius: 16px;
  background: var(--white-4);
  color: var(--white-60);
  font-family: var(--font-heading);
  font-size: 13px;
  flex-shrink: 0;
}

.chain-tile img {
  max-height: 44px;
  max-width: 140px;
  object-fit: contain;
}

/* =============================================
   Testimonials
   ============================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card > p {
  font-size: 15px;
  color: var(--white-80);
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white-10);
  border: 2px dashed var(--white-15);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--white-60);
}

/* =============================================
   FAQ
   ============================================= */
.faq-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 840px;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: var(--white-100);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
}

.faq-number {
  color: var(--brand-blue);
  flex-shrink: 0;
}

.faq-text {
  flex-grow: 1;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--white-60);
  transition: transform 0.25s ease;
}

.faq-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 32px 22px;
  color: var(--white-60);
  font-size: 15px;
}

/* =============================================
   CTA / Onboarding form
   ============================================= */
.cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(27, 44, 106, 0.6) 0%, transparent 70%),
    transparent;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-subtitle {
  color: var(--white-60);
  font-size: 17px;
  margin-bottom: 40px;
}

.onboard-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.onboard-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.onboard-form label > span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--white-80);
}

.onboard-form input,
.onboard-form select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white-100);
  background: var(--white-4);
  border: 1px solid var(--white-15);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  appearance: none;
}

.onboard-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.onboard-form select option {
  background: var(--bg-dark-2);
  color: var(--white-100);
}

.onboard-form input::placeholder {
  color: var(--white-60);
}

.onboard-form input:focus,
.onboard-form select:focus {
  border-color: var(--brand-blue);
  background: var(--white-10);
}

.btn-form-submit {
  align-self: center;
  min-width: 240px;
  margin-top: 8px;
}

.form-agreement {
  text-align: center;
  font-size: 13px;
  color: var(--white-60);
}

.form-success {
  padding: 48px 24px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--white-60);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  border-top: 1px solid var(--white-10);
  padding: 56px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white-80);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white-100);
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: var(--white-60);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--white-100);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

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

@media (max-width: 1100px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: linear-gradient(135deg, rgba(27, 44, 106, 0.95) 0%, rgba(24, 33, 50, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: 24px;
    padding: 16px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--white-10);
  }

  .nav-links a.nav-login {
    border: none;
    padding: 12px 16px;
  }

  .btn-nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  .hero-layout,
  .grow-layout,
  .clinics-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .clinics-media {
    order: 2;
  }

  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 56px;
  }

  .hero {
    padding: 120px 0 56px;
  }

  .feature-grid,
  .steps-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-logo-tag {
    display: none;
  }
}
