/* ════════════════════════════════════════════════════════════════════════
   PETO-ID — Landing Page Styles
   Paleta: Ohmee Blues + Dorado para CTAs
   ════════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand colors */
  --primary: #1A6FD4;
  --primary-dark: #1857A4;
  --primary-darker: #0F2845;
  --primary-light: #5BA3E8;
  --primary-lighter: #E6F0FA;
  --navy: #0F2845;
  --navy-dark: #081A30;
  --accent: #F5A623;
  --accent-dark: #D88E1A;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #F0F7FF;
  --surface: #F1F7FE;
  --text-dark: #1A1A1A;
  --text-mid: #4A5568;
  --text-light: #718096;
  --text-on-dark: rgba(255,255,255,0.95);
  --text-on-dark-mid: rgba(255,255,255,0.7);

  /* States */
  --success: #10B981;
  --danger: #EF4444;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 40, 69, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 40, 69, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 40, 69, 0.18);
  --shadow-xl: 0 30px 80px rgba(15, 40, 69, 0.25);
  --shadow-glow: 0 10px 40px rgba(26, 111, 212, 0.35);

  /* Type */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── CONTAINER ─────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  width: 100%;
}

/* ─── HEADER / NAV ──────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(15, 40, 69, 0.06);
  transition: all 0.3s ease;
}
.header.scrolled {
  padding: 0.65rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text-accent { color: var(--primary); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(26, 111, 212, 0.3);
  transition: all 0.2s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 111, 212, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.25s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(26, 111, 212, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26, 111, 212, 0.5);
}
.btn-ghost {
  color: var(--navy);
  background: transparent;
  border: 2px solid rgba(15, 40, 69, 0.15);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
}
.btn-block { width: 100%; }
.btn-large { padding: 1.2rem 2.4rem; font-size: 1.1rem; }

/* ─── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #FBFCFE 0%, #EBF2FB 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(91, 163, 232, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}
.hero-orb-1 {
  top: 10%; left: -100px;
  width: 400px; height: 400px;
  background: var(--primary-light);
  animation: floatOrb 18s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: 5%; right: -150px;
  width: 500px; height: 500px;
  background: var(--primary);
  opacity: 0.25;
  animation: floatOrb 22s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeUp 0.8s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  background: rgba(26, 111, 212, 0.1);
  border: 1px solid rgba(26, 111, 212, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.75rem;
}
.hero-badge-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-title-accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: -0.15em; left: 0; right: 0;
  height: 0.18em;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0.45;
  z-index: -1;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-mid);
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-subtitle strong {
  color: var(--navy);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-item strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.hero-trust-item span {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}
.hero-trust-divider {
  width: 1px; height: 36px;
  background: rgba(15, 40, 69, 0.12);
}

/* ─── HERO PHONE MOCKUP ─────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.2s ease-out both;
}
.hero-phone {
  position: relative;
  width: 320px;
  height: 580px;
  background: var(--navy);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(15, 40, 69, 0.3),
    0 20px 40px rgba(15, 40, 69, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.5s;
  z-index: 2;
}
.hero-phone:hover { transform: perspective(1000px) rotateY(-4deg) rotateX(1deg); }
.hero-phone::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 24px;
  background: var(--navy-dark);
  border-radius: 0 0 18px 18px;
  z-index: 3;
}
.hero-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F1F7FE 0%, #FFFFFF 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.hero-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-phone-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50px;
  background: var(--navy);
  filter: blur(50px);
  opacity: 0.25;
  z-index: 1;
}

.floating-paw {
  position: absolute;
  color: var(--primary);
  opacity: 0.18;
  z-index: 1;
}
.floating-paw-1 {
  width: 80px; height: 80px;
  top: 5%; left: 0%;
  animation: floatPaw 6s ease-in-out infinite;
}
.floating-paw-2 {
  width: 50px; height: 50px;
  top: 70%; left: 5%;
  color: var(--accent);
  opacity: 0.5;
  animation: floatPaw 7s ease-in-out infinite 1s;
}
.floating-paw-3 {
  width: 60px; height: 60px;
  top: 30%; right: -5%;
  animation: floatPaw 8s ease-in-out infinite 2s;
}
@keyframes floatPaw {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -20px) rotate(15deg); }
}

/* ─── SECTIONS GENERAL ──────────────────────────────────────────────── */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-head {
  margin-bottom: 4rem;
  max-width: 760px;
}
.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-eyebrow-light { color: var(--accent); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title-light { color: var(--white); }
.section-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.6;
}
.section-lead-light { color: var(--text-on-dark-mid); }

.text-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.section-title-light .text-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── PROBLEM ───────────────────────────────────────────────────────── */
.section-problem { background: var(--surface); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.problem-card {
  background: white;
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.problem-card:hover::before { transform: scaleY(1); }
.problem-card-illust {
  width: 100%;
  height: 220px;
  background: var(--surface);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}
.problem-card-illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.problem-card:hover .problem-card-illust img {
  transform: scale(1.04);
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.problem-card p {
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── HOWTO / STEPS ─────────────────────────────────────────────────── */
.section-howto {
  background:
    linear-gradient(180deg, var(--navy-dark) 0%, var(--primary-dark) 100%);
  color: white;
  overflow: hidden;
}
.section-howto::before {
  content: '';
  position: absolute;
  top: 10%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91, 163, 232, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.steps-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.5rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
}
.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.step-screenshot {
  width: 140px;
  height: 280px;
  margin: 0 auto 1.5rem;
  background: var(--navy-dark);
  border-radius: 22px;
  padding: 6px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}
.step-screenshot::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 12px;
  background: var(--navy-dark);
  border-radius: 0 0 10px 10px;
  z-index: 3;
}
.step-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  display: block;
}
.step:hover .step-screenshot {
  transform: translateY(-4px) scale(1.03);
}

/* Legacy support for step-icon (keep but smaller fallback) */
.step-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 25px rgba(26, 111, 212, 0.4);
}
.step-icon svg { width: 36px; height: 36px; }
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: white;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-on-dark-mid);
  line-height: 1.55;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.5;
}
.step-arrow svg { width: 32px; height: 32px; }

.howto-cta {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.howto-cta p {
  font-size: 1.15rem;
  color: var(--text-on-dark);
}
.howto-cta strong { color: var(--accent); }

/* ─── GALLERY ───────────────────────────────────────────────────────── */
.section-gallery { background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item-large { grid-row: 1 / 3; }
.gallery-item-wide { grid-column: 2 / 4; }
.gallery-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  position: relative;
  overflow: hidden;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 40, 69, 0.85) 60%);
  color: white;
}
.gallery-caption h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.gallery-caption p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.gallery-item-large .gallery-caption h4 { font-size: 1.5rem; }
.gallery-item-large .gallery-caption p { font-size: 1rem; }

/* ─── FEATURES ──────────────────────────────────────────────────────── */
.section-features { background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: all 0.3s;
  border: 1px solid transparent;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 40px rgba(26, 111, 212, 0.15);
}
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: scale(1.05) rotate(-3deg);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ─── PLANS ─────────────────────────────────────────────────────────── */
.section-plans {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--primary-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-plans::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 980px;
  margin: 0 auto 2.5rem;
}
.plan-card {
  background: white;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s;
}
.plan-card-featured {
  background: linear-gradient(180deg, white 0%, var(--cream) 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--accent);
  transform: scale(1.02);
}
.plan-card-featured:hover { transform: scale(1.04); }
.plan-card-soon {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  backdrop-filter: blur(10px);
}
.plan-ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.4);
}
.plan-header {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(15, 40, 69, 0.08);
}
.plan-card-soon .plan-header { border-bottom-color: rgba(255,255,255,0.1); }
.plan-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.plan-tagline {
  font-size: 0.92rem;
  color: var(--text-mid);
}
.plan-card-soon .plan-tagline { color: var(--text-on-dark-mid); }

.plan-price {
  text-align: center;
  margin-bottom: 2rem;
}
.plan-price-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: inline-block;
}
.plan-card-soon .plan-price-amount { color: var(--accent); }
.plan-currency { font-size: 2rem; vertical-align: super; }
.plan-price-period {
  display: block;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-top: 0.4rem;
}
.plan-card-soon .plan-price-period { color: var(--text-on-dark-mid); }

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-dark);
}
.plan-card-soon .plan-features li { color: var(--text-on-dark); }
.plan-features svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--success);
}
.plan-features-muted li { opacity: 0.85; }

.plan-fineprint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.4;
}
.plan-card-soon .plan-fineprint { color: var(--text-on-dark-mid); }

.plan-cta-coming {
  text-align: center;
}
.plan-coming-badge {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-equiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 16px;
  text-align: center;
  color: white;
}
.plan-equiv-icon { font-size: 1.5rem; }
.plan-equiv strong { color: var(--accent); }

/* ─── BETA FORM ─────────────────────────────────────────────────────── */
.section-beta {
  background: var(--white);
  position: relative;
}
.beta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, var(--surface) 0%, var(--cream) 100%);
  padding: 4rem;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.beta-wrapper::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26, 111, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.beta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0.5rem 0 1.25rem;
}
.beta-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.55;
}

.beta-platforms {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.beta-platform {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.beta-platform-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.beta-platform-icon svg { width: 22px; height: 22px; }
.beta-platform strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}
.beta-platform span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.beta-form {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.beta-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(15, 40, 69, 0.12);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 111, 212, 0.1);
}
.form-radio-group {
  display: flex;
  gap: 0.5rem;
}
.form-radio {
  flex: 1;
  position: relative;
  cursor: pointer;
}
.form-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-radio span {
  display: block;
  text-align: center;
  padding: 0.7rem 0.5rem;
  border: 1.5px solid rgba(15, 40, 69, 0.12);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  background: white;
  transition: all 0.2s;
}
.form-radio input:checked + span {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  cursor: pointer;
  line-height: 1.4;
}
.form-checkbox input { margin-top: 3px; flex-shrink: 0; }

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: var(--success);
  font-weight: 600;
  text-align: center;
}

/* ─── ABOUT ─────────────────────────────────────────────────────────── */
.section-about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-content strong { color: var(--navy); }
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 40, 69, 0.08);
}
.about-stat {
  display: flex;
  flex-direction: column;
}
.about-stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-stat span {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.about-visual {
  position: relative;
  height: 400px;
}
.about-big-paw {
  width: 300px; height: 300px;
  color: var(--primary-lighter);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
.about-card-floating {
  position: absolute;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  animation: floatCard 4s ease-in-out infinite;
}
.about-card-floating strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.about-card-floating span:not(.about-card-emoji) {
  font-size: 0.78rem;
  color: var(--text-light);
}
.about-card-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.about-card-1 { top: 10%; left: 5%; }
.about-card-2 { top: 40%; right: 5%; animation-delay: 1s; }
.about-card-3 { bottom: 10%; left: 15%; animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.section-faq { background: var(--surface); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: 16px;
  padding: 0.25rem 1.75rem;
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border: 1px solid transparent;
}
.faq-item[open] {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 1.25rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── FINAL CTA ─────────────────────────────────────────────────────── */
.section-cta-final {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.section-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(91, 163, 232, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-final-card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}
.cta-final-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.cta-final-card p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand-col .brand { color: white; margin-bottom: 1.25rem; }
.footer-brand-col p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
  max-width: 320px;
}
.footer-credit { font-size: 0.85rem; }
.footer-credit strong { color: var(--accent); }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-light); }

.footer-social {
  display: flex;
  gap: 0.65rem;
}
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7) !important;
  margin: 0 !important;
  transition: all 0.2s;
}
.footer-social-link:hover {
  background: var(--primary);
  color: white !important;
  transform: translateY(-2px);
}
.footer-social-link svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-heart {
  color: var(--accent);
  animation: heartBeat 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  20%, 60% { transform: scale(1.2); }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 540px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item-large { grid-row: auto; grid-column: 1 / 3; }
  .gallery-item-wide { grid-column: 1 / 3; }
  .steps-flow {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .step-arrow { display: none; }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 1.5rem;
    border-top: 1px solid rgba(15,40,69,0.08);
    box-shadow: var(--shadow-md);
    gap: 1rem;
  }
  .section { padding: 4rem 0; }
  .hero { padding-top: 7rem; padding-bottom: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-visual { height: 480px; }
  .hero-phone { width: 280px; height: 510px; transform: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large, .gallery-item-wide { grid-column: auto; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card-featured { transform: none; }
  .beta-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2.5rem;
  }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 320px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / 3;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .steps-flow { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: auto; }
  .form-radio-group { flex-direction: column; }
  .hero-trust-divider { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
