/* =========================================================
   ОрендаПро — Landing styles (extends style.css)
   Mobile-first. Breakpoints: 480, 768, 1024, 1280
   ========================================================= */

/* ---------- HEADER ---------- */
.l-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(242, 244, 248, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(228, 231, 238, 0.6);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.l-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.l-logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--color-accent);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-accent);
}
.l-nav {
  display: flex;
  gap: 32px;
}
.l-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: color 150ms;
}
.l-nav a:hover {
  color: var(--color-text-primary);
}
.l-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Burger (mobile menu trigger) */
.l-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: white;
  border: 1px solid var(--color-border);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.l-burger svg { width: 20px; height: 20px; color: var(--color-text-primary); }

#menu-toggle { display: none; }
.l-mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 16px;
  right: 16px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 49;
  flex-direction: column;
  gap: 4px;
}
.l-mobile-menu a {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  border-radius: var(--radius-md);
}
.l-mobile-menu a:hover { background: var(--color-bg-subtle); }
.l-mobile-menu hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 12px 0;
}
#menu-toggle:checked ~ .l-mobile-menu { display: flex; }

/* ---------- HERO ---------- */
.l-hero {
  position: relative;
  background: linear-gradient(135deg, #1A2332 0%, #243048 60%, #2D3E5A 100%);
  color: white;
  padding: 80px 0 120px;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  margin-bottom: 0;
}
.l-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 39, 0.35) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.l-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
  pointer-events: none;
}
.l-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: center;
}
.l-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}
.l-hero__pill .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 0 12px rgba(255, 91, 39, 0.6);
}
.l-hero h1 {
  color: white;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.l-hero h1 .accent { color: var(--color-accent); }
.l-hero .lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-bottom: 36px;
}
.l-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.l-hero__cta .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.l-hero__cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}
.l-hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.l-hero__avatars { display: flex; }
.l-hero__avatars span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #1A2332;
  margin-left: -12px;
  background-size: cover;
}
.l-hero__avatars span:first-child { margin-left: 0; }
.l-hero__avatars span:nth-child(1) { background: linear-gradient(135deg, #FFD4B8, #FF8C66); }
.l-hero__avatars span:nth-child(2) { background: linear-gradient(135deg, #C2A8FF, #FF8AC2); }
.l-hero__avatars span:nth-child(3) { background: linear-gradient(135deg, #B8E6FF, #5B9DFF); }
.l-hero__avatars span:nth-child(4) { background: linear-gradient(135deg, #B8FFD4, #22C063); }
.stars-row {
  display: inline-flex;
  gap: 2px;
  color: var(--color-accent);
}
.l-hero__trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
.l-hero__trust-text strong { color: white; font-weight: 700; }

/* Hero visual — phone scaled */
.l-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.l-hero__visual .phone {
  transform: rotate(-3deg);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.l-hero__visual .phone:hover { transform: rotate(0deg) translateY(-6px); }
.l-hero__visual .floating-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(4deg);
  z-index: 5;
  max-width: 240px;
}
.l-hero__visual .floating-card .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-success-bg);
  color: var(--color-success-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.l-hero__visual .floating-card .t { font-size: 13px; font-weight: 700; color: var(--color-text-primary); }
.l-hero__visual .floating-card .s { font-size: 11px; color: var(--color-text-hint); }

.l-hero__visual .floating-card-2 {
  position: absolute;
  top: 40px;
  right: -20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
  z-index: 5;
  min-width: 180px;
}
.l-hero__visual .floating-card-2 .label { font-size: 11px; color: var(--color-text-hint); }
.l-hero__visual .floating-card-2 .value { font-size: 22px; font-weight: 800; color: var(--color-text-primary); letter-spacing: -0.02em; line-height: 1.1; }
.l-hero__visual .floating-card-2 .trend { font-size: 11px; color: var(--color-success-text); font-weight: 700; }

/* ---------- LOGOS STRIP ---------- */
.l-logos {
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}
.l-logos__label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-hint);
  margin-bottom: 24px;
}
.l-logos__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0.55;
}
.l-logos__row span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-secondary);
}

/* ---------- SECTION ---------- */
.l-section {
  padding: 100px 0;
  background: white;
}
.l-section--gray { background: var(--color-bg-subtle); }
.l-section--no-pad-top { padding-top: 0; }

.l-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.l-section__head--left { text-align: left; margin: 0 0 48px; }
.l-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-accent-light);
  color: var(--color-accent-text);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.l-section__head h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.l-section__head p {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ---------- PAINS ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(228, 231, 238, 0.6);
  transition: all 200ms;
}
.l-section--gray .pain-card { background: white; }
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pain-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.pain-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ---------- HOW IT WORKS / STEPS ---------- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: white;
  padding: 32px 26px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(228, 231, 238, 0.6);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  font-weight: 800;
  font-size: 17px;
  box-shadow: var(--shadow-accent);
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* ---------- FEATURES ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(228, 231, 238, 0.6);
  transition: all 200ms;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Featured tags inside cards */
.feature-card__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  background: var(--color-bg-subtle);
  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

/* ---------- PRICING ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  transition: all 200ms;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 30px 60px -20px rgba(255, 91, 39, 0.3);
}
.price-card.featured::before {
  content: 'НАЙПОПУЛЯРНІШЕ';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}
.price-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}
.price-amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--color-text-primary);
  white-space: nowrap;
}
.price-amount .per {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-hint);
}
.price-desc {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.5;
  min-height: 63px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.price-features li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  align-items: flex-start;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-bg-subtle);
}
.price-features li:last-child { border-bottom: none; }
.price-features li svg {
  width: 18px;
  height: 18px;
  color: var(--color-success-text);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- TESTIMONIALS ---------- */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(228, 231, 238, 0.6);
}
.test-card .stars-row { margin-bottom: 18px; }
.test-card .quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}
.test-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-card__author .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.test-card__author .av-1 { background: linear-gradient(135deg, #FFD4B8, #FF8C66); }
.test-card__author .av-2 { background: linear-gradient(135deg, #C2A8FF, #FF8AC2); }
.test-card__author .av-3 { background: linear-gradient(135deg, #B8E6FF, #5B9DFF); }
.test-card__author .name { font-size: 14px; font-weight: 700; color: var(--color-text-primary); }
.test-card__author .role { font-size: 12px; color: var(--color-text-hint); }

/* ---------- FAQ ---------- */
.l-faq {
  max-width: 760px;
  margin: 0 auto;
}
.l-faq-item {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(228, 231, 238, 0.6);
  overflow: hidden;
}
.l-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.l-faq-q::-webkit-details-marker { display: none; }
.l-faq-q::after {
  content: '';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg-subtle);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F1923' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: all 200ms;
}
.l-faq-item[open] .l-faq-q::after {
  background-color: var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}
.l-faq-a {
  padding: 0 26px 22px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* ---------- CTA BANNER ---------- */
.l-cta-section {
  padding: 60px 0 100px;
  background: white;
}
.l-cta {
  background: linear-gradient(135deg, #FF5B27 0%, #FF7A50 100%);
  border-radius: 32px;
  padding: 84px 60px;
  text-align: center;
  color: white;
  box-shadow: 0 30px 80px -20px rgba(255, 91, 39, 0.4);
  position: relative;
  overflow: hidden;
}
.l-cta::before,
.l-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.l-cta::before { width: 360px; height: 360px; top: -180px; right: -120px; }
.l-cta::after { width: 240px; height: 240px; bottom: -120px; left: -60px; }
.l-cta > * { position: relative; z-index: 1; }
.l-cta .l-eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  backdrop-filter: blur(10px);
}
.l-cta h2 {
  color: white;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.l-cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 36px;
}
.l-cta .btn-white {
  background: white;
  color: var(--color-accent);
  padding: 16px 36px;
  font-size: 16px;
  min-height: 56px;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 200ms;
  text-decoration: none;
}
.l-cta .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}
.l-cta__sub {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- FOOTER ---------- */
.l-footer {
  background: var(--color-nav-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
  border-radius: 40px 40px 0 0;
  position: relative;
}
.l-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.l-footer__brand .l-logo {
  color: white;
}
.l-footer__brand p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.l-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.l-footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 150ms;
}
.l-footer__socials a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}
.l-footer h5 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.l-footer__col a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 150ms;
}
.l-footer__col a:hover { color: white; }
.l-footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.l-footer__bottom .heart { color: var(--color-accent); }

/* =========================================================
   RESPONSIVE — adapt for tablets and phones
   ========================================================= */

/* Large desktop and below: tighten hero */
@media (max-width: 1280px) {
  .l-hero { padding: 70px 0 110px; }
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .l-section { padding: 80px 0; }

  .l-hero { padding: 60px 0 100px; }
  .l-hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: left;
  }
  .l-hero .lead { max-width: 100%; }
  .l-hero__visual { transform: scale(0.95); }
  .l-hero__visual .floating-card { left: 0; }
  .l-hero__visual .floating-card-2 { right: 0; }

  .pain-grid,
  .feature-grid,
  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .price-card { padding: 32px 24px; }
  .price-amount { font-size: 40px; }

  .l-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }
  .l-footer__brand { grid-column: 1 / -1; }
}

/* Mobile + small tablet (≤ 768px) */
@media (max-width: 768px) {
  .l-nav { display: none; }
  .l-header__cta .btn-secondary { display: none; }
  .l-burger { display: inline-flex; }

  .l-hero {
    padding: 48px 0 80px;
    border-radius: 0 0 32px 32px;
  }
  .l-hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .l-hero .lead { font-size: 16px; margin-bottom: 28px; }
  .l-hero__cta .btn { flex: 1; min-width: 0; }
  .l-hero__trust { gap: 12px; }
  .l-hero__visual { transform: scale(0.85); margin: 20px 0 -40px; }
  .l-hero__visual .floating-card { display: none; }
  .l-hero__visual .floating-card-2 { display: none; }

  .l-section { padding: 64px 0; }
  .l-section__head { margin-bottom: 48px; }

  .pain-grid,
  .feature-grid,
  .test-grid,
  .step-grid,
  .price-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .price-card.featured {
    transform: none;
    order: -1;
  }
  .pain-card,
  .step-card,
  .feature-card,
  .test-card { padding: 28px 24px; }

  .l-cta {
    padding: 60px 28px;
    border-radius: 28px;
  }
  .l-cta-section { padding: 40px 0 64px; }

  .l-footer {
    padding: 60px 0 24px;
    border-radius: 32px 32px 0 0;
  }
  .l-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    padding-bottom: 40px;
  }
  .l-footer__brand { grid-column: 1 / -1; }
  .l-footer__bottom { justify-content: center; text-align: center; }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .l-header { padding: 12px 0; }
  .l-logo { font-size: 16px; }
  .l-logo__mark { width: 34px; height: 34px; font-size: 16px; }
  .l-header__cta .btn { padding: 10px 18px; font-size: 13px; min-height: 42px; }

  .l-hero { padding: 36px 0 72px; }
  .l-hero__pill { font-size: 11px; padding: 5px 12px 5px 5px; }
  .l-hero h1 { font-size: clamp(30px, 9vw, 40px); margin-bottom: 18px; }
  .l-hero .lead { font-size: 15px; }
  .l-hero__cta { gap: 10px; }
  .l-hero__cta .btn { padding: 14px 20px; font-size: 14px; }

  .l-section { padding: 56px 0; }
  .l-section__head h2 { font-size: clamp(26px, 8vw, 34px); }
  .l-section__head p { font-size: 15px; }

  .pain-card,
  .step-card,
  .feature-card,
  .test-card,
  .price-card { padding: 24px 20px; }

  .price-amount { font-size: 38px; }

  .l-cta {
    padding: 48px 22px;
    border-radius: 24px;
  }
  .l-cta h2 { font-size: clamp(26px, 8vw, 36px); }
  .l-cta p { font-size: 15px; }
  .l-cta .btn-white { padding: 14px 28px; font-size: 15px; min-height: 52px; }

  .l-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .l-faq-q { padding: 18px 20px; font-size: 15px; }
  .l-faq-a { padding: 0 20px 18px; font-size: 14px; }
}

/* ---------- PRE-LAUNCH: BADGE + WAITLIST FORM ---------- */
.l-logo__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  background: var(--color-accent-light);
  border-radius: var(--radius-pill);
  margin-left: 2px;
  white-space: nowrap;
}

.l-waitlist-form {
  margin-top: 24px;
  max-width: 540px;
}
.l-waitlist-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
}
.l-waitlist-form__row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.l-waitlist-form__row .form-input {
  flex: 1 1 auto;
  min-width: 0;
  background: #fff;
  border-color: var(--color-border);
}
.l-waitlist-form__row .btn,
.l-waitlist-form__row .btn-white {
  flex: 0 0 auto;
  white-space: nowrap;
}
.l-waitlist-form__hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-text-hint);
}

/* On dark CTA banner */
.l-waitlist-form--on-dark {
  margin: 28px auto 0;
}
.l-waitlist-form--on-dark .form-input {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.l-waitlist-form--on-dark .form-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.l-waitlist-form--on-dark .form-input:focus {
  background: #fff;
  color: var(--color-text-primary);
  border-color: var(--color-accent);
}

@media (max-width: 560px) {
  .l-waitlist-form__row {
    flex-direction: column;
  }
  .l-waitlist-form__row .btn,
  .l-waitlist-form__row .btn-white {
    width: 100%;
    justify-content: center;
  }
  .l-logo__badge { display: none; }
}
