:root {
  --blue: #1E5FA8;
  --blue-dark: #123D6E;
  --blue-pale: #EAF2FC;
  --yellow: #FFC93C;
  --orange: #FF7A00;
  --orange-dark: #E86A00;
  --gray-light: #F5F7FA;
  --gray: #7A8699;
  --ink: #1C2733;
  --white: #FFFFFF;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(18,61,110,.08);
  --shadow-md: 0 12px 32px rgba(18,61,110,.12);
  --shadow-lg: 0 24px 60px rgba(18,61,110,.18);
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  margin: 0 0 14px;
  line-height: 1.2;
  color: var(--blue-dark);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-title h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
.section-title p { color: var(--gray); }

a { color: inherit; }

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue-dark);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* BUTTONS */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border-radius: 999px;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255,122,0,.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(255,122,0,.42); }
.btn-primary:active { transform: translateY(-1px) scale(.98); }
.btn-ghost {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-pale);
  padding: 12px 28px;
}
.btn-ghost:hover { border-color: var(--blue); background: var(--blue-pale); }
.btn-header { padding: 10px 22px; font-size: .92rem; }
.btn-large { padding: 18px 40px; font-size: 1.05rem; }
.btn-xl { padding: 22px 52px; font-size: 1.2rem; }

.btn-ripple::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  width: 10px; height: 10px;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  left: var(--rx, 50%);
  top: var(--ry, 50%);
  translate: -50% -50%;
}
.btn-ripple.rippling::after {
  animation: ripple .55s ease-out;
}
@keyframes ripple {
  from { opacity: .55; transform: scale(1); }
  to { opacity: 0; transform: scale(28); }
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(0px);
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(18,61,110,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 1.05rem;
}
.brand img { width: 40px; height: auto; }
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 100px;
  background: linear-gradient(180deg, var(--blue-pale) 0%, var(--white) 65%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
}
.blob-1 { width: 340px; height: 340px; background: radial-gradient(circle, #FFE7AE 0%, transparent 70%); top: -80px; right: -60px; }
.blob-2 { width: 260px; height: 260px; background: radial-gradient(circle, #CFE3FF 0%, transparent 70%); bottom: -60px; left: -60px; }
.blob-3 { width: 180px; height: 180px; background: radial-gradient(circle, #FFD9B8 0%, transparent 70%); bottom: 100px; right: 12%; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid #E4ECF7;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.stars { color: var(--yellow); letter-spacing: 1px; }

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #4A5568;
  max-width: 520px;
  margin-bottom: 26px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: #E3F5E9;
  color: #2E9E5B;
  border-radius: 50%;
  font-size: .7rem;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}
.price-old { text-decoration: line-through; color: var(--gray); font-size: 1.1rem; white-space: nowrap; }
.price-new { font-size: 2.6rem; font-weight: 800; color: var(--blue-dark); font-family: 'Poppins', sans-serif; white-space: nowrap; }
.price-save {
  background: #E3F5E9;
  color: #2E9E5B;
  font-weight: 700;
  font-size: .8rem;
  padding: 5px 12px;
  border-radius: 999px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.checkout-note { color: var(--gray); font-size: .85rem; }

/* HERO VISUAL / DEVICE MOCKUP */
.hero-visual {
  position: relative;
  height: 460px;
}
.device {
  position: absolute;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
  overflow: hidden;
}
.device-screen { width: 100%; height: 100%; overflow: hidden; border-radius: 8px; }
.device-screen img { width: 100%; height: 100%; object-fit: cover; }

.device.laptop {
  width: 78%;
  aspect-ratio: 16/10;
  left: 0; top: 8%;
  padding: 14px 14px 26px;
  border-radius: 16px 16px 6px 6px;
}
.device.laptop::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  translate: -50% 0;
  width: 46%; height: 8px;
  background: #2A3644;
  border-radius: 0 0 6px 6px;
}

.device.tablet {
  width: 34%;
  aspect-ratio: 3/4;
  right: 0; bottom: 6%;
  padding: 10px;
  border-radius: 20px;
  transform: rotate(4deg);
}

.device.phone {
  width: 20%;
  aspect-ratio: 9/18;
  left: 4%;
  bottom: -2%;
  padding: 8px 6px;
  border-radius: 26px;
  transform: rotate(-6deg);
}

.device.sheet {
  position: absolute;
  width: 30%;
  right: 6%;
  top: -4%;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  transform: rotate(8deg);
  background: var(--white);
  padding: 4px;
}

.floating-badge {
  position: absolute;
  left: 6%;
  top: 4%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 12px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.floating-badge strong { font-size: 1.4rem; color: var(--orange); font-family: 'Poppins', sans-serif; }
.floating-badge span { font-size: .75rem; color: var(--gray); font-weight: 600; }

/* COUNTERS */
.counters {
  background: var(--blue-dark);
  padding: 44px 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  color: var(--white);
}
.counter, .counter-static {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--yellow);
}
.counter-item span:last-child { font-size: .85rem; opacity: .85; font-weight: 600; }

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid #ECF1F8;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #DCE7F7;
}
.benefit-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale);
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.benefit-card p { color: var(--gray); font-size: .92rem; margin: 0; }

/* GALLERY */
.gallery-section { background: var(--gray-light); }
.real-badge {
  display: inline-block;
  margin-top: 10px;
  background: var(--white);
  border: 1px solid #E4ECF7;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.gallery-item {
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-note { text-align: center; color: var(--gray); margin-top: 30px; }

/* AUDIENCE */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.audience-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid #ECF1F8;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.audience-icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.audience-card h3 { font-size: 1.02rem; }
.audience-card p { color: var(--gray); font-size: .88rem; margin: 0; }

/* WHAT'S INCLUDED */
.whats-included { background: var(--blue-pale); }
.whats-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.whats-copy p { color: #4A5568; }
.whats-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.whats-list li { display: flex; align-items: flex-start; gap: 12px; }
.whats-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.whats-list strong { display: block; font-size: .96rem; }
.whats-list span { color: var(--gray); font-size: .84rem; }

/* TESTIMONIALS */
.testimonials-disclaimer {
  font-size: .78rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 6px;
}
.testimonial-carousel { max-width: 720px; margin: 0 auto; }
.testimonial-track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}
.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border: 1px solid #ECF1F8;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-head strong { display: block; font-size: .95rem; }
.testimonial-head span { font-size: .8rem; color: var(--gray); }
.stars-mini { color: var(--yellow); }
.testimonial-card p { margin: 0; color: #3A4759; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}
.carousel-controls button {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid #E4ECF7;
  background: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--blue-dark);
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D7E1F0;
  cursor: pointer;
  transition: background .2s ease;
}
.carousel-dots span.active { background: var(--orange); }

/* OFFER */
.offer {
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
  color: var(--white);
}
.offer-shape { position: absolute; border-radius: 50%; opacity: .15; }
.offer-shape.one { width: 300px; height: 300px; background: var(--yellow); top: -100px; left: -80px; }
.offer-shape.two { width: 220px; height: 220px; background: var(--orange); bottom: -80px; right: -60px; }
.offer-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.offer-tag {
  display: inline-block;
  background: rgba(255,255,255,.12);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.offer h2 { color: var(--white); font-size: 2rem; }
.offer-copy p { color: #C9D9EE; }
.offer-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.offer-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.offer-list li::before { content: "✔"; color: var(--yellow); }

.offer-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.offer-old { color: var(--gray); font-size: .95rem; white-space: nowrap; }
.offer-new { display: block; font-size: 2.8rem; font-weight: 800; color: var(--orange); font-family: 'Poppins', sans-serif; white-space: nowrap; }
.offer-detail { display: block; color: var(--gray); margin-bottom: 4px; }
.offer-per-item { display: block; font-size: .82rem; color: #2E9E5B; font-weight: 700; margin-bottom: 20px; }
.offer-card em { display: block; margin-top: 14px; font-style: normal; color: var(--gray); font-size: .82rem; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.faq-title p { color: var(--gray); }
.faq-list details {
  background: var(--white);
  border: 1px solid #ECF1F8;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--orange); font-size: 1.2rem; transition: transform .2s ease; }
.faq-list details[open] .faq-icon { transform: rotate(45deg); }
.faq-list details p { margin: 14px 0 0; color: var(--gray); }

/* FINAL CTA */
.final-cta {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.final-cta img { margin: 0 auto 20px; }
.final-cta h2 { color: var(--white); font-size: 2.4rem; }
.final-cta p { color: #C9D9EE; max-width: 480px; margin: 0 auto 30px; }

/* FOOTER */
.site-footer {
  background: #0D2743;
  color: #B9C8DD;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { margin-bottom: 12px; }
.footer-brand p { color: var(--white); font-weight: 700; margin: 0 0 6px; font-family: 'Poppins', sans-serif; }
.footer-brand span { font-size: .85rem; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; color: #B9C8DD; font-size: .9rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: .8rem;
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay.in-view { transition-delay: .15s; }

/* LIGHTBOX */
#lightbox {
  border: none;
  border-radius: var(--radius);
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  background: transparent;
}
#lightbox::backdrop { background: rgba(12,20,32,.75); }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
#lightbox-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-grid, .whats-grid, .offer-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .header-actions .btn-header { display: none; }
  .section { padding: 60px 0; }
  .hero { padding: 130px 0 60px; }
  .check-list { grid-template-columns: 1fr; }
  .hero-price { flex-wrap: wrap; row-gap: 8px; }
  .price-new { font-size: 2.1rem; }
  .benefits-grid, .audience-grid, .whats-list { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .benefits-grid, .audience-grid, .whats-list, .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
