:root {
  color-scheme: light dark;
  --dark: #2F2F2F;
  --dark-2: #232323;
  --dark-3: #191919;
  --orange: #EA5B31;
  --orange-soft: #FF7A4D;
  --orange-deep: #C7431E;
  --white: #FFFFFF;
  --surface: #F7F6F5;
  --surface-2: #EFEDEA;
  --line: #E4E1DE;
  --ink: #2F2F2F;
  --ink-soft: #6B6764;
  --ink-faint: #9C9793;
  --success: #3FAE6B;
  --warning: #F2B705;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow-sm: 0 2px 10px rgba(47, 47, 47, .06);
  --shadow: 0 14px 40px rgba(47, 47, 47, .10);
  --shadow-lg: 0 30px 80px rgba(47, 47, 47, .16);
  --glow: 0 18px 50px rgba(234, 91, 49, .35);

  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 40px);
  --base: 17px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}

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

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; }

a { color: var(--orange-deep); }

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 200;
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 16px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}

.site-header.stuck {
  background: rgb(28, 28, 28);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .07), 0 18px 40px rgba(0, 0, 0, .3);
  padding: 8px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { width: 52px; height: 52px; transition: transform .5s var(--ease); }
.brand:hover img { transform: rotate(-8deg) scale(1.06); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; font-size: 1.32rem; color: #fff; letter-spacing: -.02em; }
.brand-name em { font-style: normal; color: var(--orange); }
.brand-tag { font-size: .74rem; color: rgba(255, 255, 255, .62); letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }

.nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
  padding: 90px 26px 40px;
  background: rgba(22, 22, 22, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
  z-index: 105;
}
.nav.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0, 0, 0, .5); }

.nav a {
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.14rem;
  padding: 15px 18px;
  border-radius: var(--radius);
  transition: color .25s, background .25s;
  white-space: nowrap;
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, .1); }

.nav .nav-cta {
  background: var(--orange);
  color: #fff;
  margin: 12px 0 0;
  text-align: center;
  padding-inline: 22px;
  box-shadow: 0 8px 24px rgba(234, 91, 49, .4);
}
.nav .nav-cta:hover { background: var(--orange-soft); transform: translateY(-1px); }

.header-tools { display: flex; align-items: center; gap: 10px; }

.burger {
  position: fixed;
  top: 6px;
  right: 16px;
  z-index: 110;
  display: block;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, .28);
  background: rgba(28, 28, 28, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  padding: 0;
}
.burger span:not(.sr-only) {
  position: absolute;
  left: 0; right: 0;
  margin-inline: auto;
  top: 50%;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { margin-top: -7px; }
.burger span:nth-child(2) { margin-top: -1px; }
.burger span:nth-child(3) { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  background: radial-gradient(120% 90% at 15% 0%, #3A3A3A 0%, var(--dark) 42%, var(--dark-3) 100%);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  animation: float 18s ease-in-out infinite;
}
.orb-1 { width: 520px; height: 520px; background: var(--orange); top: -140px; right: -80px; }
.orb-2 { width: 400px; height: 400px; background: #7A4BE0; bottom: -120px; left: -100px; opacity: .28; animation-delay: -6s; }
.orb-3 { width: 300px; height: 300px; background: var(--orange-soft); top: 45%; left: 42%; opacity: .22; animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -50px) scale(1.12); }
  66%      { transform: translate(-30px, 40px) scale(.94); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(90% 70% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(90% 70% at 50% 40%, #000 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero-copy { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .9);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(63, 174, 107, .7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 12px rgba(63, 174, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 174, 107, 0); }
}

.hero h1 { margin: 22px 0 18px; }
.hero h1 strong {
  color: transparent;
  background: linear-gradient(100deg, var(--orange-soft), var(--orange) 55%, #FFB08E);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
}

.hero .lead {
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  color: rgba(255, 255, 255, .78);
  max-width: 33em;
}
.hero .lead strong { color: #fff; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: none;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-lg { padding: 18px 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(120deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(234, 91, 49, .48);
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .17); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.8px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  list-style: none;
  margin: 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats .num {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: color .5s var(--ease), text-shadow .5s var(--ease), transform .5s var(--ease);
}

.hero-stats .num.counting {
  color: var(--orange-soft);
  text-shadow: 0 0 26px rgba(255, 122, 77, .55);
}

.hero-stats .num.counted {
  animation: numPop .7s var(--ease);
}

@keyframes numPop {
  0%   { transform: scale(1.14); color: var(--orange-soft); text-shadow: 0 0 26px rgba(255, 122, 77, .55); }
  60%  { transform: scale(.985); }
  100% { transform: scale(1); color: #fff; text-shadow: none; }
}
.hero-stats .lbl { font-size: .86rem; color: rgba(255, 255, 255, .6); font-weight: 600; }

.hero-visual {
  position: relative;
  height: clamp(470px, 54vw, 610px);
  perspective: 1600px;
}

.phone {
  position: absolute;
  border-radius: 34px;
  background: linear-gradient(160deg, #4A4A4A, #1C1C1C);
  padding: 10px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55), inset 0 0 0 1.5px rgba(255, 255, 255, .1);
}

.phone-front {
  width: min(58%, 248px);
  left: 1%;
  bottom: 3%;
  z-index: 2;
  transform: rotate(-6deg);
  animation: bobA 8s ease-in-out infinite;
}

.phone-back {
  width: min(52%, 224px);
  right: 0;
  top: 1%;
  transform: rotate(7deg);
  animation: bobB 9s ease-in-out infinite;
}

@keyframes bobA {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-4.5deg) translateY(-18px); }
}
@keyframes bobB {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50%      { transform: rotate(5.5deg) translateY(16px); }
}

.phone-screen {
  position: relative;
  aspect-ratio: 1080 / 1920;
  border-radius: 26px;
  background: #fff;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screen-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, .28) 0%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .3);
  display: grid;
  place-items: center;
  color: #fff;
  animation: nudge 2.4s ease-in-out infinite;
  z-index: 3;
}
.scroll-hint svg { width: 22px; height: 22px; }
@keyframes nudge {
  0%, 100% { transform: translate(-50%, 0); opacity: .6; }
  50%      { transform: translate(-50%, 9px); opacity: 1; }
}

.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section-light { background: var(--surface); }
.section-dark { background: linear-gradient(165deg, var(--dark), var(--dark-3)); color: #fff; }

.section-head { max-width: 800px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }

.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  margin: 0;
}
.section-dark .section-lead { color: rgba(255, 255, 255, .74); }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  counter-reset: s;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.step::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.step:hover::before { transform: scaleX(1); }

.step-num {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 17px;
  background: linear-gradient(140deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: 0 10px 26px rgba(234, 91, 49, .32);
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.historia-copy h2 { margin-bottom: .55em; }
.historia-copy p { color: rgba(255, 255, 255, .76); font-size: 1.03rem; }
.historia-copy .btn { margin-top: 14px; }

.timeline { list-style: none; margin: 0; padding: 0 0 0 34px; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(234, 91, 49, .15));
}
.timeline li { position: relative; padding: 0 0 34px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: '';
  position: absolute;
  left: -34px; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 3px solid var(--orange);
}
.timeline li.now::before {
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(234, 91, 49, .6);
  animation: pulse 2.4s infinite;
}
.timeline .year {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 5px;
}
.timeline h3 { font-size: 1.16rem; margin-bottom: 5px; }
.timeline p { margin: 0; color: rgba(255, 255, 255, .68); font-size: .96rem; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.feature-icon {
  width: 60px; height: 60px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(234, 91, 49, .16), rgba(234, 91, 49, .06));
  color: var(--orange);
  margin-bottom: 20px;
}
.feature-icon svg { width: 30px; height: 30px; stroke-width: 1.9; }
.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

.app-cta {
  margin-top: 44px;
  background: linear-gradient(130deg, var(--dark), var(--dark-3));
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 52px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.app-cta::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(120px);
  opacity: .3;
  top: -180px; right: -120px;
}
.app-cta > div { position: relative; }
.app-cta h3 { margin-bottom: 6px; }
.app-cta p { margin: 0; color: rgba(255, 255, 255, .7); }

.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.store-badge .ico-play,
.store-badge .ico-apple { stroke: none; flex-shrink: 0; }
.store-badge .ico-play { width: 27px; height: 29px; }
.store-badge .ico-apple { width: 24px; height: 29px; fill: #fff; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge em { font-style: normal; font-size: .68rem; color: rgba(255, 255, 255, .62); }
.store-badge strong { font-size: 1rem; }

.section-form {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(234, 91, 49, .1), transparent 70%),
    var(--surface-2);
}

.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4.5vw, 54px);
  box-shadow: var(--shadow-lg);
  max-width: 980px;
  margin-inline: auto;
  position: relative;
}

.fset { border: none; margin: 0 0 40px; padding: 0; }
.fset:last-of-type { margin-bottom: 26px; }

.fset legend {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -.02em;
  padding: 0 0 20px;
  margin-bottom: 8px;
  width: 100%;
  border-bottom: 2px solid var(--surface-2);
}

.fset-num {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.fset-intro { color: var(--ink-soft); font-size: .96rem; margin: 4px 0 20px; }

.field { margin-bottom: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field label,
.field-label {
  display: block;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.req-mark { color: var(--orange); font-weight: 800; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6764' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 48px;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(234, 91, 49, .14);
}

input::placeholder, textarea::placeholder { color: var(--ink-faint); }

.field-help { font-size: .86rem; color: var(--ink-soft); margin: 7px 0 0; }

.field-error {
  font-size: .87rem;
  font-weight: 700;
  color: var(--orange-deep);
  margin: 7px 0 0;
  display: none;
}
.field-error.show { display: block; }

.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--orange-deep); background: rgba(234, 91, 49, .05); }

.field-photo .photo-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  border: 2.5px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color .3s, background .3s;
}
.field-photo .photo-drop:hover { border-color: var(--orange); background: rgba(234, 91, 49, .04); }
.field-photo input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  text-align: center;
  padding: 20px;
}
.photo-placeholder svg { width: 40px; height: 40px; color: var(--orange); margin-bottom: 4px; }
.photo-placeholder strong { color: var(--ink); font-size: 1rem; }
.photo-placeholder em { font-style: normal; font-size: .85rem; }

.photo-drop.has-image { border-style: solid; border-color: var(--line); background: #fff; }

#photoPreview {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: contain;
  margin: 15px auto;
}

.photo-change {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(47, 47, 47, .88);
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.photo-change svg { width: 16px; height: 16px; }

.notice {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .92rem;
  font-weight: 600;
  margin: 12px 0 0;
  line-height: 1.55;
}
.notice-warn { background: rgba(234, 91, 49, .1); color: var(--orange-deep); border-left: 4px solid var(--orange); }
.notice-ok {
  background: rgba(63, 174, 107, .1);
  color: #1F7A46;
  border-left: 4px solid var(--success);
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}
.notice-ok strong { font-size: .98rem; }
.notice-ok span { font-weight: 500; font-size: .89rem; }

.link-btn {
  background: none;
  border: none;
  font: inherit;
  font-weight: 800;
  color: var(--orange-deep);
  cursor: pointer;
  padding: 4px 0 0;
  text-decoration: underline;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; }

.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 11px 19px;
  border-radius: 999px;
  border: 1.8px solid var(--line);
  background: #fff;
  font-size: .95rem;
  font-weight: 600;
  transition: all .25s var(--ease);
  user-select: none;
}
.chip:hover span { border-color: var(--orange); transform: translateY(-2px); }
.chip input:checked + span {
  background: linear-gradient(130deg, var(--orange), var(--orange-deep));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(234, 91, 49, .35);
}
.chip input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 3px; }

.otro-rubro { margin-top: 20px; }

.otro-rubro-panel {
  margin-top: 14px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1.5px solid var(--line);
  animation: slideDown .35s var(--ease);
}
.otro-rubro-panel input { margin-bottom: 14px; background: #fff; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.field-terms { margin-top: 8px; }
.check { display: flex; align-items: flex-start; gap: 14px; cursor: pointer; font-weight: 500; }
.check input {
  appearance: none;
  width: 26px; height: 26px;
  border: 2.2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: all .25s;
}
.check input:checked { background: var(--orange); border-color: var(--orange); }
.check input:checked::after {
  content: '';
  position: absolute;
  left: 8px; top: 3px;
  width: 6px; height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.check span { font-size: .97rem; line-height: 1.55; }

.form-foot {
  text-align: center;
  color: var(--ink-soft);
  font-size: .9rem;
  margin: 20px 0 0;
}

.form-success { text-align: center; padding: 30px 10px 10px; }
.success-mark {
  width: 88px; height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--success), #2E8C53);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 18px 44px rgba(63, 174, 107, .38);
  animation: popIn .55s var(--ease);
}
.success-mark svg { width: 44px; height: 44px; stroke-width: 2.6; }
@keyframes popIn {
  from { transform: scale(.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.form-success p { color: var(--ink-soft); max-width: 46em; margin-inline: auto; }
.form-success .btn { margin-top: 12px; }

.faq-list { max-width: 900px; margin-inline: auto; display: grid; gap: 14px; }

.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .3s;
}
.faq[open] { box-shadow: var(--shadow); border-color: transparent; }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 62px 24px 28px;
  font-weight: 700;
  font-size: 1.06rem;
  position: relative;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--orange-deep); }

.faq summary::after {
  content: '';
  position: absolute;
  right: 26px; top: 50%;
  width: 13px; height: 13px;
  margin-top: -8px;
  border-right: 2.6px solid var(--orange);
  border-bottom: 2.6px solid var(--orange);
  transform: rotate(45deg);
  transition: transform .35s var(--ease);
}
.faq[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }

.faq-body { padding: 0 28px 26px; animation: slideDown .35s var(--ease); }
.faq-body p { margin: 0; color: var(--ink-soft); }

.section-contact { background: linear-gradient(165deg, var(--dark), var(--dark-3)); color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}
.contact-copy .section-lead { color: rgba(255, 255, 255, .74); margin-bottom: 34px; }

.contact-list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.ci {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--orange-soft);
  flex-shrink: 0;
}
.ci svg { width: 25px; height: 25px; }
.contact-list span:last-child { display: flex; flex-direction: column; }
.contact-list em { font-style: normal; font-size: .78rem; color: rgba(255, 255, 255, .55); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.contact-list a, .contact-list strong { color: #fff; text-decoration: none; font-weight: 700; font-size: 1.05rem; }
.contact-list a:hover { color: var(--orange-soft); }
.contact-list small { font-size: .88rem; color: rgba(255, 255, 255, .6); font-weight: 500; margin-top: 2px; }
.contact-list li:has(small) { align-items: flex-start; }

.social-row { display: flex; gap: 12px; }
.social {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  transition: all .3s var(--ease);
}
.social svg { width: 23px; height: 23px; }
.social:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(234, 91, 49, .4); }

.contact-form {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 42px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.contact-form label { color: #fff; }
.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, .4); }
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, .14);
  border-color: var(--orange);
}
.contact-form .field-error { color: #FFB59B; }

.contact-ok {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(63, 174, 107, .16);
  border-left: 4px solid var(--success);
  color: #B6F0CC;
  font-weight: 600;
  font-size: .94rem;
}

.site-footer { background: var(--dark-3); color: rgba(255, 255, 255, .68); padding: 54px 0 40px; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand span { display: flex; flex-direction: column; line-height: 1.2; }
.footer-brand strong { color: #fff; font-size: 1.18rem; }
.footer-brand strong em { font-style: normal; color: var(--orange); }
.footer-brand small { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .45); font-weight: 600; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-nav a { color: rgba(255, 255, 255, .68); text-decoration: none; font-size: .94rem; font-weight: 600; transition: color .25s; }
.footer-nav a:hover { color: var(--orange-soft); }

.footer-legal {
  width: 100%;
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: .89rem;
}
.footer-legal a { color: var(--orange-soft); text-decoration: none; font-weight: 700; }
.footer-legal a:hover { text-decoration: underline; }

.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 52px; height: 52px;
  border-radius: 17px;
  border: none;
  background: linear-gradient(140deg, var(--orange), var(--orange-deep));
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .4s var(--ease);
  z-index: 90;
}
.to-top svg { width: 24px; height: 24px; stroke-width: 2.6; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 720px; margin-inline: auto; }
  .hero .lead { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; height: 500px; max-width: 520px; margin-inline: auto; }
  .historia-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 84px; }
  .grid-2 { grid-template-columns: 1fr; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 1.14rem; }
  .brand-tag { font-size: .66rem; }
  .hero { padding-top: 118px; }
  .hero-visual { height: 420px; max-width: 380px; }
  .hero-stats { gap: 22px 30px; }
  .app-cta { flex-direction: column; align-items: flex-start; }
  .fset legend { font-size: 1.12rem; }
  .faq summary { padding: 20px 54px 20px 22px; font-size: 1rem; }
  .faq-body { padding: 0 22px 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-direction: column; }
  .to-top { right: 14px; bottom: 14px; }
}

@media (max-width: 420px) {
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .chip span { font-size: .89rem; padding: 10px 15px; }
  .hero-visual { height: 370px; max-width: 320px; }
  .form-card, .contact-form { border-radius: var(--radius-lg); }
  .fset legend { font-size: 1.05rem; gap: 10px; }
  .fset-num { width: 32px; height: 32px; font-size: .9rem; }
}

@media (hover: none) {
  .step:hover,
  .feature:hover,
  .btn:hover,
  .social:hover,
  .chip:hover span,
  .brand:hover img,
  .to-top:hover { transform: none; }
  .step:hover::before { transform: scaleX(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .to-top, .hero-visual, .scroll-hint, .orb, .grid-lines { display: none; }
  body { background: #fff; color: #000; }
  .section { padding: 20px 0; }
}

.hp-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
