/* ===================================================
   BIOPHARMA NATURA — Shared Landing Page Styles
   Design system: warm neutral + configurable accent
   Font: Plus Jakarta Sans
   =================================================== */

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

:root {
  /* Palette */
  --ink: #1b1f23;
  --ink-soft: #3a4048;
  --ink-muted: #6b7280;
  --surface: #ffffff;
  --surface-dim: #f5f6f8;
  --surface-warm: #f8faf7;
  --border: #e5e7eb;
  --border-light: #f0f1f3;

  /* Accent — medical blue */
  --accent: #0369a1;
  --accent-hover: #075985;
  --accent-light: #7dd3fc;
  --accent-pale: #f0f9ff;
  --accent-rgb: 3, 105, 161;

  /* Functional */
  --red-bg: #fef2f2;
  --red-icon: #dc2626;
  --star: #f59e0b;
  --green: #0369a1;
  --green-bg: #f0f9ff;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(0,0,0,0.04);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.06);
  --sh-md: 0 8px 24px rgba(0,0,0,0.08);
  --sh-lg: 0 16px 48px rgba(0,0,0,0.10);

  /* Radius */
  --r: 14px;
  --r-sm: 8px;
  --r-full: 50px;

  /* Shared form.css overrides */
  --bg: #f5f6f8;
  --text: #1b1f23;
  --text-secondary: #6b7280;
  --card-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink-soft);
  background: var(--surface);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- LAYOUT ---- */
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- ANNOUNCE BAR ---- */
.announce-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.announce-bar strong { color: #fff; }
.announce-bar__icon { display: flex; color: var(--accent-light); }
.mobile-br { display: none; }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--sh-sm); }
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px;
}
.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.logo span { color: var(--accent); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.nav__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(var(--accent-rgb),0.3);
}

/* ---- PILL / LABEL ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-pale);
  border: 1px solid rgba(var(--accent-rgb),0.15);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pill--solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---- HERO ---- */
.hero {
  padding: 0 0 80px;
  background: linear-gradient(170deg, var(--surface) 0%, var(--surface-warm) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-areas:
    "header header"
    "left right";
  gap: 32px 40px;
  align-items: start;
}
.hero__header {
  grid-area: header;
  text-align: center;
}
.hero__left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero__right {
  grid-area: right;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  align-self: start;
  text-align: center;
}
.hero__right-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__right-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__right .hero__offer-date {
  width: auto;
  margin: 0;
}
.hero__visual img {
  width: 100%;
  border-radius: var(--r);
  display: block;
}
/* Price box */
.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.price-box__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__price-2x1 {
  background: #dc2626;
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero__price-2x1:empty { display: none; }
.hero__price-old {
  font-size: 20px;
  color: var(--ink-muted);
  font-weight: 500;
}
.hero__price-old [data-full-price] {
  text-decoration: line-through;
}
.hero__price-new {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 2px;
}
.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero__rating-stars {
  display: flex;
  gap: 2px;
}
.hero__rating-stars svg {
  width: 18px;
  height: 18px;
  color: var(--star);
}
.hero__rating-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-muted);
}
.hero__divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0 0 20px;
}
.hero__right .lp-form-container {
  width: 100%;
  text-align: left;
}

/* Offer date in hero */
.hero__offer-date {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(var(--accent-rgb),0.06);
  border: 1px solid rgba(var(--accent-rgb),0.15);
  border-radius: var(--r-sm);
  width: fit-content;
}
.hero__offer-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-muted);
}
.hero__offer-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.hero__header .pill { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub {
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 16px;
}
.feat:last-child { border-bottom: none; }
.feat svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.feat strong { color: var(--ink); font-size: 17px; font-weight: 700; }
.feat small { display: block; font-size: 15px; color: var(--ink-muted); margin-top: 2px; }

/* ---- HERO BADGES ---- */
.hero__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}
.hero__badges img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---- IMAGE LAYOUTS ---- */
.img-wide {
  width: 100%;
  border-radius: var(--r);
}
.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.img-detail {
  width: 100%;
  border-radius: var(--r);
}
.review__photo {
  width: 100%;
  border-radius: var(--r-sm);
  margin-top: 14px;
  object-fit: cover;
}

.video-wide {
  width: 100%;
  border-radius: var(--r);
  display: block;
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--surface-dim);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 22px 0;
}
.trust-strip__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.trust-strip__item svg { color: var(--accent); flex-shrink: 0; }

/* ---- SECTIONS ---- */
.section { padding: 88px 0; }
.section--soft { background: var(--surface-warm); }
.section--dark { background: var(--ink); color: #fff; }
.section--flush { padding: 0 0 0; }
.section--flush .wrap { padding-top: 0; }

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section__header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section__header p {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.section__header--light h2 { color: #fff; }
.section__header--light p { color: rgba(255,255,255,0.55); }

/* ---- CARDS ---- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  border-radius: var(--r);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 16px; line-height: 1.7; }

/* Problem cards */
.card--problem {
  background: var(--surface);
  border: 1px solid var(--border);
}
.card--problem:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.card--problem h3 { color: var(--ink); }
.card--problem p { color: var(--ink-muted); }

/* Benefit cards */
.card--benefit {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.card--benefit:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(var(--accent-rgb),0.4);
  transform: translateY(-4px);
}
.card--benefit h3 { color: #fff; }
.card--benefit p { color: rgba(255,255,255,0.5); }

/* Card icons */
.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon--red { background: var(--red-bg); }
.card__icon--red svg { color: var(--red-icon); }
.card__icon--accent { background: rgba(var(--accent-rgb),0.12); }
.card__icon--accent svg { color: var(--accent-light); }

/* Arrow down */
.arrow-down {
  text-align: center;
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
}

/* ---- TECH / INGREDIENTS ---- */
.tech {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tech__layers {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.layer {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: padding-left 0.3s ease;
}
.layer:hover { padding-left: 36px; }
.layer__h {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  min-width: 48px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layer__info h4 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.layer__info p { font-size: 14px; opacity: 0.65; }

/* Ingredient/feature layer colors — defined per-page in local style.css */

.tech__specs .label { margin-bottom: 10px; }
.tech__specs h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.tech__specs > p {
  font-size: 18px;
  color: var(--ink-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: var(--r-sm);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.25s ease;
}
.check-list li:hover { background: var(--border-light); }
.check-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ---- REVIEWS ---- */
.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.rating-bar__score {
  font-size: 48px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.rating-bar__stars { display: flex; gap: 2px; }
.rating-bar__stars svg { width: 20px; height: 20px; color: var(--star); }
.rating-bar__count { font-size: 16px; color: var(--ink-muted); }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: transparent; }
.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.review__stars { display: flex; gap: 2px; }
.review__stars svg { width: 16px; height: 16px; color: var(--star); }
.review__badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}
.review blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-style: italic;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.avatar--1 { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.avatar--2 { background: linear-gradient(135deg, #ec4899, #db2777); }
.avatar--3 { background: linear-gradient(135deg, #15803d, #166534); }
.review__author strong { display: block; font-size: 16px; color: var(--ink); }
.review__author small { display: block; font-size: 14px; color: var(--ink-muted); }

/* ---- CTA SECTION ---- */
.section--cta {
  background: linear-gradient(170deg, var(--ink) 0%, #1a2744 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(var(--accent-rgb),0.12) 0%, transparent 60%);
  pointer-events: none;
}
.section--cta .wrap { position: relative; z-index: 2; }
.section--cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.cta-countdown__label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.cta-countdown__date {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-light);
}

.price-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.price-block__2x1 {
  background: #dc2626;
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-block__2x1:empty { display: none; }
.price-block__old {
  font-size: 20px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.price-block__new {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.price-block__save {
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 44px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  letter-spacing: 0.02em;
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb),0.35);
}
.btn--light {
  background: #fff;
  color: var(--accent);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--light:hover {
  background: rgba(255,255,255,0.9);
  color: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}
.section__cta-inline {
  text-align: center;
  margin-top: 48px;
}

/* ---- ORDER SECTION ---- */
.section--order {
  background: linear-gradient(170deg, var(--surface-warm) 0%, var(--surface-dim) 100%);
  padding: 80px 0;
}
.hero__grid--bottom {
  grid-template-areas: "left right";
}
.hero__grid--bottom .hero__visual img {
  width: 100%;
  border-radius: var(--r);
  display: block;
}

/* Form overrides — hero right: strip card-in-card */
.hero__right .order-form {
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
  margin: 0;
  max-width: 100%;
}
.hero__right .order-form h3 { display: none; }
.form-submit {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(var(--accent-rgb),0.3) !important;
}
.form-submit:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 8px 28px rgba(var(--accent-rgb),0.4) !important;
}
.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.12);
}

/* ---- FAQ ---- */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq__item[open] { border-color: rgba(var(--accent-rgb),0.4); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { display: none; content: ''; }
.faq__item summary:hover { color: var(--accent-light); }
.faq__item summary svg {
  width: 22px; height: 22px; flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  color: var(--accent-light);
}
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item p {
  padding: 0 24px 22px;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
/* Disclaimer FAQ (injected by disclaimer.js) */
.faq__item--disclaimer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq__item--disclaimer summary::-webkit-details-marker { display: none; }
.faq__item--disclaimer summary::marker { display: none; content: ''; }
.faq__disclaimer {
  padding: 0 24px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ---- DISCLAIMER NOTE ---- */
.disclaimer-note {
  text-align: center;
  padding: 24px;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
}

/* ---- SPLIT (image + text) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split--img-right {
  direction: ltr;
}
.split__img img {
  width: 100%;
  border-radius: var(--r);
}
.split__text .label { margin-bottom: 10px; }
.split__text h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.split__text p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.split__text .btn { margin-top: 12px; }


/* ---- STEPS (Come ordinare) ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  border-radius: var(--r);
  overflow: hidden;
}
.step-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- TRUST BADGE INLINE ---- */
.trust-badge-inline {
  text-align: center;
  margin-top: 32px;
}
.trust-badge-inline img {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

/* ---- FEAT HIGHLIGHT ---- */
.feat--highlight {
  background: rgba(var(--accent-rgb),0.06);
  border: 1px solid rgba(var(--accent-rgb),0.15);
  border-radius: var(--r-sm);
  padding: 12px 16px !important;
  border-bottom: none !important;
}
.feat--highlight strong { color: var(--accent) !important; }

/* ---- ANIMATIONS ---- */
.anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .anim { transition: none; opacity: 1; transform: none; }
}

/* ---- FOOTER (shared) ---- */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
  text-align: center;
}
.footer p { font-size: 14px; color: rgba(255,255,255,0.3); }
.footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer a:hover { color: var(--accent-light); }
.footer__legal { margin-top: 8px; margin-bottom: 8px; }

/* ---- LANG PICKER ---- */
.lang-picker {
  position: relative;
  z-index: 1000;
  margin-left: auto;
  margin-right: 12px;
}
.lang-picker-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--sh-xs);
  transition: box-shadow 0.2s ease;
}
.lang-picker-btn:hover { box-shadow: var(--sh-sm); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-md);
  min-width: 150px;
  display: none;
  overflow: hidden;
}
.lang-dropdown.show { display: block; }
.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease;
}
.lang-dropdown a:hover { background: var(--surface-dim); }
.lang-dropdown a.active {
  font-weight: 600;
  color: var(--accent);
  background: rgba(var(--accent-rgb),0.1);
}

/* ---- RTL Support ---- */
.rtl { direction: rtl; text-align: right; }
.rtl .lang-picker { justify-content: flex-start; }
.rtl .lang-dropdown { right: auto; left: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "left"
      "right";
    gap: 24px;
  }
  .hero__grid--bottom {
    grid-template-areas:
      "left"
      "right";
  }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .tech { grid-template-columns: 1fr; gap: 44px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav .wrap { gap: 8px; }
  .logo { font-size: 19px; }
  .lang-picker { margin-right: 4px; }
  .lang-picker-btn { padding: 6px 10px; font-size: 0; gap: 0; }
  .lang-picker-btn img { margin-right: 0 !important; }
  .section { padding: 64px 0; }
  .hero { padding: 0 0 56px; }
  .hero__grid { gap: 24px; }
  .hero__header .pill { margin-bottom: 16px; }
  .hero__right { padding: 28px 20px; }
  .hero__price-new { font-size: 52px; }
  .cards-3 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .cards-4 { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .reviews { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero__features { gap: 0; }
  .feat { padding: 10px 0; }
  .feat svg { width: 16px; height: 16px; }
  .trust-strip__items { gap: 20px; }
  .trust-strip__item { font-size: 15px; }
  .img-grid-2 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .section--cta { padding: 64px 0; }
  .section--order { padding: 64px 0; }
  .price-block { flex-wrap: wrap; gap: 8px; }
  .price-block__new { font-size: 38px; }
  .announce-bar { font-size: 12px; flex-wrap: wrap; }
  .mobile-br { display: block; }
  .section__header { margin-bottom: 40px; }
  .rating-bar__score { font-size: 40px; }
  .faq__item summary { padding: 18px 20px; font-size: 16px; }
  .faq__item p { padding: 0 20px 18px; font-size: 15px; }
  /* Rating — stack on mobile */
  .hero__rating { flex-direction: column; gap: 4px; }
  .hero__rating-stars svg { width: 20px; height: 20px; }
  .hero__rating-text { font-size: 14px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .hero__sub { font-size: 17px; }
  .hero__right { padding: 24px 16px; }
  .hero__price-new { font-size: 48px; }
  .price-block__new { font-size: 32px; }
  .btn { padding: 16px 28px; font-size: 16px; width: 100%; justify-content: center; }
  .nav__cta { padding: 8px 14px; font-size: 13px; white-space: nowrap; flex-shrink: 0; }
  .nav__cta svg { display: none; }
  .lang-picker { margin-right: 0; flex-shrink: 0; }
  .lang-picker-btn { padding: 6px 8px; font-size: 0; gap: 0; }
  .lang-picker-btn img { margin-right: 0 !important; }
  .logo { font-size: 18px; min-width: 0; }
  .feat { padding: 10px 12px; }
  .layer { padding: 18px 20px; }
  .layer__h { font-size: 20px; min-width: 40px; width: 40px; height: 40px; }
  .trust-strip__items { flex-direction: column; align-items: center; gap: 12px; }
  .card { padding: 28px 22px; }
  .check-list li { font-size: 15px; padding: 12px 14px; }
  .announce-bar { padding: 10px 16px; font-size: 13px; }
  .hero__rating-stars svg { width: 22px; height: 22px; }
  .hero__rating-stars { gap: 4px; }
  .hero__rating-text { font-size: 13px; }
  /* Prevent iOS zoom on input focus */
  input, select, textarea { font-size: 16px; }
}
