﻿:root {
  --ink: #0f1722;
  --ink-soft: #4d5d73;
  --surface: #f4f8fc;
  --card: #ffffff;
  --line: #dbe5f0;
  --brand-a: #0ab8ff;
  --brand-b: #8b5cf6;
  --brand-c: #00d4a0;
  --cta: #0c4ef5;
  --cta-hover: #0a3fc5;
  --radius: 20px;
  --shadow: 0 18px 48px rgba(11, 38, 81, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 10%, rgba(10, 184, 255, 0.18), transparent 24%),
    radial-gradient(circle at 8% 22%, rgba(139, 92, 246, 0.12), transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, var(--surface) 45%, #eef4fb 100%);
  line-height: 1.5;
  overflow-x: clip;
}

.container {
  width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.12s; }
.reveal.delay-2 { animation-delay: 0.22s; }
.reveal.delay-3 { animation-delay: 0.32s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(236, 243, 251, 0.94);
  border-bottom: 1px solid rgba(189, 205, 222, 0.9);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  z-index: 20;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand img.brand-wordmark {
  width: auto;
  height: 15px;
  max-width: min(154px, 39vw);
  object-fit: contain;
  transform: translate(-11px, 2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #d0deee;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #2b3f59;
  border-radius: 2px;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  min-width: 0;
}

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

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid #d2deec;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fbff, #edf3fb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.language-switch {
  color: #5f7088;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.language-select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 999px;
  background-color: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  padding: 6px 24px 6px 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%235f7088' d='M1.2.7 5 4.3 8.8.7 10 1.8 5 6 0 1.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
}

.language-select:focus-visible {
  outline: 2px solid rgba(12, 78, 245, 0.35);
  outline-offset: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--cta);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--cta-hover);
}

.hero {
  padding: 70px 0 54px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.pathways {
  padding: 56px 0 24px;
}

.path-head {
  margin-bottom: 18px;
}

.path-head h2 {
  margin: 10px 0 8px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
}

.path-head p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 66ch;
}

#path-intro {
  max-width: 86ch;
  text-wrap: pretty;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.path-card {
  text-decoration: none;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid transparent;
  color: inherit;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 34px rgba(6, 35, 74, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.path-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(6, 35, 74, 0.18);
}

.path-card:focus-visible {
  outline: 3px solid rgba(12, 78, 245, 0.3);
  outline-offset: 3px;
}

.path-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  right: -50px;
  top: -60px;
  opacity: 0.75;
  pointer-events: none;
}

.path-card-customer {
  background: linear-gradient(155deg, #ffffff 0%, #ecf9ff 52%, #d8f5ff 100%);
  border-color: #bfe8f9;
}

.path-card-customer::after {
  background: radial-gradient(circle, rgba(10, 184, 255, 0.32), rgba(10, 184, 255, 0));
}

.path-card-salon {
  background: linear-gradient(150deg, #1b2f5f 0%, #1f2b79 46%, #2444b2 100%);
  border-color: rgba(255, 255, 255, 0.22);
  color: #eef5ff;
}

.path-card-salon::after {
  background: radial-gradient(circle, rgba(0, 212, 160, 0.42), rgba(0, 212, 160, 0));
}

.path-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  font-size: 0.74rem;
  opacity: 0.85;
}

.path-title {
  margin: 10px 0 8px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 1.58rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 24ch;
  text-wrap: pretty;
}

.path-copy {
  margin: 0;
  color: inherit;
  opacity: 0.88;
  max-width: 40ch;
}

.path-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
}

.path-card-customer .path-cta {
  background: #0c4ef5;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(12, 78, 245, 0.25);
}

.path-card-salon .path-cta {
  background: #e7f7ff;
  color: #1a2b60;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid #bfe0ff;
  border-radius: 999px;
  color: #0b68bd;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.7);
}

h1 {
  margin: 16px 0 14px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.hero p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 52ch;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(110deg, var(--cta), #5b34fb);
  color: #fff;
  box-shadow: 0 10px 24px rgba(64, 57, 210, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: #ccd9e8;
}

.hero-card {
  background: linear-gradient(175deg, #0f1f3f 0%, #111931 40%, #0f1630 100%);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 20px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -30% 35% auto -20%;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 212, 160, 0.3), rgba(0, 212, 160, 0));
  pointer-events: none;
}

.hero-card img {
  width: min(100%, 420px);
  display: block;
  margin: 12px auto 0;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.45));
  animation: floatLogo 4.8s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  color: #dfedff;
}

.stat strong {
  display: block;
  font-size: 1.05rem;
  font-family: "Space Grotesk", Manrope, sans-serif;
}

section {
  padding: 52px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-head p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  max-width: 64ch;
}

#features .section-head p,
#pricing .section-head p {
  max-width: 86ch;
  text-wrap: pretty;
}

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

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 22px rgba(6, 35, 74, 0.06);
}

.feature .icon {
  width: 60px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(140deg, rgba(10, 184, 255, 0.18), rgba(139, 92, 246, 0.18));
  color: #154088;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.feature h3 {
  margin: 0;
  font-size: 1.06rem;
}

.feature p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.module-card {
  position: relative;
  overflow: hidden;
}

.module-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  right: -44px;
  top: -56px;
  background: radial-gradient(circle, rgba(10, 184, 255, 0.2), rgba(10, 184, 255, 0));
  pointer-events: none;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(7, 44, 96, 0.14);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 22px rgba(6, 35, 74, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  display: grid;
  gap: 8px;
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.price {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(6, 35, 74, 0.06);
  position: relative;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.price.popular {
  border: 2px solid #4a63f7;
  box-shadow: 0 16px 34px rgba(27, 66, 176, 0.16);
}

.price:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(6, 35, 74, 0.12);
}

.price:focus-visible {
  outline: 3px solid rgba(12, 78, 245, 0.28);
  outline-offset: 3px;
}

.price.expanded {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 38px rgba(8, 43, 97, 0.2);
  border-color: #8fb3f8;
}

.price.popular.expanded {
  border-color: #3152f2;
}

.plan-hint {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.plan-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  width: 100%;
}

.plan-buy-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 69, 216, 0.3);
  overflow: hidden;
}

.plan-buy-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(112deg, #0b66ff, #5d44ff 58%, #11c0ff);
  z-index: -2;
}

.plan-buy-btn::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -40%;
  width: 32%;
  height: 120%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: planShine 3.2s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.plan-buy-btn:hover,
.plan-buy-btn:focus-visible {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 14px 28px rgba(18, 69, 216, 0.36);
  filter: saturate(1.06);
  outline: none;
}

.plan-buy-btn.plan-buy-premium::before {
  background: linear-gradient(112deg, #0f4fff, #6938ff 48%, #00c59a);
}

.plan-buy-btn.is-disabled,
.plan-buy-btn.is-disabled:hover,
.plan-buy-btn.is-disabled:focus-visible {
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  filter: grayscale(0.15);
  box-shadow: none;
  opacity: 0.72;
}

.plan-buy-btn.is-disabled::before {
  background: linear-gradient(112deg, #6b7280, #7c8799 58%, #93a0b3);
}

.plan-buy-btn.is-disabled::after {
  animation: none;
  opacity: 0;
}

@keyframes planShine {
  0% { left: -40%; opacity: 0; }
  18% { opacity: 1; }
  48% { left: 130%; opacity: 0.9; }
  100% { left: 130%; opacity: 0; }
}

.plan-list {
  margin-top: 14px;
  display: none;
}

.price.expanded .plan-list {
  display: grid;
}

.plan-item {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.bullet-toggle {
  width: 100%;
  background: #f7fbff;
  border: 1px solid #d7e4f3;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
  font: inherit;
  color: #1a2a3f;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bullet-toggle > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  line-height: 1.25;
}

.bullet-toggle:hover,
.bullet-toggle:focus-visible {
  border-color: #8fb3f8;
  background: #eef6ff;
  outline: none;
}

.bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #dcecff;
  color: #2257c8;
  display: inline-grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
}

.plan-item.open .bullet-icon {
  background: #2257c8;
  color: #ffffff;
}

.bullet-detail {
  margin: 8px 2px 0;
  padding: 0 10px 2px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  display: none;
}

.plan-item.open .bullet-detail {
  display: block;
}

.chip {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(120deg, #1758ff, #6a43ff);
  padding: 5px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price h3 {
  margin: 0 0 6px;
  font-size: 1.16rem;
}

.price .amount {
  margin: 0;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.price .amount .amount-period {
  font-family: Manrope, sans-serif;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 700;
  margin-left: 6px;
}

.testimonial {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 22px rgba(6, 35, 74, 0.06);
}

.testimonial p {
  margin: 0;
  color: #223247;
}

.testimonial footer {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.faq-item {
  border-top: 1px solid #d6e3ef;
  padding: 14px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #d6e3ef;
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
}

.cta-band {
  margin: 56px 0;
  background: linear-gradient(135deg, #09285c, #1a3378 52%, #0f6f9f 100%);
  color: #eef6ff;
  border-radius: 28px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  right: -70px;
  top: -130px;
  background: radial-gradient(circle, rgba(10, 184, 255, 0.36), rgba(10, 184, 255, 0));
}

.cta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  position: relative;
  z-index: 1;
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(238, 246, 255, 0.88);
  max-width: 74ch;
  text-wrap: pretty;
  position: relative;
  z-index: 1;
}

.cta-band .btn-primary {
  margin-top: 18px;
  position: relative;
  z-index: 1;
  background: linear-gradient(115deg, #0ab8ff, #00d4a0);
  color: #0d1f3f;
  font-weight: 800;
}

.cta-band .btn-primary.is-loading {
  opacity: 0.82;
}

.cta-status {
  margin: 10px 0 0;
  min-height: 22px;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 0.92rem;
}

.cta-status.success {
  color: #d2ffe8;
}

.cta-status.info {
  color: #d9ecff;
}

.cta-status.error {
  color: #ffd8d8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfddee;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #f9fcff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 124px;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(12, 78, 245, 0.35);
  outline-offset: 1px;
  border-color: #7ca6f3;
}

.contact-form .btn {
  width: fit-content;
}

.contact-status {
  margin: 2px 0 0;
  min-height: 22px;
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-status.success {
  color: #0a7a4b;
}

.contact-status.info {
  color: #255cc7;
}

.contact-status.error {
  color: #a12020;
}

.contact-note {
  margin: 2px 0 0;
  color: #5a6b82;
  font-size: 0.88rem;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

footer {
  border-top: 1px solid #d6e2f0;
  padding: 26px 0 50px;
  color: #63728a;
  font-size: 0.92rem;
}

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

@media (max-width: 980px) {
  .hero,
  .path-grid,
  .grid-3,
  .two-col,
  .pricing,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-card {
    min-height: 0;
  }

  .hero-card img {
    width: min(100%, 320px);
  }

  .pathways {
    padding-top: 34px;
  }

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

@media (max-width: 640px) {
  header {
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 16px 0;
  }

  .nav {
    position: relative;
    z-index: 210;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img.brand-wordmark {
    max-width: min(127px, 32vw);
  }

  .nav-menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 220;
    display: none;
    background: rgba(252, 254, 255, 0.98);
    border: 1px solid #d7e4f2;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 18px 38px rgba(7, 30, 69, 0.14);
    backdrop-filter: blur(10px);
  }

  .nav-links.open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #d7e4f2;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: left;
    background: rgba(255, 255, 255, 0.85);
    min-height: 42px;
    font-size: 0.9rem;
  }

  .language-picker {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
  }

  section {
    padding: 40px 0;
  }

  .path-card {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .path-title {
    font-size: 1.28rem;
    max-width: none;
  }

  .hero {
    gap: 20px;
    padding: 30px 0 20px;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .feature,
  .card,
  .price {
    padding: 16px;
    border-radius: 16px;
  }

  .price .amount {
    font-size: 1.65rem;
  }

  .chip {
    position: static;
    display: inline-flex;
    margin-bottom: 10px;
  }

  .plan-buy-btn {
    width: 100%;
  }

  .cta-band {
    padding: 26px;
    border-radius: 20px;
  }

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

  .contact-form .btn {
    width: 100%;
  }

  .cta-band::after {
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
  }

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

@media (max-width: 420px) {
  .container {
    width: calc(100vw - 1.2rem);
  }

  .language-picker {
    padding: 8px 10px;
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .path-copy,
  .feature p,
  .section-head p,
  .faq-item p {
    font-size: 0.9rem;
  }

  .cta-band {
    padding: 20px;
  }
}

