:root {
  --bg: #0b1120;
  --bg-soft: #0f172a;
  --card: #131c30;
  --card-2: #1a2438;
  --line: #1e293b;
  --line2: #27344a;
  --txt: #f1f5f9;
  --muted: #94a3b8;
  --soft: #64748b;
  --cyan: #14b8a6;
  --cyan-soft: #0e8c7e;
  --gold: #f5c451;
  --violet: #0e8c7e;
  --green: #14b8a6;
  --ink-dark: #04201c;
  --radius: 18px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --font-h: "Space Grotesk", sans-serif;
  --font-b: "Inter", sans-serif;
}
::selection {
  background: var(--cyan);
  color: var(--ink-dark);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.logo {
  font-family: var(--font-h);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1140px, 92%);
  margin: 0 auto;
}
.accent {
  color: var(--cyan);
}
.gold {
  color: var(--gold);
}

/* ********* ADD ******** */
.qr-iframe-wrap {
  width: 100%;
  height: 550px;  
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05); 
}

.qr-iframe-wrap iframe {
  width: 142.85%; /* 100/0.7 if scale is 0.7 */
  height: 142.85%;
  transform: scale(0.7);
  transform-origin: 0 0;
  border: 0;
}

.logo-hotel {
  width: 100%;
  border-radius: 12px;
}
.logo-img {
  max-width: 100%;
  border-radius: 12px;
}

.parsley-error {
  border-color: #dc3545 !important;
}

/* Champ valide */
.parsley-success {
  border-color: #28a745 !important;
}

/* Liste d'erreurs */
.parsley-errors-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
}

/* Message d'erreur */
.parsley-errors-list li {
  color: #dc3545;
  font-size: 13px;
}

/* ---------- BACKDROP GLOW ---------- */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.glow.a {
  width: 520px;
  height: 520px;
  background: #1d4ed8;
  top: -160px;
  right: -120px;
}
.glow.b {
  width: 480px;
  height: 480px;
  background: #0e7490;
  bottom: -200px;
  left: -160px;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 15, 31, 0.72);
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo,
.logo-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
}
.logo-mini .mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--txt);
  color: #04201c;
  font-weight: 700;
}
.logo .mark {
  width: 150px;
  height: 150px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--txt);
  color: #04201c;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--txt);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.2s;
}
.nav-links a:hover {
  color: var(--txt);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-b);
  font-weight: 600;
  border-radius: 100px;
  padding: 13px 24px;
  font-size: 0.98rem;
  transition: 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: var(--ink-dark);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -10px rgba(20, 184, 166, 0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--line2);
  color: var(--txt);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}
.nav-cta {
  display: inline-flex;
}

/* BURGER BUTTON — hidden on desktop */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Animated X when open */
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: linear-gradient(160deg, var(--card), var(--card-2));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .nav-links.open {
    max-height: 400px;
    padding: 1rem 0 1.5rem;
  }

  .nav-links a {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }

  .nav-links .nav-cta {
    margin: 0.75rem 1.5rem 0;
    width: calc(100% - 3rem);
    text-align: center;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  z-index: 1;
  padding: 84px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: var(--cyan);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
  transition: 0.25s;
}

.badge:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, 0.4);
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-stats div span {
  display: block;
}
.hero-stats .num {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--txt);
}
.hero-stats .lbl {
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-micro {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--soft);
  letter-spacing: 0.01em;
}

/* QR visual */
.qr-card {
  background: linear-gradient(160deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.qr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(20, 184, 166, 0.07));
  pointer-events: none;
}
.qr-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.qr-top .dot {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--txt);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #04201c;
  font-family: var(--font-h);
}
.qr-top b {
  display: block;
  font-size: 1rem;
}
.qr-top small {
  color: var(--muted);
}
.qr-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.qr-box svg {
  width: 100%;
  height: auto;
  max-width: 200px;
}
.scanline {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 14px var(--cyan);
  animation: scan 2.6s ease-in-out infinite;
}
@keyframes scan {
  0%,
  100% {
    top: 20px;
  }
  50% {
    top: calc(100% - 20px);
  }
}
.lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.chip.on {
  background: rgba(20, 184, 166, 0.14);
  border-color: rgba(20, 184, 166, 0.4);
  color: var(--cyan);
}
/* ---------- LINK-IN-BIO MOCK ---------- */
.link-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 9px 10px 9px 14px;
  margin-bottom: 16px;
}
.link-bar .link-url {
  flex: 1;
  font-family: var(--font-h);
  font-size: 0.9rem;
  color: var(--txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.link-bar .link-copy {
  flex: 0 0 auto;
  background: var(--cyan);
  color: var(--ink-dark);
  border: none;
  border-radius: 8px;
  padding: 7px 13px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.15s;
}
.link-bar .link-copy:hover {
  filter: brightness(1.07);
}
.link-bar .link-copy.copied {
  background: var(--green);
}
.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}
.link-item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--txt);
  transition: 0.18s;
  cursor: pointer;
}
.link-item:hover {
  border-color: var(--cyan);
  transform: translateX(3px);
}
.qr-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px dashed var(--line2);
  padding-top: 16px;
}
.qr-foot .qr-mini {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  display: grid;
  place-items: center;
}
.qr-foot .qr-mini svg {
  width: 100%;
  height: auto;
}
.qr-foot span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ---------- SECTIONS ---------- */
section {
  position: relative;
  z-index: 1;
  padding: 74px 0;
}
.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.sec-tag::before,
.sec-tag::after {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}
.sec-tag::after {
  transform: scaleX(-1);
}
.sec-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}
.sec-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* WHAT IS — rich text */
.about {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.about-text p strong {
  color: var(--txt);
}
.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-points .pt {
  display: flex;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  transition: 0.25s;
}
.about-points .pt .ic {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(20, 184, 166, 0.12);
  font-size: 1.3rem;
}
.about-points .pt b {
  display: block;
  margin-bottom: 3px;
}
.about-points .pt span {
  color: var(--muted);
  font-size: 0.93rem;
}

.about-points .pt:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 184, 166, 0.4);
}

/* FEATURES */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat {
  background: linear-gradient(160deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: 0.25s;
}
.feat:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 184, 166, 0.4);
}
.feat .ic {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(20, 184, 166, 0.14);
  margin-bottom: 16px;
}
.feat h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.feat p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* AUDIENCE */
.aud {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.aud-card {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px;
  transition: 0.25s;
}
.aud-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 196, 81, 0.4);
}
.aud-card .emo {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.aud-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.aud-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: s;
}
.step {
  position: relative;
  background: linear-gradient(160deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: 0.25s;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 184, 166, 0.4);
}

.step::before {
  counter-increment: s;
  content: counter(s);
  position: absolute;
  top: -18px;
  left: 26px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #04201c;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.2rem;
}
.step h3 {
  margin: 14px 0 8px;
  font-size: 1.2rem;
}
.step p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* PRICING */
.pricing {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.toggle span {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.98rem;
  transition: 0.2s;
}
.toggle span.active {
  color: var(--txt);
}
.switch {
  position: relative;
  width: 62px;
  height: 34px;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s;
}
.switch .knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
  transition: 0.25s;
}
.switch.on {
  background: rgba(20, 184, 166, 0.25);
  border-color: rgba(20, 184, 166, 0.5);
}
.switch.on .knob {
  left: 31px;
}
.save-note {
  text-align: center;
  color: var(--green);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 36px;
}
.commit-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: linear-gradient(160deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.25s;
}
.plan:hover {
  transform: translateY(-6px);
}
.plan.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 30px 60px -25px rgba(20, 184, 166, 0.5);
}
.plan .ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #04201c;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.plan h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.plan .desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
  min-height: 42px;
}
.plan .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan .price .amt {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 700;
}
.plan .price .cur {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}
.plan .price .per {
  color: var(--muted);
  font-size: 0.95rem;
}
.plan .price-sub {
  color: var(--muted);
  font-size: 0.85rem;
  min-height: 20px;
  margin-bottom: 22px;
}
.plan ul {
  list-style: none;
  margin-bottom: 26px;
  flex: 1;
}
.plan li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 0.96rem;
  border-bottom: 1px solid var(--line);
}
.plan li:last-child {
  border-bottom: none;
}
.plan li .ck {
  flex: 0 0 auto;
  color: var(--cyan);
  font-weight: 700;
  margin-top: 1px;
}
.plan li .ck.gold {
  color: var(--gold);
}
.plan .btn {
  width: 100%;
}

/* FORM */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--txt);
}
.field label .req {
  color: var(--cyan);
}
.field label .opt {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.82rem;
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  color: var(--txt);
  font-family: var(--font-b);
  font-size: 0.98rem;
  transition: 0.2s;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #5e7099;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%239fb0d4' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.plan-pick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.plan-pick label {
  cursor: pointer;
}
.plan-pick input {
  display: none;
}
.plan-pick .opt-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  transition: 0.2s;
  background: var(--bg);
}
.plan-pick .opt-card b {
  display: block;
  font-size: 0.98rem;
}
.plan-pick .opt-card small {
  color: var(--muted);
  font-size: 0.82rem;
}
.plan-pick input:checked + .opt-card {
  border-color: var(--cyan);
  background: rgba(20, 184, 166, 0.1);
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.3);
}
.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}
.consent input {
  margin-top: 4px;
  accent-color: var(--cyan);
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}
.form-msg {
  display: none;
  padding: 15px 18px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-msg.ok {
  display: block;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--green);
}
.form-msg.err {
  display: block;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #f87171;
}

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
  position: relative;
  z-index: 1;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.foot-grid .col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
}
.foot-grid .col a {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 5px 0;
  transition: 0.2s;
}
.foot-grid .col a:hover {
  color: var(--cyan);
}
.foot-brand {
  max-width: 280px;
}
.foot-brand p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 12px;
}
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}
.foot-tc {
  max-width: 260px;
}
.foot-tc .tc-name {
  color: var(--txt);
  font-weight: 600;
  font-size: 0.96rem;
  margin-bottom: 6px;
}
.foot-tc .tc-line {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aud-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps,
  .plans {
    grid-template-columns: 1fr;
  }
  .plan.featured {
    order: -1;
  }
}
@media (max-width: 680px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .plan-pick {
    grid-template-columns: 1fr;
  }
  .form-wrap {
    padding: 26px 20px;
  }
  .hero-stats {
    gap: 22px;
  }
}
