:root {
  --navy: #0e1b3d;
  --navy-2: #16264f;
  --navy-3: #1f3264;
  --orange: #f2794f;
  --orange-deep: #e2542e;
  --orange-soft: #fdede7;
  --ink: #1a1613;
  --slate: #4a5578;
  --muted: #8a93b0;
  --line: #dde3f0;
  --cream: #faf6f2;
  --white: #ffffff;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(14, 27, 61, .06), 0 12px 32px -12px rgba(14, 27, 61, .18);
  --ease: cubic-bezier(.2, .7, .2, 1);

  --f-display: "Poppins", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--f-display); margin: 0; line-height: 1.1; letter-spacing: -.02em; }
p { margin: 0; }
ol, ul { list-style: none; margin: 0; padding: 0; }
svg { flex-shrink: 0; }
h1 em, h2 em { font-style: normal; color: var(--orange); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.center { display: flex; justify-content: center; }

.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--white); padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-display); font-weight: 600; text-decoration: none; white-space: nowrap;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, box-shadow .25s, border-color .25s;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn--sm { font-size: 14px; padding: 10px 18px; }
.btn--lg { font-size: 16px; padding: 16px 28px; }
.btn--primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-deep) 100%);
  box-shadow: 0 10px 24px -10px rgba(226, 84, 46, .7), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(226, 84, 46, .8), inset 0 1px 0 rgba(255, 255, 255, .25); }
.btn--ghost { color: var(--white); border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .06); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .6); }

.eyebrow {
  display: inline-block; font-family: var(--f-display); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-deep); background: var(--orange-soft);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow--dark { color: #ffb59a; background: rgba(242, 121, 79, .14); border: 1px solid rgba(242, 121, 79, .3); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.is-scrolled { background: rgba(14, 27, 61, .88); backdrop-filter: blur(14px) saturate(140%); box-shadow: 0 1px 0 rgba(255, 255, 255, .08); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { color: rgba(255, 255, 255, .78); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--white); }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__funtour { height: 22px; width: auto; filter: brightness(0) invert(1); }
.brand__sep { width: 1px; height: 20px; background: rgba(255, 255, 255, .25); }
.brand__powered { display: inline-flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, .55); font-size: 11px; }
.brand__powered img { height: 16px; width: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--white); background: var(--navy); padding: 132px 0 40px; isolation: isolate; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% center; z-index: -2; }
.hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 27, 61, .95) 0%, rgba(14, 27, 61, .82) 42%, rgba(14, 27, 61, .45) 100%),
    linear-gradient(0deg, var(--navy) 0%, rgba(14, 27, 61, 0) 45%);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; min-height: 560px; }
.hero h1 { font-size: clamp(42px, 6.2vw, 76px); font-weight: 700; margin-bottom: 22px; }
.hero h1 em { display: block; }
.lead { font-size: 18px; color: rgba(255, 255, 255, .78); max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 28px; }

.trust { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255, 255, 255, .7); }
.trust strong { color: var(--white); font-weight: 600; }
.trust__avatars { display: flex; }
.trust__avatars i { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--navy); margin-left: -8px; background: linear-gradient(135deg, #ffb59a, var(--orange-deep)); }
.trust__avatars i:first-child { margin-left: 0; background: linear-gradient(135deg, #9fb6ff, #4a63b8); }
.trust__avatars i:last-child { background: linear-gradient(135deg, #ffe08a, #f2a14f); }

.hero__visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.hero__tag { position: relative; width: min(230px, 60%); height: auto; filter: drop-shadow(0 40px 50px rgba(0, 0, 0, .5)); animation: float 6s ease-in-out infinite; transform: rotate(-8deg); }
.pulse { position: absolute; inset: 0; display: grid; place-items: center; }
.pulse span { position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(242, 121, 79, .45); animation: ripple 4.5s var(--ease) infinite; opacity: 0; }
.pulse span:nth-child(2) { animation-delay: 1.5s; }
.pulse span:nth-child(3) { animation-delay: 3s; }

.ping-card {
  position: absolute; right: 0; bottom: 70px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px 12px 12px; border-radius: 16px;
  background: rgba(255, 255, 255, .96); color: var(--ink);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, .5);
  animation: float 6s ease-in-out infinite reverse;
}
.ping-card strong { display: block; font-family: var(--f-display); font-size: 14px; line-height: 1.2; }
.ping-card small { color: var(--slate); font-size: 12px; white-space: nowrap; }
.ping-card__icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--orange-soft); }
.ping-card__icon svg { width: 20px; height: 20px; fill: none; stroke: var(--orange-deep); stroke-width: 2; }
.ping-card__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .2); margin-left: 6px; }

.features {
  display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius);
  background: rgba(255, 255, 255, .05); backdrop-filter: blur(12px);
}
.features li { display: flex; gap: 14px; padding: 24px; }
.features li + li { border-left: 1px solid rgba(255, 255, 255, .1); }
.features h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; letter-spacing: -.01em; }
.features p { font-size: 13.5px; line-height: 1.5; color: rgba(255, 255, 255, .6); }
.features__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(242, 121, 79, .16); }
.features__icon svg { width: 20px; height: 20px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Sections ---------- */
.section { position: relative; padding: 112px 0; }
.section--light { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: var(--white); overflow: hidden; }
.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 700; margin-bottom: 16px; }
.section__head p { font-size: 18px; color: var(--slate); }
.section__head p a { color: var(--orange-deep); font-weight: 600; }

/* Flow */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.flow__step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform .35s var(--ease); }
.flow__step:hover { transform: translateY(-4px); }
.flow__art { height: 150px; border-radius: 14px; margin-bottom: 24px; display: grid; place-items: center; background: linear-gradient(160deg, #f4f6fb, #eaeef8); }
.flow__art svg { width: 160px; height: 120px; }
.s-line { fill: none; stroke: var(--navy); stroke-width: 3; }
.s-fill { fill: var(--orange); }
.s-dot { fill: var(--navy-3); }
.s-map { fill: #dfe6f5; }
.s-ring { fill: none; stroke: var(--orange); stroke-width: 2; opacity: .5; transform-origin: 60px 45px; animation: ring 3s var(--ease) infinite; }
.s-ring--2 { opacity: .25; animation-delay: .6s; }
.flow__num { font-family: var(--f-display); font-size: 13px; font-weight: 600; color: var(--orange-deep); letter-spacing: .1em; }
.flow h3 { font-size: 22px; margin: 6px 0 10px; }
.flow p { color: var(--slate); }

/* Steps (navy) */
.glow { position: absolute; width: 720px; height: 720px; border-radius: 50%; top: -360px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(242, 121, 79, .22), transparent 65%); pointer-events: none; }
.section--navy .section__head p { color: rgba(255, 255, 255, .7); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px; counter-reset: s; }
.steps li {
  position: relative; padding: 28px 24px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .1);
  transition: border-color .3s, transform .35s var(--ease);
}
.steps li:hover { border-color: rgba(242, 121, 79, .5); transform: translateY(-4px); }
.steps__n { position: absolute; top: 20px; right: 22px; font-family: var(--f-display); font-size: 44px; font-weight: 700; line-height: 1; color: rgba(255, 255, 255, .08); }
.steps__icon { width: 44px; height: 44px; padding: 11px; border-radius: 12px; background: rgba(242, 121, 79, .16); fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 22px; }
.steps h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; letter-spacing: -.01em; }
.steps p { font-size: 14.5px; color: rgba(255, 255, 255, .65); }

/* Casos carousel */
.casos__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.carousel-ctrl { display: flex; gap: 10px; margin-bottom: 56px; }
.icon-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); display: grid; place-items: center; cursor: pointer; transition: background-color .2s, border-color .2s, opacity .2s; }
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn:hover:not(:disabled) { background: var(--navy); border-color: var(--navy); }
.icon-btn:hover:not(:disabled) svg { stroke: var(--white); }
.icon-btn:disabled { opacity: .4; cursor: default; }

.casos {
  --pad: max(24px, calc((100vw - 1200px) / 2 + 24px));
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 380px); gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--pad);
  padding: 4px var(--pad) 24px; scrollbar-width: none;
}
.casos::-webkit-scrollbar { display: none; }
.caso { position: relative; scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--navy); color: var(--white); isolation: isolate; }
.caso img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.caso::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14, 27, 61, 0) 30%, rgba(14, 27, 61, .92) 100%); }
.caso:hover img { transform: scale(1.06); }
.caso div { position: absolute; inset: auto 0 0; padding: 26px; }
.caso h3 { font-size: 22px; margin-bottom: 8px; }
.caso p { font-size: 14.5px; color: rgba(255, 255, 255, .78); }

/* FAQ */
.faq { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.faq .section__head { position: sticky; top: 110px; }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list details:first-child { border-top: 1px solid var(--line); }
.faq__list summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0; font-family: var(--f-display); font-size: 18px; font-weight: 600; letter-spacing: -.01em;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: ""; width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e2542e' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform .3s var(--ease), background-color .3s;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list details p { padding: 0 48px 24px 0; color: var(--slate); }

/* CTA */
.cta-wrap { padding-top: 0; }
.cta {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 40px;
  padding: 64px 72px; border-radius: 32px; color: var(--white);
  background: radial-gradient(120% 140% at 0% 100%, rgba(242, 121, 79, .35), transparent 50%), linear-gradient(135deg, var(--navy-3), var(--navy));
}
.cta::before { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -180px; border-radius: 50%; background: rgba(255, 255, 255, .05); z-index: -1; }
.cta__tag { width: 190px; height: auto; margin: -20px auto; transform: rotate(10deg); filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .45)); }
.cta h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin-bottom: 14px; }
.cta__body > p { color: rgba(255, 255, 255, .75); font-size: 18px; }
.stores { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 22px; }
.store {
  display: inline-flex; align-items: center; gap: 12px; padding: 10px 22px 10px 16px; border-radius: 14px;
  background: var(--white); color: var(--ink); text-decoration: none; font-family: var(--f-display); font-weight: 600; font-size: 17px; line-height: 1.1;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.store:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(0, 0, 0, .5); }
.store svg { width: 26px; height: 26px; }
.store small { display: block; font-family: var(--f-body); font-size: 11px; font-weight: 500; color: var(--slate); }
.store.is-suggested { box-shadow: 0 0 0 3px var(--orange); }
.cta__help { font-size: 14px; color: rgba(255, 255, 255, .6); }
.cta__help a { color: var(--white); font-weight: 600; }

/* Footer */
.footer { background: var(--navy); color: rgba(255, 255, 255, .6); padding: 48px 0 96px; font-size: 14px; }
.footer__top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer__contact { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.footer__contact a { text-decoration: none; }
.footer__contact a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; padding-top: 24px; font-size: 12.5px; color: rgba(255, 255, 255, .45); }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: var(--white);
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .6);
  transition: transform .25s var(--ease), opacity .3s; opacity: 0; transform: translateY(12px); pointer-events: none;
}
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* Motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes ripple { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes ring { 0% { transform: scale(.7); opacity: .7; } 100% { transform: scale(1.15); opacity: 0; } }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__inner > .btn { margin-left: auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .features li:nth-child(3) { border-left: 0; }
  .features li:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .1); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq { grid-template-columns: 1fr; gap: 0; }
  .faq .section__head { position: static; }
  .cta { grid-template-columns: 1fr; padding: 56px 40px; text-align: center; }
  .cta__tag { display: none; }
  .stores { justify-content: center; }
}

@media (max-width: 820px) {
  .hero { padding-top: 104px; }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; gap: 0; }
  .hero__shade { background: linear-gradient(180deg, rgba(14, 27, 61, .9) 0%, rgba(14, 27, 61, .8) 55%, var(--navy) 100%); }
  .hero__visual { min-height: 300px; margin-top: 24px; }
  .hero__tag { width: 150px; }
  .pulse span { width: 200px; height: 200px; }
  .ping-card { right: 50%; transform: translateX(50%); bottom: 10px; animation: none; }
  .flow { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 40px; }
  .carousel-ctrl { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .casos { --pad: 16px; grid-auto-columns: 82%; gap: 14px; }
  .brand__sep, .brand__powered { display: none; }
  .nav__inner { height: 64px; }
  .lead { font-size: 16px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .features { grid-template-columns: 1fr; }
  .features li, .features li:nth-child(3) { border-left: 0; }
  .features li + li { border-top: 1px solid rgba(255, 255, 255, .1); }
  .steps { grid-template-columns: 1fr; }
  .faq__list summary { font-size: 16px; }
  .faq__list details p { padding-right: 0; }
  .cta { padding: 44px 22px; border-radius: 24px; }
  .store { flex: 1 1 100%; justify-content: center; }
  .footer__top, .footer__bottom { flex-direction: column; align-items: flex-start; }
}
