﻿:root {
  --blue-950: #07122f;
  --blue-900: #0b1e4a;
  --blue-800: #15306f;
  --blue-700: #1e3a8a;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-100: #dbe7ff;
  --blue-50: #eef4ff;

  --teal-700: #0f766e;
  --teal-500: #14b8a6;
  --mint-500: #10b981;
  --mint-300: #6ee7b7;
  --mint-50: #ecfdf5;

  --pink-500: #ef4d6a;
  --pink-300: #f9a8b4;
  --pink-50: #fff0f3;

  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #dbe3ef;
  --bg: #f3f7ff;
  --white: #ffffff;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.05);
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 26px 64px rgba(11, 30, 74, 0.22);

  --container: 1160px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(980px 580px at 88% -12%, rgba(59, 130, 246, 0.18), transparent 64%),
    radial-gradient(880px 540px at -6% 28%, rgba(20, 184, 166, 0.12), transparent 60%),
    linear-gradient(180deg, #f9fcff 0%, #f3f7ff 35%, #f6f9ff 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(9, 30, 66, 0.04) 0.8px, transparent 0.8px),
    radial-gradient(rgba(9, 30, 66, 0.025) 0.8px, transparent 0.8px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
  pointer-events: none;
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
input,
select,
textarea,
button,
.form-control,
.input,
.select,
.textarea,
.field input,
.field select,
.field textarea {
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.cta-mobile-label { display: none; }
.cta-desktop-label { display: inline; }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, #2d66eb, #1f52d3 52%, #0f7f94);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(15, 118, 110, 0.35); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--blue-800);
  border-color: rgba(37, 99, 235, 0.18);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--blue-400); color: var(--blue-500); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 253, 255, 0.78);
  backdrop-filter: saturate(145%) blur(14px);
  border-bottom: 1px solid rgba(157, 177, 204, 0.28);
}
.offer-topbar {
  background: linear-gradient(90deg, #0e3158, #14538f 56%, #0f766e);
  color: #e8f5ff;
  border-bottom: 1px solid rgba(180, 213, 241, 0.28);
}
.offer-topbar p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--blue-900);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  position: relative;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 4px;
  background: #fff;
  opacity: 0.22;
}
.nav-links {
  display: none;
  gap: 28px;
  font-weight: 600;
  color: #365176;
}
.nav-links a:hover { color: var(--blue-500); }
.header-cta { display: none; }
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 0; color: var(--ink-soft); font-weight: 600; }
.mobile-nav .btn { margin-top: 8px; }

.hero {
  position: relative;
  padding: 56px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(980px 580px at 88% -12%, rgba(59, 130, 246, 0.2), transparent 64%),
    linear-gradient(135deg, #09172d, #0f223f 50%, #0f2f4b);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  z-index: 0;
}
.hero::before {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(45, 102, 235, 0.26), transparent 70%);
  top: -120px;
  right: -120px;
}
.hero::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 70%);
  bottom: -110px;
  left: -120px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
}
.hero .hero-title,
.hero h1,
.hero-copy h1 {
  color: #fff !important;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.65);
}
.hero-copy .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.hero-copy .cta-benefit { color: #b7dbff; }
.hero-copy .microcopy { color: #c5d4ea; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #19458d;
  background: rgba(219, 231, 255, 0.75);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 16px 0;
  color: #071a44;
  font-weight: 800;
  text-wrap: balance;
}
.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: #2f486c;
  max-width: 560px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.cta-benefit {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #215d87;
}
.microcopy {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  max-width: 480px;
}
.hero-bullets {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  max-width: 540px;
}
.hero-bullets li {
  color: #d8e9ff;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}
.hero-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #6ee7b7;
  font-weight: 800;
}

.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.hero-chips {
  display: contents;
}
.hero-shot-frame {
  width: min(460px, 100%);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.hero-shot {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  filter: drop-shadow(0 18px 34px rgba(11, 30, 74, 0.2));
}
.phone {
  width: min(360px, 100%);
  background: #0b1f46;
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid rgba(157, 177, 204, 0.28);
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 98px;
  height: 23px;
  background: #0b1f46;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: linear-gradient(180deg, #edf4ff, #ffffff);
  border-radius: 30px;
  padding: 40px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-hello { margin: 0; font-weight: 700; color: var(--blue-900); }
.app-date { margin: 2px 0 0; font-size: 12px; color: var(--muted); }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.avatar-blue { background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); }
.avatar-pink { background: linear-gradient(135deg, var(--pink-500), #ff7ea0); }

.card-next-off {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.95), rgba(255, 255, 255, 0.9));
  border: 1px solid #cdecdc;
  border-radius: var(--radius);
  padding: 14px;
}
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag-mint { background: var(--mint-500); color: #fff; }
.card-next-off h3 { margin: 8px 0 2px; font-size: 22px; color: var(--blue-900); }
.card-next-off h3 strong { color: var(--mint-500); }
.card-next-off p { margin: 0; font-size: 13px; color: var(--ink-soft); }
.badge-juntos {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  background: var(--pink-50);
  color: var(--pink-500);
  padding: 4px 10px;
  border-radius: 999px;
}

.mini-cal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}
.mini-cal-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.mini-cal-arrows { color: var(--muted); }
.mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
}
.mini-cal-grid .dow { color: var(--muted); font-weight: 700; padding: 4px 0; }
.mini-cal-grid span { padding: 6px 0; border-radius: 8px; }
.mini-cal-grid .work { background: var(--blue-50); color: var(--blue-700); font-weight: 700; }
.mini-cal-grid .off { background: var(--mint-50); color: var(--mint-500); font-weight: 700; }
.mini-cal-grid .juntos {
  background: var(--pink-50);
  color: var(--pink-500);
  outline: 2px solid var(--pink-300);
}
.mini-cal-grid .today { outline: 2px solid var(--blue-500); }

.card-shift {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.shift-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd56b, #ff9c5b);
  color: #fff;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shift-label { margin: 0; font-size: 12px; color: var(--muted); }
.shift-time { margin: 2px 0 0; font-weight: 700; color: var(--blue-900); }

.float-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(157, 177, 204, 0.34);
  box-shadow: 0 8px 18px rgba(11, 30, 74, 0.16);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  color: var(--blue-900);
  backdrop-filter: blur(6px);
  animation: float 4s ease-in-out infinite;
}
.chip-1 { top: 14px; left: -20px; color: var(--mint-500); }
.chip-2 { bottom: 82px; right: -14px; color: var(--blue-500); animation-delay: 1.2s; }
.chip-3 { bottom: 18px; left: -18px; color: #0f766e; animation-delay: 2s; }
.chip-4 { top: -12px; right: 8px; color: #164e97; animation-delay: 2.8s; }

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

.section { padding: 74px 0; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.section-head h2 {
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--blue-900);
  margin: 12px 0 8px;
  font-weight: 800;
}
.section-sub { color: #3f5677; margin: 0; }

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(162, 181, 206, 0.34);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(58, 119, 220, 0.34);
}

.grid-3, .grid-4 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.section-pain { background: linear-gradient(180deg, rgba(245, 249, 255, 0.85), rgba(255, 255, 255, 0.92)); }
.pain-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pain-card .ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pain-card-a .ico { background: #fff1f3; color: #d43c62; }
.pain-card-b .ico { background: #eaf3ff; color: #2f5ec9; }
.pain-card-c .ico { background: #ecfdf5; color: #0f9a6d; }
.pain-card-d .ico { background: #f1efff; color: #5f53d3; }
.pain-card p { margin: 0; color: var(--ink-soft); font-weight: 600; }
.section-practice {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.7), rgba(255, 255, 255, 0.9));
}
.practice-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.practice-card img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto 12px;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  filter: none;
  border-radius: 0;
}
.practice-card h3 {
  margin: 0 0 6px;
  color: var(--blue-900);
  font-size: 19px;
}
.practice-card p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-card h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  color: var(--blue-900);
}
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.feature-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature-ico svg { width: 24px; height: 24px; }
.ico-blue { background: #eaf2ff; color: #2e61d4; }
.ico-mint { background: #eafff6; color: #0f9d73; }
.ico-pink { background: #ffeef2; color: #dd466a; }

.section-juntos {
  background:
    radial-gradient(660px 360px at 92% 2%, rgba(239, 77, 106, 0.18), transparent 64%),
    radial-gradient(700px 380px at 4% 100%, rgba(37, 99, 235, 0.18), transparent 63%),
    linear-gradient(180deg, rgba(255, 248, 252, 0.9), rgba(241, 247, 255, 0.95));
}
.juntos-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.badge-pill {
  display: inline-block;
  background: rgba(255, 233, 239, 0.95);
  color: #d33963;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(239, 77, 106, 0.3);
}
.juntos-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(27px, 4vw, 40px);
  letter-spacing: -0.02em;
  color: var(--blue-900);
  font-weight: 800;
}
.juntos-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.section-shot {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  filter: drop-shadow(0 12px 28px rgba(11, 30, 74, 0.18));
}
.section-head-left {
  text-align: left;
  margin: 0 0 20px;
}
.section-insights-shots {
  background: linear-gradient(180deg, rgba(240, 248, 255, 0.64), rgba(255, 255, 255, 0.92));
}
.section-value-stack {
  background: linear-gradient(180deg, rgba(250, 253, 255, 0.92), rgba(244, 250, 255, 0.9));
}
.value-stack-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.value-stack-card .benefits {
  margin-top: 10px;
  text-align: left;
  display: grid;
  gap: 12px;
}
.value-stack-card .btn {
  margin-top: 10px;
}
.section-situations .grid-3 {
  gap: 14px;
}
.section-situations .card {
  padding: 20px;
}
.section-situations .card p {
  margin: 0;
  font-weight: 700;
  color: var(--blue-900);
}
.section-bonus {
  background: linear-gradient(180deg, rgba(255, 249, 250, 0.9), rgba(255, 255, 255, 0.92));
}
.section-bonus h3 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: 16px;
}
.section-bonus p {
  margin: 0;
  color: var(--ink-soft);
}
.section-how-it-works {
  background: linear-gradient(180deg, rgba(241, 248, 255, 0.82), rgba(255, 255, 255, 0.95));
}
.how-steps {
  display: grid;
  gap: 14px;
}
.how-step strong {
  color: var(--blue-900);
  font-size: 17px;
}
.how-step p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}
.section-cta-center {
  text-align: center;
  margin-top: 24px;
}
.insights-shots-grid {
  display: grid;
  gap: 26px;
  align-items: center;
}
.insight-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.insight-bullets li {
  font-weight: 600;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
}
.insight-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
}
.shots-stack {
  display: grid;
  gap: 14px;
}
.shot-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.person-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.person {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(246, 251, 255, 0.95);
  border-radius: var(--radius);
  padding: 12px;
  border: 1px solid rgba(177, 194, 215, 0.26);
}
.person-label { margin: 0; font-weight: 700; color: var(--blue-900); font-size: 14px; }
.person-meta { margin: 2px 0 0; font-size: 12px; color: var(--muted); }

.juntos-result {
  background: linear-gradient(135deg, rgba(255, 238, 242, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(252, 186, 200, 0.55);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.result-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--pink-500);
  letter-spacing: 0.06em;
}
.juntos-result h3 {
  margin: 6px 0 14px;
  color: var(--blue-900);
  font-size: 22px;
}
.result-days {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.day {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-700);
}
.day.muted { color: var(--muted); }

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pill {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(162, 181, 206, 0.36);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: #334a69;
  transition: transform 0.15s ease, border-color 0.2s ease, color 0.2s ease;
}
.pill:hover { transform: translateY(-2px); border-color: var(--blue-400); color: var(--blue-500); }
.pill-accent { background: #eaf2ff; color: var(--blue-700); border-color: #cadeff; }

.section-pricing {
  position: relative;
}
.section-pricing .container {
  background:
    radial-gradient(800px 360px at 8% 0%, rgba(26, 93, 164, 0.34), transparent 62%),
    radial-gradient(760px 380px at 92% 100%, rgba(20, 184, 166, 0.2), transparent 60%),
    linear-gradient(145deg, #07132f, #0a1d49 48%, #0c3c58);
  border-radius: 28px;
  padding: 56px 22px;
  border: 1px solid rgba(148, 180, 219, 0.2);
  box-shadow: 0 26px 74px rgba(7, 18, 47, 0.36);
}
.pricing-head h2,
.pricing-head .section-sub {
  color: #e8f2ff;
}
.pricing-head .section-sub { opacity: 0.9; }
.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 255, 0.88));
  border: 1px solid rgba(153, 178, 209, 0.5);
}
.price-title {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3f5677;
  font-weight: 800;
}
.price {
  margin: 12px 0 0;
  font-size: 38px;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}
.price span { font-size: 16px; font-weight: 700; color: var(--muted); }
.price-old {
  margin: 8px 0 0;
  color: #5b7090;
  font-weight: 700;
  font-size: 14px;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.price-extra { margin: 4px 0 0; color: #304869; font-weight: 700; }
.savings {
  margin: 8px 0 0;
  display: inline-block;
  background: rgba(236, 253, 245, 0.96);
  color: #0f9a6d;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefits li {
  position: relative;
  padding-left: 28px;
  color: #2f486b;
  font-size: 15px;
  font-weight: 600;
}
.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.price-card-featured {
  position: relative;
  border: 1.6px solid rgba(117, 199, 255, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(222, 241, 255, 0.95));
  box-shadow: 0 0 0 1px rgba(86, 172, 255, 0.35), 0 22px 46px rgba(15, 32, 78, 0.36);
}
.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2d66eb, #108ca6);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.legal-note {
  text-align: center;
  color: rgba(231, 243, 255, 0.86);
  margin-top: 24px;
  font-size: 13px;
}

.benefit-card h3 { margin: 14px 0 6px; color: var(--blue-900); font-size: 18px; }
.benefit-card p { margin: 0; color: var(--ink-soft); }
.section-guarantee {
  padding-top: 10px;
}
.guarantee-card {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(232, 248, 255, 0.9), rgba(255, 255, 255, 0.96));
}
.guarantee-card h2 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: clamp(25px, 4vw, 34px);
}
.guarantee-card p {
  margin: 0;
  color: var(--ink-soft);
}
.guarantee-card .benefits {
  margin-bottom: 0;
}

.section-faq { background: transparent; }
.faq-container { max-width: 920px; margin: 0 auto; }
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(157, 177, 204, 0.42);
  border-radius: var(--radius);
  padding: 8px 20px;
  min-height: 72px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.faq details[open] {
  border-color: rgba(59, 130, 246, 0.55);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-weight: 800;
  color: var(--blue-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.35);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.faq details[open] .chev { transform: rotate(45deg); }
.faq p { margin: 0 0 14px; color: var(--ink-soft); }

.section-final-cta {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2f78, #1d54cb 52%, #0f7f94);
}
.section-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.18;
}
.final-cta {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(30px, 5vw, 44px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin: 0 0 28px;
}
.final-cta .btn-primary {
  background: #fff;
  color: #1d4bc0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
.final-cta .btn-primary:hover { color: #10367f; }

.site-footer {
  background: linear-gradient(180deg, #0a142f, #080f24);
  color: #c8d3e6;
  padding: 56px 0 24px;
}
.footer-inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.logo-footer { color: #fff; }
.footer-tag {
  margin: 12px 0 0;
  color: #95a7c4;
  max-width: 360px;
  font-size: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.footer-links a {
  color: #d8e2f2;
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7f93b4;
  font-size: 13px;
}

.thanks-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.thanks-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 28px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}
.thanks-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-500), #34d399);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.35);
  animation: pop 0.5s ease;
}
.thanks-check svg { width: 36px; height: 36px; }
@keyframes pop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.thanks-card h1 {
  margin: 0 0 10px;
  font-size: 28px;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}
.thanks-card p { color: var(--ink-soft); margin: 0 0 24px; }
.back-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue-500);
  font-weight: 700;
  font-size: 14px;
}
.back-link:hover { color: var(--blue-700); }

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .person-row { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .section-pricing .container { padding: 56px 30px; }
}

@media (max-width: 640px) {
  input,
  select,
  textarea,
  button,
  .form-control,
  .input,
  .select,
  .textarea,
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .hero-mockup {
    margin-top: 18px;
    padding: 0;
  }
  .hero h1,
  .hero-copy h1 {
    color: #fff !important;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.68);
  }
  .cta-row { gap: 10px; }
  .cta-row .btn { padding: 12px 12px; font-size: 14px; }
  body .td-install-app-btn {
    bottom: 18px !important;
    right: 14px !important;
    transform: scale(.92);
  }
  .hero-shot-frame {
    width: min(230px, 74vw);
  }
  .offer-topbar p {
    font-size: 12px;
    line-height: 1.35;
    padding: 10px 2px;
  }
  .hero-bullets li {
    font-size: 13px;
  }
  .float-chip {
    font-size: 11px;
    padding: 6px 10px;
  }
  .chip-1 { top: 6px; left: 0; }
  .chip-2 { bottom: 52px; right: 2px; }
  .chip-3 { bottom: 4px; left: 4px; }
  .chip-4 { top: -14px; right: 18px; }
  .shots-stack {
    gap: 12px;
  }
  .shot-main .section-shot,
  .shot-floating .section-shot,
  .juntos-card .section-shot {
    max-width: 270px;
    margin: 0 auto;
  }
  .practice-card {
    padding: 14px 14px 16px;
    overflow: hidden;
  }
  .practice-card img {
    max-width: 280px;
    max-height: none;
    width: 100%;
    object-fit: contain;
    margin: 0 auto 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 34px 0 46px;
    overflow: hidden;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-left: auto;
    margin-right: auto;
    max-width: 13ch;
  }
  .hero .lead,
  .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-bullets {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .cta-row {
    width: 100%;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .cta-row .btn {
    width: 100%;
    max-width: 340px;
    min-height: 52px;
    white-space: normal;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
    line-height: 1.3;
  }
  .cta-mobile-label { display: inline; }
  .cta-desktop-label { display: none; }
  .hero-copy .cta-benefit,
  .hero-copy .microcopy {
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
  }
  .hero-mockup {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    padding: 0;
  }
  .hero-shot-frame {
    width: min(100%, 320px);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-shot {
    width: 100%;
    height: auto;
  }
  .hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
    max-width: 360px;
  }
  .hero-mockup .float-chip {
    position: static !important;
    transform: none !important;
    animation: none;
    margin: 0;
    max-width: calc(100vw - 48px);
    white-space: normal;
    text-align: center;
    font-size: 12px;
  }
  .section-practice .card {
    overflow: hidden;
  }
  .practice-card {
    padding: 14px 14px 16px;
  }
  .practice-card img {
    width: 100%;
    max-width: 300px;
    max-height: none;
    object-fit: contain;
    margin: 0 auto 10px;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    filter: none;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(1.85rem, 10vw, 2.5rem);
  }
  .hero .lead,
  .hero-copy .lead {
    font-size: 0.95rem;
  }
  .cta-row .btn {
    max-width: 320px;
    font-size: 0.9rem;
  }
  .hero-shot-frame {
    width: min(100%, 290px);
  }
  .practice-card {
    padding: 12px 12px 14px;
  }
  .practice-card img {
    max-width: 300px;
  }
}

@media (min-width: 900px) {
  .nav-links { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }

  .hero { padding: 98px 0 114px; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 66px; }

  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .juntos-grid { grid-template-columns: 1fr 1fr; }
  .insights-shots-grid { grid-template-columns: 1.1fr 1fr; }
  .practice-grid { grid-template-columns: repeat(4, 1fr); }
  .shots-stack {
    position: relative;
    min-height: 560px;
    display: block;
  }
  .shot-main {
    width: 82%;
  }
  .shot-floating {
    width: 62%;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
  .footer-links { justify-content: flex-end; }

  .section { padding: 96px 0; }
}
