/* === SMCUBA · Design tokens === */
:root {
  /* Brand — morado/índigo (preservado) */
  --brand-600: #4F3DF5;
  --brand-700: #3B2BD9;
  --brand-500: #6B5BFF;
  --brand-400: #8B7EFF;
  --brand-100: #E8E4FF;
  --brand-50:  #F3F0FF;

  /* Warm neutrals — cálido/humano */
  --cream-50:  #FBF7F2;
  --cream-100: #F5EFE6;
  --cream-200: #EBE3D5;
  --ink-900:   #1A1423;
  --ink-700:   #3A2F4A;
  --ink-500:   #6B5F7C;
  --ink-300:   #A89EB8;

  /* Warm accents (matching chroma) */
  --warm-coral: oklch(0.72 0.14 28);
  --warm-amber: oklch(0.78 0.14 70);
  --warm-sage:  oklch(0.72 0.09 145);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(26,20,35,0.04), 0 2px 6px rgba(26,20,35,0.04);
  --shadow-md: 0 4px 12px rgba(75,60,245,0.08), 0 12px 32px rgba(26,20,35,0.06);
  --shadow-lg: 0 8px 24px rgba(75,60,245,0.12), 0 24px 60px rgba(26,20,35,0.08);
  --shadow-brand: 0 12px 32px rgba(79,61,245,0.25);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Two-column grid helper — collapses on mobile */
.sm-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; border: none; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ====== Entry animations ====== */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.2); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes slideRight {
  from { transform: translateX(-8px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.anim-rise { animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.anim-fade { animation: fadeIn 0.9s ease-out both; }
.float-y { animation: floatY 4s ease-in-out infinite; }

/* ====== App frame ====== */
.sm-app {
  width: 100%;
  min-height: 100%;
  background: var(--cream-50);
  overflow: hidden;
}

/* === Top Nav === */
.sm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  background: rgba(251, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 20, 35, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.sm-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--brand-600);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.sm-nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.sm-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.sm-nav__link:hover { color: var(--brand-600); }
.sm-nav__link--active {
  color: var(--ink-900);
  font-weight: 600;
}
.sm-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--brand-600);
  border-radius: 2px;
}
.sm-btn {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sm-btn--primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.sm-btn--primary:hover {
  background: var(--brand-700);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(79,61,245,0.32);
}
.sm-btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-900);
}
.sm-btn--lg {
  padding: 15px 28px;
  font-size: 15px;
}
.sm-btn--block { width: 100%; justify-content: center; }

/* === Hero === */
.sm-hero {
  padding: 64px 56px 80px;
  position: relative;
  overflow: hidden;
}
.sm-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
.sm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-700);
  margin-bottom: 24px;
}
.sm-hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--brand-600);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
.sm-hero__title {
  font-family: var(--font-sans);
  font-size: 68px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  margin: 0 0 20px;
}
.sm-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-600);
  letter-spacing: -0.02em;
}
.sm-hero__sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-500);
  max-width: 480px;
  margin: 0 0 32px;
}
.sm-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.sm-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.sm-chip svg { color: var(--brand-600); }

/* Hero visual side (variation A: photo) */
.sm-hero__visual-wrap {
  position: relative;
}
.sm-hero__photo {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, oklch(0.78 0.12 70) 0%, oklch(0.82 0.08 40) 100%);
  box-shadow: var(--shadow-lg);
}
.sm-hero__photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 32px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 12px),
    linear-gradient(135deg, oklch(0.78 0.12 70) 0%, oklch(0.82 0.08 40) 100%);
}
.sm-hero__photo-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 10px;
  background: rgba(26,20,35,0.6);
  color: #fff;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

/* Hero form card (integrated right) */
.sm-flash {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-200);
  position: relative;
}
.sm-flash__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sm-flash__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.sm-flash__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--warm-sage);
  padding: 4px 10px;
  background: oklch(0.72 0.09 145 / 0.1);
  border-radius: var(--radius-pill);
}
.sm-flash__live-dot {
  width: 6px; height: 6px;
  background: var(--warm-sage);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}
.sm-flash__toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-100);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 20px;
  position: relative;
}
.sm-flash__toggle-btn {
  padding: 12px 16px;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-500);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.2s;
  z-index: 1;
}
.sm-flash__toggle-btn--active { color: #fff; }
.sm-flash__toggle-indicator {
  position: absolute;
  top: 4px; bottom: 4px;
  width: calc(50% - 4px);
  background: var(--brand-600);
  border-radius: var(--radius-pill);
  transition: left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 12px rgba(79,61,245,0.3);
}

.sm-field {
  margin-bottom: 18px;
}
.sm-field__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.sm-phone {
  display: flex;
  align-items: center;
  background: var(--cream-50);
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 0 4px 0 14px;
  transition: border-color 0.2s, background 0.2s;
}
.sm-phone:focus-within {
  border-color: var(--brand-600);
  background: #fff;
}
.sm-phone__prefix {
  display: flex; align-items: center; gap: 8px;
  padding-right: 12px;
  border-right: 1px solid var(--cream-200);
  font-weight: 600;
  color: var(--ink-900);
  font-size: 15px;
}
.sm-phone__flag {
  width: 22px; height: 16px;
  border-radius: 3px;
  overflow: hidden;
  display: inline-block;
  position: relative;
  background:
    linear-gradient(to bottom,
      #002A8F 0%, #002A8F 20%,
      #fff 20%, #fff 40%,
      #CE1126 40%, #CE1126 60%,
      #fff 60%, #fff 80%,
      #002A8F 80%, #002A8F 100%);
}
.sm-phone__flag::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 35%;
  background: #CE1126;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.sm-phone__flag::after {
  content: '★';
  position: absolute;
  left: 3px; top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 8px;
}
.sm-phone__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  color: var(--ink-900);
}
.sm-phone__input::placeholder { color: var(--ink-300); }

.sm-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.sm-offer {
  position: relative;
  padding: 16px;
  background: var(--cream-50);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sm-offer:hover { transform: translateY(-2px); background: #fff; border-color: var(--brand-100); }
.sm-offer--selected {
  background: linear-gradient(180deg, #fff 0%, var(--brand-50) 100%);
  border-color: var(--brand-600);
  box-shadow: 0 8px 20px rgba(79,61,245,0.12);
}
.sm-offer__badge {
  position: absolute;
  top: -8px; right: 12px;
  background: var(--warm-coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sm-offer__amt {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.sm-offer__desc {
  font-size: 11px;
  color: var(--ink-500);
  line-height: 1.4;
}
.sm-offer__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.sm-offer__price-now {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-600);
  letter-spacing: -0.02em;
}
.sm-offer__price-was {
  font-size: 12px;
  color: var(--ink-300);
  text-decoration: line-through;
}

.sm-flash__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-100);
  margin-top: 6px;
}
.sm-flash__footer-note {
  font-size: 11px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

/* Floating testimonial card next to hero */
.sm-hero__float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.sm-hero__float-card--tl {
  top: 12%; left: -28px;
  animation: floatY 5s ease-in-out infinite;
}
.sm-hero__float-card--br {
  bottom: 10%; right: -32px;
  animation: floatY 6s ease-in-out infinite 1s;
}
.sm-hero__float-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm-coral), var(--warm-amber));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
}
.sm-hero__float-card strong { display: block; color: var(--ink-900); font-weight: 600; margin-bottom: 2px; }
.sm-hero__float-card span { color: var(--ink-500); font-size: 11px; }

/* === Trust bar === */
.sm-trust {
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 36px 56px;
  overflow: hidden;
}
.sm-trust__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.sm-trust__stat {
  display: flex; flex-direction: column; gap: 4px;
}
.sm-trust__stat-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sm-trust__stat-num em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-400);
  font-weight: 400;
}
.sm-trust__stat-label {
  font-size: 12px;
  color: var(--ink-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.sm-trust__stats {
  display: flex; gap: 48px;
}
.sm-trust__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}
.sm-trust__rating {
  display: flex; align-items: center; gap: 12px;
}
.sm-trust__stars {
  display: flex; gap: 2px;
  color: var(--warm-amber);
}
.sm-trust__rating-text strong { font-size: 18px; font-weight: 700; }
.sm-trust__rating-text small { display: block; font-size: 12px; color: var(--ink-300); }

/* === Section base === */
.sm-section {
  padding: 96px 56px;
  max-width: 1320px;
  margin: 0 auto;
}
.sm-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.sm-section__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 12px;
}
.sm-section__title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--ink-900);
}
.sm-section__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-600);
}
.sm-section__sub {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* === How it works === */
.sm-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.sm-step {
  padding: 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-200);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sm-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.sm-step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  color: var(--brand-600);
  line-height: 1;
  margin-bottom: 16px;
}
.sm-step__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.sm-step__desc {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}
.sm-step__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-600);
  position: absolute;
  top: 28px; right: 28px;
}

/* === Promos === */
.sm-promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sm-promo {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--cream-200);
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sm-promo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-100);
}
.sm-promo--featured {
  background: linear-gradient(180deg, #fff 0%, var(--brand-50) 100%);
  border-color: var(--brand-100);
}
.sm-promo__tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--warm-coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sm-promo__type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 12px;
}
.sm-promo__name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--ink-900);
}
.sm-promo__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.sm-promo__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-700);
}
.sm-promo__feature svg {
  color: var(--brand-600);
  flex-shrink: 0;
}
.sm-promo__feature strong { color: var(--ink-900); font-weight: 700; }
.sm-promo__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.sm-promo__price-now {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.sm-promo__price-was {
  font-size: 15px;
  color: var(--ink-300);
  text-decoration: line-through;
}
.sm-promo__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.sm-promo__cta:hover {
  background: var(--brand-600);
  transform: translateY(-1px);
}
.sm-promo--featured .sm-promo__cta {
  background: var(--brand-600);
}
.sm-promo--featured .sm-promo__cta:hover {
  background: var(--brand-700);
}

/* === FAQ === */
.sm-faq {
  max-width: 760px;
  margin: 0 auto;
}
.sm-faq__item {
  border-bottom: 1px solid var(--cream-200);
  padding: 0;
}
.sm-faq__item:first-child { border-top: 1px solid var(--cream-200); }
.sm-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  background: transparent;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.sm-faq__q:hover { color: var(--brand-600); }
.sm-faq__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.sm-faq__item--open .sm-faq__icon {
  background: var(--brand-600);
  color: #fff;
  transform: rotate(45deg);
}
.sm-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.6;
  padding: 0 4px;
}
.sm-faq__item--open .sm-faq__a {
  max-height: 300px;
  padding: 0 4px 24px;
}

/* === Contact === */
.sm-contact {
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-600) 50%, oklch(0.5 0.22 295) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sm-contact::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.sm-contact__title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.sm-contact__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.sm-contact__desc {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
  max-width: 380px;
}
.sm-contact__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sm-contact__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.sm-contact__meta-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.sm-contact__form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.sm-contact__input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.sm-contact__input::placeholder { color: rgba(255,255,255,0.5); }
.sm-contact__input:focus {
  border-color: #fff;
  background: rgba(255,255,255,0.15);
}
.sm-contact__input--full { grid-column: 1 / -1; }
.sm-contact__textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  resize: none;
  min-height: 90px;
  grid-column: 1 / -1;
  font-family: inherit;
}
.sm-contact__textarea::placeholder { color: rgba(255,255,255,0.5); }
.sm-contact__submit {
  grid-column: 1 / -1;
  padding: 15px;
  background: #fff;
  color: var(--brand-700);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.sm-contact__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Contact field wrappers (labels + inline errors) */
.sm-cfield {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sm-cfield--full { grid-column: 1 / -1; }
.sm-cfield__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}
.sm-cfield__inp--err {
  border-color: rgba(239, 83, 80, 0.9) !important;
  background: rgba(239,83,80,0.1) !important;
}
.sm-cfield__err {
  font-size: 11px;
  color: #ffcdd2;
  font-weight: 500;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .sm-grid-2 { grid-template-columns: 1fr; }
  .sm-contact__form { grid-template-columns: 1fr; }
  .sm-cfield { grid-column: 1 / -1; }
}

/* === Footer === */
.sm-footer {
  background: var(--ink-900);
  color: var(--cream-200);
  padding: 72px 56px 32px;
  margin-top: 96px;
}
.sm-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sm-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
}
.sm-footer__brand-desc {
  font-size: 14px;
  color: var(--ink-300);
  line-height: 1.55;
  max-width: 320px;
  margin: 0 0 20px;
}
.sm-footer__social {
  display: flex;
  gap: 10px;
}
.sm-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all 0.2s;
}
.sm-footer__social a:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
}
.sm-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.sm-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sm-footer__col a {
  font-size: 14px;
  color: var(--ink-300);
  transition: color 0.2s;
}
.sm-footer__col a:hover { color: #fff; }
.sm-footer__bottom {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: var(--ink-300);
}
.sm-footer__payments {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sm-footer__payment-chip {
  padding: 6px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}

/* ============ MOBILE SPECIFIC ============ */
.sm-mobile {
  width: 100%;
  background: var(--cream-50);
}
.sm-mobile .sm-nav {
  padding: 16px 20px;
}
.sm-mobile .sm-nav__links { display: none; }
.sm-mobile .sm-nav__burger {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--cream-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-900);
}
.sm-mobile .sm-hero {
  padding: 28px 20px 40px;
}
.sm-mobile .sm-hero__inner {
  grid-template-columns: 1fr;
  gap: 28px;
}
.sm-mobile .sm-hero__title { font-size: 38px; }
.sm-mobile .sm-hero__sub { font-size: 16px; }
.sm-mobile .sm-hero__float-card { display: none; }
.sm-mobile .sm-trust {
  padding: 28px 20px;
}
.sm-mobile .sm-trust__inner {
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}
.sm-mobile .sm-trust__stats {
  justify-content: space-between;
  gap: 16px;
}
.sm-mobile .sm-trust__stat-num { font-size: 24px; }
.sm-mobile .sm-trust__divider { display: none; }
.sm-mobile .sm-section { padding: 56px 20px; }
.sm-mobile .sm-section__title { font-size: 32px; }
.sm-mobile .sm-section__sub { font-size: 15px; }
.sm-mobile .sm-steps { grid-template-columns: 1fr; gap: 12px; }
.sm-mobile .sm-promos { grid-template-columns: 1fr; }
.sm-mobile .sm-contact {
  grid-template-columns: 1fr;
  padding: 32px 24px;
  gap: 24px;
}
.sm-mobile .sm-contact__title { font-size: 28px; }
.sm-mobile .sm-contact__form { padding: 20px; }
.sm-mobile .sm-footer { padding: 48px 20px 24px; margin-top: 56px; }
.sm-mobile .sm-footer__inner {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sm-mobile .sm-footer__brand {
  grid-column: 1 / -1;
}
.sm-mobile .sm-footer__bottom {
  flex-direction: column;
  gap: 14px;
}

/* Logo crown */
.sm-logo-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.sm-logo-mark::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 5px solid var(--warm-amber);
}
.sm-logo-mark svg { color: #fff; }

/* ============================================================
   RESPONSIVE — true media-query breakpoints (no .sm-mobile class needed)
   ============================================================ */

/* Nav: burger + drawer */
.sm-nav__actions { display: flex; align-items: center; gap: 14px; }
.sm-nav__burger  { display: none; background: var(--cream-100); border: none; border-radius: 10px; padding: 8px; cursor: pointer; color: var(--ink-900); }
.sm-nav__drawer  { display: none; }

/* Language toggle */
.sm-lang-toggle {
  display: flex; align-items: center; gap: 5px;
  background: transparent;
  border: 1.5px solid var(--cream-200);
  border-radius: 20px;
  padding: 5px 11px;
  cursor: pointer;
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
  color: var(--ink-500);
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.sm-lang-toggle:hover { border-color: var(--brand-600); }
.sm-lang-toggle__opt { opacity: .45; transition: opacity .2s; }
.sm-lang-toggle__opt--active { opacity: 1; color: var(--brand-600); }
.sm-lang-toggle__sep { opacity: .25; }

/* ── 900 px ── */
@media (max-width: 900px) {
  /* Nav */
  .sm-nav { padding: 16px 24px; }
  .sm-nav__links { display: none; }
  .sm-nav__cta-wrap { display: none; }
  .sm-nav__burger { display: flex; align-items: center; justify-content: center; }

  /* Mobile drawer */
  .sm-nav__drawer {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--cream-200);
    padding: 12px 24px 20px;
    position: sticky;
    top: 72px;
    z-index: 49;
    box-shadow: 0 8px 24px rgba(26,20,35,.08);
    animation: fadeIn .18s ease;
  }
  .sm-nav__drawer-links {
    display: flex;
    flex-direction: column;
  }
  .sm-nav__drawer-links .sm-nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--cream-100);
    font-size: 16px;
  }
  .sm-nav__drawer-links .sm-nav__link:last-child { border-bottom: none; }
  .sm-nav__drawer-cta { margin-top: 16px; }
  .sm-nav__drawer-cta .sm-btn { width: 100%; justify-content: center; }

  /* Hero */
  .sm-hero { padding: 40px 24px 56px; }
  .sm-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .sm-hero__title { font-size: 46px; }
  .sm-hero__sub   { font-size: 17px; max-width: 100%; }
  .sm-hero__float-card { display: none; }

  /* TrustBar */
  .sm-trust { padding: 28px 24px; }
  .sm-trust__inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .sm-trust__stats { justify-content: space-evenly; flex-wrap: wrap; gap: 16px; }
  .sm-trust__divider { display: none; }
  .sm-trust__stat-num { font-size: 28px; }
  .sm-trust__rating { justify-content: center; }

  /* Reviews carousel */
  .sm-reviews-grid { grid-template-columns: 1fr 1fr !important; }

  /* Sections */
  .sm-section { padding: 56px 24px; }
  .sm-section__title { font-size: 34px; }

  /* Steps */
  .sm-steps { grid-template-columns: 1fr; gap: 14px; }

  /* Promos */
  .sm-promos { grid-template-columns: 1fr; }

  /* Contact */
  .sm-contact { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  .sm-contact__title { font-size: 30px; }
  .sm-contact__form { padding: 20px; grid-template-columns: 1fr; }
  .sm-cfield { grid-column: 1 / -1; }

  /* Footer */
  .sm-footer { padding: 48px 24px 24px; margin-top: 56px; }
  .sm-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sm-footer__brand { grid-column: 1 / -1; }
  .sm-footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* ── 600 px ── */
@media (max-width: 600px) {
  .sm-nav { padding: 14px 16px; }
  .sm-hero { padding: 28px 16px 40px; }
  .sm-hero__title { font-size: 34px; }
  .sm-hero__sub   { font-size: 15px; }
  .sm-flash { padding: 20px 16px; }
  .sm-section { padding: 44px 16px; }
  .sm-section__title { font-size: 28px; }
  .sm-section__eyebrow { font-size: 11px; }
  .sm-trust__stats { flex-direction: column; align-items: center; gap: 12px; }
  .sm-trust__divider { display: none; }
  .sm-reviews-grid { grid-template-columns: 1fr !important; }
  .sm-footer__inner { grid-template-columns: 1fr; }
  .sm-footer__col { margin-bottom: 4px; }
  .sm-footer__payments { flex-wrap: wrap; }

  /* Flash card offers grid */
  .sm-offers { grid-template-columns: 1fr 1fr; }
}

/* ── 400 px (smallest phones) ── */
@media (max-width: 400px) {
  .sm-hero__title { font-size: 28px; }
  .sm-flash { padding: 16px 12px; }
  .sm-offers { grid-template-columns: 1fr; }
  .sm-promo { padding: 20px 16px; }
}

/* Dashboard responsive */
@media (max-width: 900px) {
  .sm-dash { grid-template-columns: 1fr; }
  .sm-dash__sidebar {
    position: relative;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--cream-200);
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px;
    overflow-x: auto;
  }
  .sm-dash__sidebar .sm-dash__nav { flex-direction: row; flex-wrap: nowrap; gap: 4px; }
  .sm-dash__main { padding: 24px 16px; }
}
