/* ── Navbar dark-text override for Micro Gold page ── */
.navbar--dark .nav-item a { color: rgba(0, 0, 0, 0.75); }
.navbar--dark .nav-item a:hover { color: #000; }
.navbar--dark .nav-item.active a { color: #0d4943; }
.navbar--dark .nav-underline { background: #0d4943; }
.navbar--dark .nav-toggle { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.12); }
.navbar--dark .nav-toggle span { background: #000; }

:root {
  --cream: #fffefc;
  --paper: #ffffff;
  --soft: #f7f8f3;
  --soft-green: #f0f4f1;
  --border: #e8ebdf;
  --border-soft: #f1f1f1;
  --green-900: #03190e;
  --green-800: #063b1f;
  --green-700: #0d4943;
  --green-600: #106739;
  --green-500: #20cd71;
  --text: #111111;
  --muted: rgba(0, 0, 0, 0.72);
  --subtle: #64748b;
  --yellow: #ffce1b;
  --yellow-soft: rgba(255, 206, 27, 0.08);
  --shadow-soft: 0 10px 30px rgba(6, 59, 31, 0.08);
  --shadow-card: 0 18px 40px rgba(8, 48, 29, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content-width: 1312px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Poppins", sans-serif;
}

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

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

button {
  font: inherit;
}

.page-shell {
  overflow-x: clip;
}

.section-shell {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 103px;
  width: 100vw;
  margin: 0;
  padding: 0 64px;
  background: rgba(255, 254, 252, 0.94);
  backdrop-filter: blur(18px);
}

.site-header.section-shell {
  width: 100vw;
  max-width: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  flex-shrink: 0;
  width: 96px;
  height: 56.426px;
  max-width: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 10px;
  font-size: 16px;
}

.site-nav a {
  color: rgba(0, 0, 0, 0.79);
}

.site-nav a.active {
  color: #000;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green-800);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-small {
  padding: 10px 24px;
  font-size: 14px;
  line-height: 20px;
}

.btn-accent {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 10px 15px -3px rgba(13, 73, 67, 0.2), 0 4px 6px -4px rgba(13, 73, 67, 0.2);
}

.btn-dark,
.btn-light {
  min-height: 64px;
  padding: 18px 42px;
  font-size: 18px;
  line-height: 28px;
}

.btn-dark {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 8px 10px rgba(13, 73, 67, 0.3);
}

.btn-light {
  background: #fff;
  border-color: #e2e8f0;
  color: var(--green-700);
}

.btn-light.soft {
  background: rgba(255, 255, 255, 0.85);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 627px) minmax(420px, 506px);
  justify-content: space-between;
  align-items: center;
  gap: 56px;
  padding: 56px 0 40px;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero-glow-right {
  top: 14px;
  right: -50px;
  width: 284px;
  height: 284px;
  background: url("assets/ab07a29c1a92dccd8584dd573cdc09f72b60860b.svg") center/cover no-repeat;
}

.hero-glow-left {
  top: 290px;
  left: -120px;
  width: 312px;
  height: 312px;
  background: url("assets/48e0b07d062dc23df86fd02403f04a75d2e7c350.svg") center/cover no-repeat;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 627px;
  max-width: 100%;
}

.hero-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--green-600);
  border-radius: 999px;
  color: var(--green-600);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-pill img {
  width: 20px;
  height: 20px;
  max-width: 20px;
  object-fit: contain;
  transform: none;
  filter: invert(39%) sepia(57%) saturate(495%) hue-rotate(112deg) brightness(96%) contrast(90%);
}

.hero h1,
.section-heading h2,
.security-copy h2,
.cta-inner h2,
.app-copy h2 {
  margin: 0;
  font-family: "Noto Serif", serif;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 56px);
  line-height: 1.08;
}

.hero h1 span {
  background: linear-gradient(90deg, #054825 0%, #20cd71 87.019%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 0;
  max-width: 627px;
  font-size: 20px;
  line-height: 1.65;
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-self: center;
}

.visual-stack {
  position: relative;
  width: 506px;
  max-width: 100%;
}

.shape-row {
  position: absolute;
  top: 8px;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  width: 100%;
  height: 173px;
}

.shape {
  display: block;
  border-radius: 22px;
}

.shape-yellow {
  background: var(--yellow);
}

.shape-green {
  background: #26b96b;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-radius: 27px;
  background: #fff8dd;
  min-height: 542px;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 194px 0 0;
  border-radius: 27px;
  background: #fff8dd;
}

.hero-image-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 542px;
  object-fit: cover;
  object-position: center;
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 20px;
  margin: 16px auto 80px;
  border: 1px solid var(--yellow);
  border-radius: 16px;
  background: var(--yellow-soft);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.trust-item img {
  width: auto;
  height: auto;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

.products {
  padding: 0 0 80px;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 36px);
  line-height: 1.12;
  color: var(--green-800);
  text-align: center;
}

.section-heading p {
  max-width: 672px;
  margin: 16px auto 0;
  color: var(--subtle);
  font-size: 16px;
  line-height: 24px;
}

.product-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  max-width: 896px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border: 1px solid #f3e7e8;
  padding: 33px;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  flex: 1;
  max-width: 366px;
}

.product-image-bg {
  background: #f9fafb;
  border-radius: 12px;
  width: 100%;
  height: 266px;
  position: relative;
  overflow: hidden;
}

.product-image-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: none;
}

.product-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #1b0e0e;
}

.product-card p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #106739;
}

.product-price {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #211111;
}

.btn-buy {
  background: #063b1f;
  color: white;
  padding: 16px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}

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

.why-start-small {
  background: #fffcf2;
  padding: 80px 0 120px 0;
}

.why-container {
  display: flex;
  gap: 96px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.why-content h2 {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #211111;
  margin: 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  background: rgba(255, 206, 27, 0.11);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.why-icon img {
  width: 24px;
  height: 24px;
  max-width: 24px;
  object-fit: contain;
  transform: none;
}

.why-text h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #1b0e0e;
  margin: 0 0 8px 0;
}

.why-text p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4b5563;
  margin: 0;
}

.why-card {
  background: white;
  border: 1px solid #f3e7e8;
  padding: 49px;
  border-radius: 24px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  width: 470px;
}

.why-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #1b0e0e;
  text-align: center;
  margin: 0 0 32px 0;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  background: #f0f4f1;
  padding: 16px 14px;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.feature-item img,
.feature img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.feature-item span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1b0e0e;
}

.trust-security {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 140px 126px 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(255, 224, 107, 0.55) 0%, rgba(255, 234, 160, 0.28) 28%, rgba(255, 243, 201, 0) 62%),
    #fff1b8;
}

.trust-shell {
  width: min(100%, 1152px);
  margin: 0 auto;
  position: relative;
}

.trust-security::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/07e33df0cc8d680458a01089a58ea322b7457678.png");
  background-size: 200px 40px;
  background-position: top left;
  opacity: 0.04;
  pointer-events: none;
}

.trust-content {
  width: 1152px;
  min-height: 542px;
  border-radius: 40px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 59, 31, 0.96) 0%, rgba(6, 59, 31, 0.96) 51%, rgba(46, 59, 53, 0.96) 51%, rgba(46, 59, 53, 0.96) 100%);
  position: relative;
  z-index: 2;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trust-text {
  position: absolute;
  left: 77px;
  top: 95px;
  display: flex;
  flex-direction: column;
  gap: 15.25px;
  width: 480px;
}

.trust-text h2 {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: white;
  margin: 0;
}

.trust-text h2 span {
  color: #ffce1b;
}

.trust-text p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.trust-features {
  position: relative;
  height: 136px;
  margin-top: 32px;
  width: 100%;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: absolute;
}

.feature-icon {
  width: 24.02px;
  height: 28px;
  flex: 0 0 24.02px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.trust-security .trust-features .feature:nth-child(1) .feature-icon img {
  filter: hue-rotate(90deg) saturate(300%) brightness(1.05);
}

.feature h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: white;
  margin: 0 0 4px 0;
}

.feature p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.feature:nth-child(1) {
  top: 0;
  left: 0;
  width: 188px;
}

.feature:nth-child(2) {
  top: 0;
  left: 252px;
  width: 188px;
}

.feature:nth-child(3) {
  top: 80px;
  left: 0;
  width: 188px;
}

.feature:nth-child(4) {
  top: 80px;
  left: 252px;
  width: 188px;
}

.trust-image {
  position: absolute;
  left: 608px;
  top: -2px;
  width: 544px;
  height: 542px;
}

.trust-image img {
  position: absolute;
  left: -8.58%;
  top: -8.58%;
  width: 117.16%;
  height: 117.16%;
  max-width: none;
  object-fit: cover;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-top: 22px;
  position: relative;
  z-index: 2;
  width: 1152px;
  overflow-x: visible;
  padding-bottom: 2px;
}

.trust-logos-track {
  display: flex;
  gap: 22px;
  align-items: center;
  width: max-content;
}

.trust-logo-card {
  width: 119.72px;
  height: 74.151px;
  flex: 0 0 119.72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.118px 24.656px;
  border-radius: 11.935px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-logo-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.trust-logo-card:nth-child(1) img,
.trust-logo-card:nth-child(5) img {
  width: 80.999px;
  height: 45.562px;
}

.trust-logo-card:nth-child(2) img,
.trust-logo-card:nth-child(6) img {
  width: 57.916px;
  height: 57.916px;
}

.trust-logo-card:nth-child(3) img,
.trust-logo-card:nth-child(7) img {
  width: 58.433px;
  height: 38.955px;
}

.trust-logo-card:nth-child(4) img,
.trust-logo-card:nth-child(8) img {
  width: 85.89px;
  height: 36.767px;
}

@keyframes trustLogosMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.testimonials {
  padding: 96px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-grid {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 0 24px;
}

.testimonial-card {
  background: #f0f4f1;
  border: 1px solid #f1f5f9;
  padding: 33px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 468px;
  flex-shrink: 0;
}

.testimonial-card.wide {
  min-width: 637px;
}

.testimonial-header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.testimonial-header img {
  width: auto;
  height: auto;
  max-width: 29px;
  max-height: 29px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.75px;
  color: #080808;
}

.reviewer-location {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #64748b;
}

.testimonial-card p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #0f172a;
  margin: 0;
}

.stars {
  background: white;
  border-radius: 99px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.11);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 20px;
  align-self: flex-start;
}

.stars img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.cta-section {
  padding: 92px 0;
}

.cta-background {
  background: #f0f4f0;
  border: 1px solid rgba(13, 73, 67, 0.05);
  padding: 97px 49px 37px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  pointer-events: none;
  width: 284px;
  height: 284px;
}

.cta-glow-left {
  left: -94px;
  top: -89.75px;
  background: url("assets/cdf15792ad2876805d7aaf3233a35a83c7286434.svg") center/cover no-repeat;
}

.cta-glow-right {
  right: -94px;
  top: 244.25px;
  background: url("assets/ab07a29c1a92dccd8584dd573cdc09f72b60860b.svg") center/cover no-repeat;
}

.cta-content {
  max-width: 672px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #063b1f;
  text-align: center;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  background: #063b1f;
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-line {
  height: 0;
  border-top: 1px solid #f1f5f9;
  margin: 32px 0;
}

.cta-help {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-help-text {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-help-text span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: black;
}

.btn-whatsapp {
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 32px;
  border-radius: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.btn-whatsapp img,
.trust-item img,
.feature-item img,
.feature img,
.cta-secure img,
.faq-item img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  transform: none;
}

.btn-whatsapp span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 28px;
  color: #063b1f;
}

.btn-call {
  padding: 8px 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #063b1f;
  text-decoration: none;
}

.cta-secure {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cta-secure img {
  width: auto;
  height: auto;
  max-width: 28px;
  max-height: 24px;
}

/* App section styles are in css/app-section.css */

.faq {
  background: white;
  padding: 96px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #f0f4f1;
  border: 1px solid #f1f1f1;
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}

.faq-item summary svg {
  flex: 0 0 28px;
  transition: transform 0.24s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-answer {
  margin: 0;
  padding: 0 20px 20px;
  color: #5f6f68;
  font-size: 15px;
  line-height: 24px;
}

/* Footer styles are in css/footer.css */

.info-card h3 {
  margin: 0 0 18px;
  color: var(--green-800);
  font-family: "Noto Serif", serif;
  font-size: 28px;
  line-height: 1.25;
}

.info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.info-card li + li {
  margin-top: 8px;
}

.info-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 206, 27, 0.18);
}

.security-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.95fr);
  gap: 32px;
  align-items: center;
  padding: 40px 48px;
  border-radius: 28px;
  background: linear-gradient(90deg, #164926 0%, #284f1e 25%, #f5d96d 100%);
  overflow: hidden;
}

.security-copy {
  color: #fff;
}

.security-copy .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-copy h2 {
  color: #fff1b5;
  font-size: clamp(2rem, 3vw, 36px);
  line-height: 1.12;
}

.security-copy p,
.security-copy li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
}

.security-copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.security-copy li {
  position: relative;
  padding-left: 20px;
}

.security-copy li + li {
  margin-top: 8px;
}

.security-copy li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.security-visual {
  position: relative;
  min-height: 320px;
}

.security-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonials {
  padding: 96px 0 80px;
  max-width: 1312px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.testimonial-card {
  min-width: 0;
  padding: 32px;
  border: 1px solid #ecf0eb;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card.wide {
  grid-column: span 2;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-header img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 999px;
  object-fit: cover;
}

.reviewer-name {
  color: #111827;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.reviewer-location {
  color: #64748b;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.reviewer {
  margin-bottom: 10px;
  color: var(--green-800);
  font-weight: 600;
}

.stars {
  margin-top: auto;
  background: white;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 20px;
  align-self: flex-start;
}

.stars img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.cta-card {
  padding-bottom: 80px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 40px;
  border-radius: 24px;
  background: linear-gradient(180deg, #edf7ef 0%, #f1f2e8 100%);
}

.cta-inner h2 {
  color: var(--green-800);
  font-size: clamp(1.8rem, 3vw, 34px);
}

.cta-inner p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


.faq {
  padding: 96px 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--soft-green);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  font-size: 18px;
  line-height: 28px;
}

.faq-item span {
  flex: 1;
}

.faq-item img {
  display: none;
}


@media (max-width: 1180px) {
  .site-header.section-shell {
    width: 100vw;
  }

  .site-header {
    gap: 18px;
    padding-inline: 32px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero,
  .product-grid,
  .benefit-panels,
  .security-banner,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-visual,
  .app-visual {
    justify-content: center;
  }

  .trust-security {
    padding: 96px 32px 28px;
  }

  .trust-shell,
  .trust-content {
    width: 100%;
  }

  .trust-content {
    min-height: auto;
    display: grid;
    gap: 40px;
    padding: 48px 40px;
  }

  .trust-text,
  .trust-image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .trust-image {
    height: auto;
    min-height: 420px;
  }

  .trust-image img {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
  }

  .trust-logos {
    width: 100%;
    overflow-x: auto;
  }

  .trust-strip,
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 84px;
    padding-inline: 24px;
  }

  .site-nav,
  .site-header > .btn {
    display: none;
  }

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

  .site-header.menu-open {
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }

  .site-header.menu-open .site-nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0 0;
    gap: 14px;
  }

  .site-header.menu-open > .btn {
    display: inline-flex;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .trust-security {
    padding: 80px 0 28px;
  }

  .trust-content {
    border-radius: 28px;
    padding: 32px 24px;
  }

  .trust-text h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .trust-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .trust-features {
    width: 100%;
    height: auto;
    display: grid;
    gap: 20px;
  }

  .feature {
    position: static;
    width: 100% !important;
  }

  .trust-image {
    min-height: 0;
  }

  .trust-logos {
    gap: 14px;
  }

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

  .trust-strip {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .app-visual {
    width: 100%;
    min-height: 460px;
    justify-self: stretch;
    justify-content: center;
  }

  .app-visual .phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 500px);
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .section-shell {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .hero {
    gap: 32px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-actions,
  .cta-actions,
  .store-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-dark,
  .btn-light {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .security-banner,
  .cta-inner,
  .info-card,
  .testimonial-card {
    padding: 24px;
  }


}

@media (max-width: 1024px) {
  .section-shell {
    width: min(calc(100% - 40px), var(--content-width));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px 0 28px;
  }

  .hero-copy {
    width: 100%;
    gap: 24px;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-visual {
    justify-content: center;
  }

  .visual-stack {
    width: min(100%, 506px);
  }

  .trust-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px 28px;
    margin-bottom: 64px;
  }

  .products,
  .testimonials,
  .faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .product-grid {
    max-width: 100%;
    gap: 24px;
  }

  .product-card {
    max-width: none;
  }

  .why-start-small {
    padding: 72px 0;
  }

  .why-container {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }

  .why-content,
  .why-card {
    width: 100%;
  }

  .why-card {
    padding: 32px;
  }

  .trust-security {
    padding: 80px 24px 24px;
  }

  .trust-content {
    width: 100%;
  }

  .trust-logos {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .cta-section {
    padding: 72px 0;
  }

  .cta-background {
    padding: 56px 28px 32px;
    border-radius: 28px;
  }

  .cta-help-text {
    flex-direction: column;
  }


}

@media (max-width: 768px) {
  .site-header {
    min-height: 78px;
    padding-inline: 18px;
  }

  .site-header.menu-open {
    gap: 16px;
  }

  .site-header.menu-open > .btn {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    width: 84px;
    height: 49px;
  }

  .section-shell {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .hero {
    gap: 32px;
    padding-top: 28px;
  }

  .hero-pill {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-dark,
  .btn-light {
    width: 100%;
    padding-inline: 24px;
    min-height: 58px;
    font-size: 17px;
  }

  .shape-row {
    height: 138px;
    gap: 9px;
  }

  .hero-image-card,
  .hero-image-card::before {
    border-radius: 22px;
  }

  .hero-image-card {
    min-height: 420px;
  }

  .hero-image-card::before {
    inset: 150px 0 0;
  }

  .hero-image-card img {
    height: 420px;
  }

  .trust-strip {
    padding: 16px;
    margin-bottom: 56px;
  }

  .trust-item {
    font-size: 16px;
    line-height: 24px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .product-grid {
    flex-direction: column;
  }

  .product-card {
    width: 100%;
    padding: 24px;
    gap: 20px;
  }

  .product-card h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .product-price {
    font-size: 26px;
    line-height: 32px;
  }

  .why-start-small {
    padding: 56px 0;
  }

  .why-content h2,
  .trust-text h2,
  .cta-content h2,
  .app-text h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .why-card {
    padding: 24px;
    border-radius: 20px;
  }

  .why-card h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 24px;
  }

  .trust-security {
    padding: 56px 16px 20px;
  }

  .trust-content {
    gap: 28px;
    padding: 28px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(6, 59, 31, 0.98) 0%, rgba(19, 47, 36, 0.98) 100%);
  }

  .trust-text,
  .trust-image {
    width: 100%;
  }

  .trust-text {
    gap: 14px;
  }

  .trust-text p {
    font-size: 16px;
    line-height: 25px;
  }

  .trust-features {
    gap: 18px;
  }

  .trust-image img {
    border-radius: 20px;
  }

  .trust-logo-card {
    width: 108px;
    height: 68px;
    flex-basis: 108px;
    padding-inline: 18px;
  }

  .trust-logos {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  }

  .trust-logos-track {
    animation: trustLogosMarquee 16s linear infinite;
  }

  .testimonial-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 0 4px;
    scroll-snap-type: x proximity;
  }

  .testimonial-card,
  .testimonial-card.wide {
    min-width: min(100%, 320px);
    width: min(100%, 320px);
    scroll-snap-align: start;
  }

  .cta-section {
    padding: 56px 0;
  }

  .cta-background {
    padding: 40px 20px 28px;
    border-radius: 24px;
  }

  .cta-buttons,
  .cta-help,
  .cta-help-text {
    align-items: stretch;
  }

  .cta-buttons .btn-cta,
  .btn-whatsapp,
  .btn-call {
    width: 100%;
    justify-content: center;
  }

  .cta-help-text span {
    text-align: center;
  }


  .faq {
    padding: 64px 0;
  }

  .faq-item {
    padding: 18px 16px;
  }

  .faq-item span {
    font-size: 16px;
    line-height: 24px;
  }

  .faq-item svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

}

@media (max-width: 480px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand img {
    width: 76px;
    height: 44px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-pill {
    padding-inline: 12px;
  }

  .hero-pill span {
    white-space: normal;
  }

  .hero-image-card {
    min-height: 340px;
  }

  .hero-image-card::before {
    inset: 124px 0 0;
  }

  .hero-image-card img {
    height: 340px;
  }

  .trust-item {
    font-size: 15px;
  }

  .product-image-bg {
    height: 220px;
  }

  .why-item {
    gap: 12px;
  }

  .why-text h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .trust-content {
    padding: 24px 16px;
    background: linear-gradient(180deg, rgba(6, 59, 31, 0.99) 0%, rgba(17, 42, 32, 0.99) 100%);
  }

  .trust-text h2,
  .cta-content h2,
  .app-text h2 {
    font-size: 27px;
    line-height: 33px;
  }

  .feature {
    gap: 12px;
  }

  .cta-content {
    gap: 14px;
  }

  .btn-cta {
    padding: 14px 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .btn-cta::after {
    width: 40px;
    height: 40px;
  }

  .app-visual {
    display: none;
  }

  .app-visual .phone {
    width: min(100%, 340px);
  }

  .google-play-badge,
  .app-store-badge {
    transform-origin: left center;
    transform: scale(0.94);
  }

}

@media (prefers-reduced-motion: reduce) {
  .trust-logos-track {
    animation: none;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  display: block;
  padding: 0;
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

.faq-item span {
  display: block;
  flex: none;
}

.faq-answer {
  display: block;
  padding: 0 24px 20px;
}

@media (max-width: 768px) {
  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 24px;
    padding: 18px 16px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }
}

.testimonials {
  padding: 96px 0 80px;
  max-width: 1312px;
  margin: 0 auto;
}

.testimonial-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-left: 0;
  padding: 8px 0 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 59, 31, 0.28) rgba(6, 59, 31, 0.08);
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-behavior: smooth;
}

.testimonial-grid:active {
  cursor: grabbing;
}

.testimonial-grid.is-dragging,
.testimonial-grid.is-dragging * {
  cursor: grabbing;
  user-select: none;
}

.testimonial-grid.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.testimonial-grid::-webkit-scrollbar {
  height: 10px;
}

.testimonial-grid::-webkit-scrollbar-track {
  background: rgba(6, 59, 31, 0.08);
  border-radius: 999px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
  background: rgba(6, 59, 31, 0.28);
  border-radius: 999px;
}

.testimonial-card,
.testimonial-card.wide {
  flex: 0 0 392px;
  width: 392px;
  min-width: 392px;
  max-width: 392px;
  min-height: 292px;
  padding: 28px;
  border: 1px solid #ecf0eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(8, 48, 29, 0.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
  scroll-snap-align: start;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-header img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 999px;
  object-fit: cover;
}

.reviewer-name {
  color: #111827;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.reviewer-location {
  color: #64748b;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.testimonial-card p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.stars {
  margin-top: auto;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 20px;
  align-self: flex-start;
}

.stars img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .testimonial-grid {
    gap: 16px;
  }

  .testimonial-card,
  .testimonial-card.wide {
    flex-basis: min(100%, 320px);
    width: min(100%, 320px);
    min-width: min(100%, 320px);
    max-width: min(100%, 320px);
    min-height: 0;
    padding: 24px;
  }
}
