/* cyrillic-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(../fonts/nunito-cyrillic-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(../fonts/nunito-cyrillic.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(../fonts/nunito-vietnamese.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(../fonts/nunito-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(../fonts/nunito-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* base calida */
  --cream:        #F6EEE0;
  --background:   #EFE7DA;
  --card:          #FAF5EF;
  --fieldBg:      #F0E9DF;
  --sand:         #F0E9DF;
  --line:         #E2D8CE;
  --white:        #FFFFFF;
  --ink:          #3A2E24;
  --ink2:         #8A7060;
  --muted:        #B8A898;

  /* acento naranja */
  --orange:       #E08A4C;
  --buttonOrange: #F48732;
  --pawColor:     #C9733A;
  --orangeDeep:   #C9733A;
  --orangeLight:  #F5C49A;
  --orangeSoft:   #F5E6D4;
  --orangeTintDeep: #EDE1CB;
  --headerGradientTop: #F8E6D2;
  --headerGradientBottom: #F4DCC2;
  --headerTop:    #F8E6D2;
  --heroBg1:      #F4DCC2;
  --heroBg2:      #E7D2B6;

  /* acento salvia */
  --sage:         #87A07C;
  --sageDeep:     #5A8A6A;
  --sageSoft:     #DDEDD8;
  --sageTint:     #EEF3E8;
  --sageTintDeep: #E6EEDF;
  --sageBorder:   #D8E4CD;

  /* estados y semantica */
  --danger:       #D45A5A;
  --dangerSoft:   #FADDDD;
  --golden:       #B0823C;
  --goldenSoft:   #F2E7D5;
  --yellowDeep:   #B8860B;
  --yellowSoft:   #FDF3D6;
  --sexFemale:    #F6A8C2;
  --sexMale:      #8FC6F0;

  --starFilled:   #E7B33C;
  --deep:         #26352C;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 32px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--ink); background: var(--background); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

h1, h2, h3 { font-family: 'Nunito', sans-serif; font-weight: 900; letter-spacing: -0.01em; }

/* ============ NAV ============ */
nav {
  position: sticky; top: 14px; z-index: 100;
  margin: 14px 16px 0;
  background: rgba(250,245,239,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(58,46,36,0.08);
}
@media (min-width: 1180px) {
  nav { max-width: 1140px; margin-left: auto; margin-right: auto; }
}
.nav-inner {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
  height: 72px; padding: 0 18px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img.icon { width: 46px; height: 46px; }
.nav-logo img.wordmark { height: 30px; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--ink2); font-size: 14.5px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.btn-nav {
  display: inline-block; text-decoration: none; font-size: 14.5px;
  background: var(--buttonOrange) !important; color: white !important;
  padding: 9px 22px; border-radius: 100px; font-weight: 700 !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--orangeDeep) !important; }

/* ============ SECTION HEADER PATTERNS ============ */
.section-label {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.14em; color: var(--orange);
  text-transform: uppercase; margin-bottom: 10px;
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15; color: var(--ink); margin-bottom: 14px;
}
.section-head-center { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head-center p { color: var(--ink2); font-size: 15.5px; line-height: 1.7; }
.section-head-split {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem;
  align-items: end; margin-bottom: 48px;
}
.section-head-split p { color: var(--ink2); font-size: 15.5px; line-height: 1.7; }
.divider-line { height: 1px; background: var(--line); }

/* ============ HERO ============ */
.hero-wrap {
  background: var(--background);
  padding-top: 56px;
}
.hero {
  max-width: 1140px; margin: 0 auto;
  padding: 40px 2rem 88px;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); color: var(--orangeDeep);
  border: 1px solid var(--orangeLight); border-radius: 100px;
  font-size: 13px; font-weight: 700; padding: 7px 16px; margin-bottom: 22px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--buttonOrange); flex-shrink: 0; }
h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--ink); margin-bottom: 14px;
}
h1 .accent {
  color: var(--orangeDeep);
  text-decoration: underline;
  text-decoration-color: var(--orangeLight);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}
.hero-kicker {
  font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700;
  color: var(--sageDeep); margin-bottom: 20px;
}
.hero-sub { font-size: 16.5px; color: var(--ink2); margin-bottom: 28px; line-height: 1.75; max-width: 480px; }

.hero-info-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 18px 20px;
  margin-bottom: 28px; max-width: 500px;
  box-shadow: 0 4px 18px rgba(58,46,36,0.05);
}
.hero-info-icon {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px;
  background: var(--yellowSoft); border: 1px solid #F0D88A;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.hero-info-card p { font-size: 14px; color: var(--ink2); line-height: 1.6; margin: 0; }
.hero-info-card p strong { color: var(--ink); }

.hero-status-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 22px 24px;
  margin-bottom: 28px; max-width: 460px;
  box-shadow: 0 4px 18px rgba(58,46,36,0.05);
}
.hero-status-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orangeDeep); margin-bottom: 10px;
}
.hero-status-label .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--buttonOrange); flex-shrink: 0; }
.hero-status-card h3 { font-size: 16.5px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.hero-status-card p { font-size: 13.5px; color: var(--ink2); line-height: 1.6; margin-bottom: 14px; }
.hero-status-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-status-badges span {
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  background: var(--fieldBg); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 100px;
}
.hero-status-badges a {
  display: inline-flex; align-items: center;
  transition: transform 0.15s;
}
.hero-status-badges a:hover { transform: translateY(-2px); }
.hero-status-badges a img { height: 40px; width: auto; }

.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 30px; }
.btn-primary {
  background: var(--buttonOrange); color: white;
  padding: 14px 30px; border-radius: 100px;
  font-weight: 700; font-size: 15.5px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(244,135,50,0.30);
}
.btn-primary:hover { background: var(--orangeDeep); transform: translateY(-2px); }
.btn-secondary { color: var(--ink2); font-weight: 700; font-size: 15px; text-decoration: none; transition: color 0.2s; }
.btn-secondary:hover { color: var(--orange); }

.hero-checks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-checks span { font-size: 13.5px; font-weight: 600; color: var(--ink2); display: inline-flex; align-items: center; gap: 6px; }
.hero-checks span::before { content: '✓'; color: var(--sageDeep); font-weight: 800; }

/* HERO VISUAL */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual::before {
  content: ''; position: absolute; width: 340px; height: 340px;
  background: var(--orangeSoft); border-radius: 50%; opacity: 0.8;
  top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 0;
}
.hero-visual::after {
  content: ''; position: absolute; width: 220px; height: 220px;
  background: var(--orangeTintDeep);
  border: 1.5px solid var(--orangeLight); border-radius: 50%;
  top: -10px; right: -10px; z-index: 0;
}
.hero-img {
  position: relative; z-index: 1;
  width: 100%; max-width: 380px;
  height: auto; object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(58,46,36,0.28));
}
.hero-img-tilt { transform: rotate(10deg); }

.hero-float-card {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(58,46,36,0.16);
  animation: heroFloatY 3.6s ease-in-out infinite;
  max-width: 210px;
}
.hero-float-icon {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.hero-float-title { font-weight: 800; font-size: 13px; color: var(--ink); line-height: 1.3; }
.hero-float-sub { font-size: 11.5px; color: var(--ink2); line-height: 1.3; }
.hero-float-card.card-1 { top: 6%; left: -8%; animation-delay: 0s; }
.hero-float-card.card-1 .hero-float-icon { background: var(--yellowSoft); }
.hero-float-card.card-2 { bottom: 10%; right: -10%; animation-delay: 1.4s; }
.hero-float-card.card-2 .hero-float-icon { background: var(--sageSoft); }
@keyframes heroFloatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 900px) {
  .hero-float-card.card-1 { left: 2%; }
  .hero-float-card.card-2 { right: 2%; }
}
@media (max-width: 640px) {
  .hero-float-card { display: none; }
}

/* Hueco reservado para la captura/mockup del móvil: sustituir por <img class="hero-img"> cuando exista el asset */
.hero-phone-slot {
  position: relative; z-index: 1;
  width: min(300px, 100%);
  aspect-ratio: 9 / 19.5;
  border: 2px dashed var(--sageBorder);
  border-radius: 36px;
  background: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  color: var(--ink2); font-size: 13px; font-weight: 600; line-height: 1.5;
}
.hero-phone-slot.small {
  width: 140px;
  border-radius: 22px;
  padding: 14px;
  font-size: 11px;
}
.step-phone-img {
  width: 150px; max-width: 60%; height: auto;
  filter: drop-shadow(0 14px 30px rgba(58,46,36,0.25));
}

/* ============ PROBLEM / NUMBERED LIST ============ */
.problem-section { background: var(--white); padding: 88px 0; }
.problem-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.problem-grid h2 { margin-bottom: 0; }
.numbered-list { display: flex; flex-direction: column; }
.numbered-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.numbered-list .numbered-item:last-child { border-bottom: 1px solid var(--line); }
.numbered-badge {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 10px;
  border: 1.5px solid var(--orangeLight); color: var(--orangeDeep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13.5px;
}
.numbered-item h3 { font-size: 16.5px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.numbered-item p { font-size: 14.5px; color: var(--ink2); line-height: 1.6; }

/* ============ FULL-BLEED QUOTE BAND ============ */
.band-section { background: var(--background); border-top: 1px solid var(--sageBorder); border-bottom: 1px solid var(--sageBorder); padding: 68px 0; }
.band-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; }
.band-grid h2 { margin-bottom: 0; font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.band-grid h2 .line2 { color: var(--orangeDeep); display: block; }
.band-aside { display: flex; align-items: stretch; gap: 20px; }
.band-aside-bar { width: 3px; background: var(--sageDeep); border-radius: 2px; flex-shrink: 0; }
.band-aside p { font-size: 15.5px; font-weight: 700; color: var(--ink); line-height: 1.6; }

/* ============ ORIGIN STORY ============ */
.origin-section { background: var(--card); padding: 80px 0; }
.origin-inner { max-width: 720px; margin: 0 auto; }
.origin-inner p { font-size: 15px; color: var(--ink2); line-height: 1.75; margin-bottom: 20px; }
.origin-inner p:last-child { margin-bottom: 0; }

/* ============ STEPS ============ */
.steps-section { background: var(--white); padding: 88px 0; }
.steps-list { display: flex; flex-direction: column; gap: 22px; }
.step-card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: grid; grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
}
.step-card-text { padding: 44px 46px; display: flex; flex-direction: column; justify-content: center; }
.step-pill {
  align-self: flex-start;
  border: 1.5px solid var(--orangeLight); color: var(--orangeDeep);
  font-size: 12px; font-weight: 800; padding: 4px 14px;
  border-radius: 100px; margin-bottom: 18px;
}
.step-label { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; color: var(--ink2); text-transform: uppercase; margin-bottom: 8px; }
.step-card-text h3 { font-size: 1.5rem; font-weight: 900; color: var(--ink); margin-bottom: 12px; }
.step-card-text p { font-size: 15px; color: var(--ink2); line-height: 1.7; margin-bottom: 20px; max-width: 380px; }
.step-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.step-tags span { background: var(--fieldBg); border: 1px solid var(--line); color: var(--ink); font-size: 12.5px; font-weight: 600; padding: 6px 13px; border-radius: 100px; }
.step-visual {
  display: flex; align-items: center; justify-content: center;
  min-height: 260px; font-size: 88px;
}
.step-visual.tone-orange { background: var(--orangeSoft); }
.step-visual.tone-sage { background: var(--sageDeep); color: white; }
.step-visual.tone-peach { background: var(--orangeTintDeep); }
@media (max-width: 860px) {
  .step-card { grid-template-columns: 1fr; }
  .step-visual { min-height: 180px; order: -1; }
  .step-card-text { padding: 34px 28px; }
}

/* ============ FEATURES (secondary grid) ============ */
.features { background: var(--sand); padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px;
}
.feature-card {
  background: var(--card); border-radius: var(--radius-md);
  padding: 28px; border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,115,58,0.12); }
.feature-icon {
  width: 48px; height: 48px; background: var(--orangeSoft);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 16px;
  border: 1px solid var(--orangeLight);
}
.feature-card h3 { font-weight: 800; font-size: 16px; margin-bottom: 8px; color: var(--ink); }
.feature-card p { font-size: 14px; color: var(--ink2); line-height: 1.65; }

/* ============ VET BAND ============ */
.vet-section { background: var(--background); padding: 88px 0; }
.vet-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.vet-grid .section-label { color: var(--orangeDeep); }
.vet-grid h2 { color: var(--ink); }
.vet-grid > div:last-child p { color: var(--ink2); font-size: 15.5px; line-height: 1.7; margin-bottom: 22px; }
.vet-list { list-style: none; display: flex; flex-direction: column; }
.vet-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 15px; color: var(--ink);
  font-weight: 600; padding: 14px 0; border-top: 1px solid var(--line);
}
.vet-list li:last-child { border-bottom: 1px solid var(--line); }
.vet-item-left { display: flex; align-items: center; gap: 12px; }
.vet-item-desc { font-size: 13px; font-weight: 600; color: var(--ink2); text-align: right; flex-shrink: 0; }
.vet-phone-wrap { display: flex; justify-content: center; }
.vet-check {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: var(--sageSoft); color: var(--sageDeep);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800;
}
.vet-link { display: inline-block; margin-top: 8px; color: var(--orangeDeep); font-weight: 800; font-size: 15px; text-decoration: none; border-bottom: 2px solid var(--buttonOrange); padding-bottom: 4px; }
.vet-cards { display: flex; flex-direction: column; gap: 14px; }
.vet-card {
  background: rgba(255,255,255,0.08); border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.16); padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(6px);
}
.vet-card-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.14); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.vet-card-title { font-weight: 800; font-size: 14px; color: white; }
.vet-card-desc { font-size: 13px; color: rgba(255,255,255,0.72); }

/* ============ COLOR LEGEND (AI states) ============ */
.legend-section { background: var(--white); padding: 88px 0; }
.legend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.legend-grid > div:first-child p { color: var(--ink2); font-size: 15.5px; line-height: 1.7; margin-bottom: 8px; }
.legend-list { list-style: none; display: flex; flex-direction: column; margin-top: 24px; }
.legend-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.legend-list li:last-child { border-bottom: 1px solid var(--line); }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.ok { background: var(--sageDeep); }
.legend-dot.warn { background: var(--yellowDeep); }
.legend-dot.bad { background: var(--danger); }
.legend-label { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 15px; color: var(--ink); }
.legend-desc { font-size: 13.5px; color: var(--ink2); text-align: right; }

.analysis-mock {
  background: var(--card); border-radius: var(--radius-xl);
  border: 1px solid var(--line); padding: 28px;
  box-shadow: 0 16px 50px rgba(58,46,36,0.10);
  max-width: 340px; margin: 0 auto;
}
.analysis-mock-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.analysis-mock-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--orangeSoft); border: 1px solid var(--orangeLight); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.analysis-mock-title { font-weight: 800; font-size: 15px; color: var(--ink); }
.analysis-mock-sub { font-size: 12px; color: var(--ink2); }
.analysis-mock-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); font-size: 13.5px; }
.analysis-pill { font-size: 11.5px; font-weight: 800; padding: 4px 12px; border-radius: 100px; }
.analysis-pill.ok { background: var(--sageSoft); color: var(--sageDeep); }
.analysis-pill.warn { background: var(--yellowSoft); color: var(--yellowDeep); }
.analysis-pill.bad { background: var(--dangerSoft); color: var(--danger); }

/* ============ DISCLAIMER CARD ============ */
.disclaimer-wrap { background: var(--background); padding: 88px 0; }
.disclaimer-card {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 52px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center;
}
.disclaimer-card::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  border: 40px solid var(--orangeTintDeep); opacity: 0.6;
}
.disclaimer-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sageDeep); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; position: relative; z-index: 1;
}
.disclaimer-card h2 { position: relative; z-index: 1; margin-bottom: 0; }
.disclaimer-text { position: relative; z-index: 1; padding-left: 2.5rem; border-left: 1px solid var(--line); }
.disclaimer-text p { font-size: 15px; color: var(--ink2); line-height: 1.75; margin-bottom: 12px; }
.disclaimer-text p:last-child { margin-bottom: 0; font-weight: 700; color: var(--ink); }
@media (max-width: 860px) {
  .disclaimer-card { grid-template-columns: 1fr; padding: 36px 28px; }
  .disclaimer-text { padding-left: 0; border-left: none; padding-top: 1.5rem; border-top: 1px solid var(--line); }
}

/* ============ TRUST GRID ============ */
.trust-section { background: var(--white); padding: 88px 0; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trust-card {
  background: var(--card); border: 1px solid var(--sageBorder);
  border-radius: var(--radius-lg); padding: 32px;
}
.trust-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--sageSoft); color: var(--sageDeep);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; margin-bottom: 18px; font-weight: 800;
}
.trust-card h3 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--ink2); line-height: 1.6; }
@media (max-width: 640px) { .trust-grid { grid-template-columns: 1fr; } }

/* ============ PLANES (simple, gratis + premium teaser) ============ */
.plans-simple-section { background: var(--background); padding: 88px 0; }
.plans-notice {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 16px 22px;
  font-size: 13.5px; color: var(--ink2); margin-bottom: 36px;
}
.plans-notice strong { color: var(--ink); }
.plans-simple-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.plan-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.plan-box-label { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink2); }
.plan-box-badge {
  position: absolute; top: 28px; right: 28px;
  background: var(--sageSoft); color: var(--sageDeep);
  font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 100px;
}
.plan-box h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin: 10px 0 18px; }
.plan-box-price { font-size: 34px; font-weight: 900; color: var(--ink); margin-bottom: 4px; }
.plan-box-price span { font-size: 14px; font-weight: 600; color: var(--ink2); }
.plan-box-note { font-size: 12.5px; color: var(--ink2); margin-top: 14px; }
.plan-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 4px 0 20px; }
.plan-checklist li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); }
.plan-checklist li::before { content: '✓'; color: var(--sageDeep); font-weight: 800; }
.plan-box-btn {
  display: block; text-align: center; width: 100%;
  background: var(--fieldBg); color: var(--ink2); border: 1px solid var(--line);
  padding: 13px; border-radius: 100px; font-weight: 700; font-size: 14.5px;
  margin-top: 24px; cursor: default;
}
.plan-box.featured { background: var(--buttonOrange); border-color: var(--buttonOrange); }
.plan-box.featured .plan-box-label,
.plan-box.featured h3,
.plan-box.featured p { color: white; }
.plan-box.featured .plan-box-badge { background: rgba(255,255,255,0.22); color: white; }
@media (max-width: 720px) { .plans-simple-grid { grid-template-columns: 1fr; } }

/* ============ PLANS ============ */
.plans-wrap { background: var(--cream); padding: 88px 0; }
.plans-wrap .section-label, .plans-wrap h2, .plans-wrap > .section-inner > p { text-align: center; }
.plans-wrap h2 { margin-bottom: 10px; }
.plans-scroll {
  display: flex;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 28px 2rem 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orangeLight) var(--cream);
}
.plans-scroll::-webkit-scrollbar { height: 6px; }
.plans-scroll::-webkit-scrollbar-track { background: var(--cream); }
.plans-scroll::-webkit-scrollbar-thumb { background: var(--orangeLight); border-radius: 100px; }

.plan-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  padding: 0 0 28px;
  border: 1.5px solid var(--line);
  background: var(--card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-card.plan-featured {
  border: 2px solid var(--orange);
  background: linear-gradient(160deg, var(--heroBg1) 0%, var(--card) 100%);
}
.plan-badge {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  background: var(--buttonOrange);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  z-index: 2;
}
.plan-dog-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--fieldBg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.plan-card.plan-featured .plan-dog-wrap {
  background: var(--heroBg2);
}
.plan-dog {
  width: 150px;
  height: 160px;
  object-fit: contain;
  object-position: bottom;
}
.plan-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  margin: 20px 20px 4px;
}
.plan-card.plan-featured .plan-name { color: var(--orangeDeep); }
.plan-price-big {
  font-size: 32px;
  font-weight: 900;
  color: var(--ink);
  text-align: center;
  margin: 0 20px 6px;
  line-height: 1.1;
}
.plan-eur { font-size: 14px; font-weight: 500; color: var(--ink2); }
.plan-sep { height: 1px; background: var(--line); margin: 16px 20px; }
.plan-card.plan-featured .plan-sep { background: var(--orangeLight); }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}
.pmuted { color: var(--ink2); }
.pna { color: var(--muted); }

/* ============ CONTACT ============ */
.contact-section { background: var(--background); padding: 88px 0; border-top: 1px solid var(--line); }
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-inner h2 { margin-bottom: 12px; }
.contact-inner p { color: var(--ink2); font-size: 16px; margin-bottom: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-send {
  background: var(--buttonOrange);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(244,135,50,0.30);
}
.contact-form .btn-send:hover { background: var(--orangeDeep); transform: translateY(-2px); }
.contact-status { font-size: 14px; text-align: center; min-height: 20px; margin: 0; }
.contact-status.success { color: var(--sageDeep); font-weight: 600; }
.contact-status.error { color: var(--danger); font-weight: 600; }
.contact-alt { margin-top: 28px; font-size: 14px; color: var(--ink2); }
.contact-alt .contact-email { color: var(--orange); font-weight: 600; }

/* ============ REVIEWS ============ */
.reviews-section { background: var(--cream); padding: 88px 0; border-top: 1px solid var(--line); }
.reviews-section .section-label, .reviews-section h2, .reviews-subtitle { text-align: center; }
.reviews-subtitle { color: var(--ink2); font-size: 15px; margin-bottom: 48px; }
.reviews-scroll {
  display: flex;
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 8px 2rem 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orangeLight) var(--cream);
}
.reviews-scroll::-webkit-scrollbar { height: 6px; }
.reviews-scroll::-webkit-scrollbar-track { background: var(--cream); }
.reviews-scroll::-webkit-scrollbar-thumb { background: var(--orangeLight); border-radius: 100px; }
.review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,115,58,0.10); }
.review-stars { color: var(--starFilled); font-size: 16px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: var(--ink); line-height: 1.7; flex: 1; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orangeSoft);
  border: 2px solid var(--orangeLight);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  font-weight: 700; color: var(--orangeDeep);
}
.review-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.review-pet { font-size: 12px; color: var(--ink2); }
.review-plan {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--orangeSoft);
  color: var(--orangeDeep);
  border: 1px solid var(--orangeLight);
  align-self: flex-start;
}

/* ============ UPCOMING / ROADMAP ============ */
.upcoming-section { background: var(--sand); padding: 88px 0; border-top: 1px solid var(--line); }
.upcoming-section .section-label, .upcoming-section h2 { text-align: center; }
.upcoming-grid {
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px;
}
.upcoming-card {
  background: var(--card); border-radius: var(--radius-md);
  border: 1.5px solid var(--orangeLight);
  padding: 28px; display: flex; align-items: flex-start; gap: 18px;
}
.upcoming-icon {
  width: 48px; height: 48px; flex-shrink: 0; background: var(--orangeSoft);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 22px; border: 1px solid var(--orangeLight);
}
.upcoming-card h3 { font-weight: 800; font-size: 16px; margin-bottom: 8px; color: var(--ink); }
.upcoming-card p { font-size: 14px; color: var(--ink2); line-height: 1.65; }

/* ============ FAQ ============ */
.faq-section { background: var(--white); padding: 88px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; }
.faq-link { display: inline-block; margin-top: 6px; color: var(--orangeDeep); font-weight: 800; font-size: 14.5px; text-decoration: none; border-bottom: 2px solid var(--orangeLight); padding-bottom: 3px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-weight: 800; font-size: 15.5px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--line); color: var(--ink2);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.faq-item[open] summary::after { transform: rotate(135deg); background: var(--orangeSoft); color: var(--orangeDeep); border-color: var(--orangeLight); }
.faq-item p { font-size: 14.5px; color: var(--ink2); line-height: 1.7; padding-bottom: 22px; max-width: 560px; }

/* ============ FINAL CTA ============ */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--sageDeep) 0%, #3F6B4C 100%);
  padding: 88px 2rem; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; top: -120px; right: -100px;
  width: 340px; height: 340px; border-radius: 50%;
  border: 44px solid rgba(255,255,255,0.06);
}
.cta-section::after {
  content: ''; position: absolute; bottom: -140px; left: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section h2 { color: white; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 17px; margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: white; color: var(--sageDeep); padding: 14px 38px; border-radius: 100px; font-weight: 800; font-size: 16px; text-decoration: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.20); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.5); color: white; padding: 13px 34px; border-radius: 100px; font-weight: 700; font-size: 16px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ============ BANDA "LLEGARÁ PRONTO" ============ */
.launch-section { background: var(--background); padding: 88px 0; }
.launch-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.launch-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 12px; }
.launch-badges span {
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  background: var(--fieldBg); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 100px;
}
.launch-badges a {
  display: inline-flex; align-items: center;
  transition: transform 0.15s;
}
.launch-badges a:hover { transform: translateY(-2px); }
.launch-badges a img { height: 40px; width: auto; }
.launch-logo { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.launch-logo img.icon { width: 160px; height: 160px; }
.launch-logo img.wordmark { height: 60px; }
@media (max-width: 900px) { .launch-grid { grid-template-columns: 1fr; text-align: center; } .launch-badges { justify-content: center; } }

/* ============ FOOTER ============ */
footer { background: var(--ink); color: var(--muted); padding: 64px 0 0; font-size: 14px; }
footer.footer-orange { background: #3A2E23; color: var(--muted); }
footer.footer-orange .footer-tagline,
footer.footer-orange .footer-col a,
footer.footer-orange .footer-bottom p { color: var(--muted); }
footer.footer-orange .footer-col-title { color: var(--ink2); }
footer.footer-orange .footer-col a:hover { color: var(--orangeLight); }
footer.footer-orange .footer-bottom strong { color: var(--orangeLight); }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img.icon { width: 93.5px; height: 93.5px; }
.footer-brand img.wordmark { height: 60.5px; }
.footer-tagline { font-size: 13.5px; color: var(--muted); line-height: 1.6; max-width: 260px; }
.footer-col-title { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink2); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orangeLight); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom strong { color: var(--orangeLight); }
.footer-bottom .disclaimer { font-size: 11.5px; max-width: 480px; }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* legacy simple footer (legal pages) */
footer > p { text-align: center; padding: 0 2rem 28px; font-size: 14px; color: var(--muted); }
footer > p strong { color: var(--orangeLight); }
footer > .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 24px; padding: 20px 2rem 32px; border-top: 1px solid rgba(255,255,255,0.08); }
footer > .footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; transition: color 0.2s; }
footer > .footer-links a:hover { color: var(--orangeLight); }
footer > .footer-links span { color: rgba(255,255,255,0.15); }

/* ============ LEGAL PAGES (unchanged structure) ============ */
.legal-page { background: var(--cream); min-height: 100vh; padding: 56px 2rem 80px; }
.legal-page .legal-modal {
  max-width: 720px; margin: 0 auto;
  max-height: none; overflow: visible;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.legal-modal {
  background: var(--cream);
  border-radius: var(--radius-md);
  max-width: 680px;
  width: 100%;
  padding: 40px;
  position: relative;
  border: 1px solid var(--line);
}
.legal-modal h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}
.legal-modal h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--orangeDeep);
  margin: 20px 0 6px;
}
.legal-modal p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-list {
  margin: 0 0 10px;
  padding-left: 20px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
}
.legal-list li { margin-bottom: 4px; }
.legal-table-wrap { overflow-x: auto; margin-bottom: 14px; }
.legal-table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 13px; }
.legal-table th, .legal-table td {
  border: 1px solid var(--line);
  padding: 8px 10px;
  text-align: left;
  color: var(--ink2);
  line-height: 1.5;
}
.legal-table th { color: var(--ink); font-weight: 700; background: var(--sand); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; padding: 32px 1.5rem 56px; }
  .hero-sub, .hero-info-card, .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-checks { justify-content: center; }
  .problem-grid, .band-grid, .vet-grid, .legend-grid, .faq-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .band-grid, .vet-grid { text-align: left; }
  .section-head-split { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-img { max-width: 280px; }
}
