:root {
  --blue: #0047ff;
  --blue-dark: #0030b5;
  --green: #168f42;
  --green-dark: #087230;
  --yellow: #ffd400;
  --ink: #101828;
  --muted: #667085;
  --line: #e6ebf2;
  --soft: #f6f8fb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(16, 24, 40, .11);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  height: 22px;
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.sprite {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(230, 235, 242, .9);
  backdrop-filter: blur(18px);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 9px 20px;
  color: #145a32;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.top-strip span,
.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-strip a {
  color: var(--green);
}

.top-strip svg {
  height: 17px;
  width: 17px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand img {
  width: 250px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #28384f;
  font-size: 14px;
  font-weight: 700;
}

.menu a:not(.btn) {
  padding: 10px 0;
  transition: color .2s ease;
}

.menu a:not(.btn):hover {
  color: var(--green);
}

.legal-menu {
  display: flex;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, #1fad55, var(--green-dark));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(22, 143, 66, .24);
}

.btn-yellow {
  background: var(--yellow);
  color: #1c2a39;
  box-shadow: 0 16px 34px rgba(255, 212, 0, .28);
}

.btn-white,
.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(16, 24, 40, .14);
}

.btn-small {
  min-height: 46px;
  padding: 0 22px;
  font-size: 13px;
}

.btn-xl {
  min-height: 62px;
  padding: 0 36px;
  font-size: 17px;
}

.hero {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 28px auto 0;
  background: var(--blue);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 71, 255, .16);
}

.hero > img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.trust-bar {
  display: flex;
  justify-content: center;
  max-width: 1180px;
  margin: 16px auto 0;
  gap: 18px;
  padding: 14px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #203149;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(16, 24, 40, .07);
}

.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-bar svg {
  color: var(--yellow);
}

.hero-actions {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  transform: translateX(-50%);
}

.image-button {
  display: block;
  width: min(270px, 34vw);
  line-height: 0;
  border-radius: 999px;
  filter: drop-shadow(0 15px 28px rgba(16, 24, 40, .18));
  transition: transform .2s ease, filter .2s ease;
}

.image-button:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 18px 34px rgba(16, 24, 40, .24));
}

.image-button img {
  width: 100%;
  height: auto;
  display: block;
}

.lead-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center;
  max-width: 1180px;
  margin: 38px auto 0;
  padding: 34px;
  position: relative;
  z-index: 4;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  scroll-margin-top: 128px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label:nth-child(3),
.lead-form .privacy-check,
.lead-form .privacy-note,
.lead-form button {
  grid-column: 1 / -1;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.privacy-check span {
  margin: 0;
  color: #344054;
  line-height: 1.45;
}

.privacy-check a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-note {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d7dfeb;
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 143, 66, .12);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 245px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 34px rgba(16, 24, 40, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 143, 66, .32);
  box-shadow: var(--shadow);
}

.service-card svg {
  height: 48px;
  width: 48px;
  margin-bottom: 22px;
  color: var(--green);
}

.service-logo {
  width: 92px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 22px;
}

.service-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.services-showcase {
  display: grid;
  gap: 0;
  padding: 10px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.services-showcase > img {
  width: 100%;
  border-radius: 16px;
}

.services-seo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-seo-list li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfcff;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.recharge-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(16, 24, 40, .07);
}

.recharge-main {
  width: 100%;
  max-height: 104px;
  object-fit: contain;
}

.recharge-powered {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 150px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.recharge-powered img {
  width: 116px;
  height: auto;
}

.confidence {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.confidence div {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.confidence svg {
  color: var(--green);
}

.confidence strong {
  font-size: 14px;
}

.confidence span {
  color: var(--muted);
  font-size: 12px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.split.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.image-stack img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #344054;
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.store-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.store-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.store-media img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.store-body {
  padding: 24px;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.reviews {
  padding-top: 18px;
}

.rating-summary {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 30px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 28px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(16, 24, 40, .08);
}

.rating-summary img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reviews-grid img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, .07);
}

.faq-section {
  padding-top: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, .06);
}

.faq-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto 42px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-strip a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #344054;
  font-weight: 800;
}

.contact-strip svg {
  color: var(--green);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr .6fr .6fr;
  gap: 42px;
  padding: 50px max(24px, calc((100vw - 1180px) / 2));
  color: #344054;
  background: #f7faf8;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 250px;
  height: auto;
  object-fit: contain;
}

.legal-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 24px;
}

.legal-main article {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-main h1 {
  font-size: clamp(32px, 4vw, 48px);
}

.legal-main h2 {
  margin-top: 34px;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-main ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  color: #344054;
  line-height: 1.65;
}

.footer p {
  color: var(--muted);
}

.footer nav {
  display: grid;
  gap: 12px;
}

.footer a:hover {
  color: var(--green);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  background: #19b85a;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(25, 184, 90, .35);
}

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 22px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(16, 24, 40, .18);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: 0;
}

.cookie-banner p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0;
}

.cookie-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.cookie-options input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .lead-card,
  .store-card,
  .rating-summary,
  .reviews-grid img,
  .confidence,
  .split {
    animation: fade-up .7s ease both;
  }

  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 980px) {
  .top-strip {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: grid;
  }

  .legal-menu {
    position: static;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .menu a {
    padding: 14px;
  }

  .hero-actions {
    position: static;
    justify-content: center;
    padding: 20px;
    transform: none;
    background: var(--blue);
  }

  .trust-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 36px);
    margin: 14px 18px 0;
    padding: 16px 20px;
    border-radius: 18px;
  }

  .lead-card,
  .split,
  .rating-summary,
  .store-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .lead-card {
    width: calc(100% - 36px);
    margin: 22px 18px 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recharge-block,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .confidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 18px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .nav {
    padding: 12px 16px;
  }

  .brand img {
    width: 198px;
  }

  .hero > img {
    min-height: 240px;
    max-height: 320px;
    object-position: center;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .image-button {
    width: min(340px, 92vw);
  }

  .lead-card {
    padding: 22px;
  }

  .lead-card,
  .section,
  .section-heading,
  .service-card,
  .store-card,
  .rating-summary,
  .contact-strip {
    min-width: 0;
  }

  .lead-card p,
  .section-heading p,
  .service-card p,
  .store-body p {
    overflow-wrap: anywhere;
  }

  .lead-form button,
  .store-actions .btn,
  .contact-strip .btn {
    width: 100%;
  }

  .lead-form,
  .service-grid,
  .confidence,
  .reviews-grid,
  .store-media,
  .footer {
    grid-template-columns: 1fr;
  }

  .services-showcase {
    padding: 10px;
    border-radius: 18px;
  }

  .services-showcase > img {
    border-radius: 12px;
  }

  .services-seo-list {
    justify-content: flex-start;
  }

  .recharge-block {
    padding: 16px;
    gap: 16px;
    border-radius: 18px;
  }

  .recharge-main {
    max-height: none;
  }

  .recharge-powered {
    justify-items: start;
  }

  .section {
    padding: 38px 18px;
  }

  .split.section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .store-media img {
    height: 220px;
  }

  .reviews-grid img {
    height: auto;
    min-height: 150px;
  }

  .contact-strip {
    margin: 0 18px 50px;
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 18px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}
