:root {
  --green-50: #f0fdf6;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #0f7a3d;
  --green-800: #0b5c31;
  --green-900: #063d1f;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 30px rgba(19, 90, 58, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: var(--slate-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; display: block; }

button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header-compact { border-bottom: 1px solid rgba(148,163,184,0.15); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--slate-700);
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-800);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(16, 122, 61, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 32px rgba(16, 122, 61, 0.32);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-800);
  border-color: rgba(15, 122, 61, 0.18);
}

.btn-small {
  padding: 0.72rem 1.2rem;
  font-size: 0.75rem;
}

.section {
  padding: 110px 0;
}

.section-alt { background: var(--slate-50); }

.hero {
  padding: 90px 0 80px;
  background:
    radial-gradient(circle at left top, rgba(34, 197, 94, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(240,253,246,0.85), rgba(255,255,255,1));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-800);
  background: rgba(34, 197, 94, 0.12);
}

.eyebrow-alt {
  background: rgba(11, 92, 49, 0.08);
}

.hero-copy h1,
.section-heading h2,
.request-copy h1 {
  margin: 0.8rem 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--slate-900);
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5vw, 5rem);
}

.hero-copy p,
.section-heading p,
.request-copy p,
.security-content p,
.step-card p,
.benefit-card p,
.site-footer p,
.faq-answer p,
.legal-shell p,
.legal-box li,
.legal-box p {
  color: var(--slate-700);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  color: var(--slate-700);
  font-weight: 600;
}

.hero-meta li { position: relative; padding-left: 1.1rem; }
.hero-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.phone-frame {
  position: relative;
  width: min(350px, 72vw);
  height: 540px;
  border-radius: 36px;
  background: linear-gradient(160deg, #061d13, #0d3524 58%, #0b5c31);
  padding: 18px 16px 14px;
  box-shadow: 0 28px 55px rgba(10, 40, 25, 0.24);
  animation: phoneFloat 4.5s ease-in-out infinite alternate;
}

.phone-notch {
  width: 116px;
  height: 22px;
  background: rgba(2,6,23,0.8);
  border-radius: 0 0 18px 18px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fafc, #ecfdf5 60%, #e2f9eb);
  padding: 30px 18px 18px;
  overflow: hidden;
}

.screen-header {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
}

.dot-green { background: var(--green-500); }

.wallet-card {
  border-radius: 22px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
  padding: 18px 16px;
  box-shadow: var(--shadow-card);
}

.wallet-card strong {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.6rem;
}

.wallet-card small,
.mini-label {
  color: rgba(255,255,255,0.8);
}

.app-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15, 118, 61, 0.08);
  border-radius: 18px;
  padding: 12px 12px;
  box-shadow: 0 12px 18px rgba(15, 23, 42, 0.05);
}

.app-item.active {
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(255,255,255,0.8));
  border-color: rgba(16, 122, 61, 0.14);
}

.app-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.15);
}

.app-item strong { display: block; font-size: 0.96rem; }
.app-item small { color: var(--slate-500); }

.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.9);
  color: var(--green-900);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  animation: pulse 4s ease-in-out infinite alternate;
}

.badge-one {
  top: 30px;
  right: 5px;
}

.badge-two {
  bottom: 40px;
  left: 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.center { text-align: center; }

.section-heading h2,
.request-copy h1 {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
}

.steps-grid,
.benefits-grid,
.install-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.benefits-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.step-card,
.benefit-card,
.install-step,
.download-card,
.legal-shell,
.faq-item {
  background: var(--white);
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.step-card,
.benefit-card,
.install-step {
  padding: 28px 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step-card:hover,
.benefit-card:hover,
.install-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.step-number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.1);
  font-weight: 800;
  color: var(--green-800);
}

.step-icon,
.benefit-icon,
.install-illustration {
  font-size: 2rem;
  margin: 1rem 0;
}

.step-card h3,
.benefit-card h3,
.download-card h2,
.legal-box h2 {
  margin: 0 0 0.7rem;
  font-size: 1.45rem;
  color: var(--slate-900);
}

.security-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eefcf3 100%);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 38px;
  align-items: center;
}

.security-points {
  display: grid;
  gap: 18px;
  margin-top: 2rem;
}

.security-points div {
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15, 118, 61, 0.09);
}

.security-points strong {
  color: var(--green-800);
}

.security-visual {
  display: flex;
  justify-content: center;
}

.shield-card {
  position: relative;
  width: 230px;
  height: 230px;
  border-radius: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--white), #ecfdf5);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15,118,61,0.08);
}

.shield-icon {
  font-size: 4rem;
  position: relative;
  z-index: 2;
}

.shield-ring {
  position: absolute;
  inset: 25px;
  border-radius: 32px;
  border: 18px solid rgba(34,197,94,0.12);
}

.shield-check {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 800;
}

.cta-section {
  padding-top: 20px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px 46px;
  background: linear-gradient(135deg, rgba(15,122,61,0.96), rgba(11,92,49,0.98));
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: 0 24px 40px rgba(10, 84, 46, 0.25);
}

.cta-box h2, .cta-box p { color: var(--white); margin: 0; }
.cta-box h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 0.5rem; }
.cta-box p { color: rgba(255,255,255,0.9); }

.faq-wrap {
  max-width: 930px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.3rem 1.5rem;
  text-align: left;
  font-weight: 700;
  color: var(--slate-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--green-700);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.5rem 1.4rem;
}

.site-footer {
  background: #061d13;
  color: rgba(255,255,255,0.85);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
}

.site-footer h3 {
  color: var(--white);
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.site-footer a {
  color: rgba(255,255,255,0.8);
}

.footer-bottom {
  margin-top: 32px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.page-main {
  padding: 60px 0 90px;
}

.request-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.download-card {
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--white), #f2fff5);
}

.download-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.download-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.22));
}

.app-metadata {
  display: grid;
  gap: 14px;
  margin-bottom: 1.6rem;
}

.app-metadata div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0.85rem 0.8rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(148,163,184,0.14);
}

.app-metadata span {
  color: var(--slate-500);
}

.btn-download {
  width: 100%;
  margin-top: 0.5rem;
}

.security-note {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(11, 92, 49, 0.06);
  color: var(--green-800);
  font-size: 0.95rem;
}

.install-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.install-step {
  text-align: center;
}

.install-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
}

.legal-main {
  padding-top: 80px;
}

.legal-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 38px 32px;
}

.legal-box {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148,163,184,0.2);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(15,118,61,0.18);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.28s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phoneFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@media (max-width: 980px) {
  .hero-grid,
  .security-grid,
  .request-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .benefits-grid,
  .install-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(148,163,184,0.2);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section { padding: 84px 0; }
  .hero { padding-top: 64px; }
  .hero-copy h1 { font-size: 2.7rem; }
  .steps-grid,
  .benefits-grid,
  .install-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .site-header {
    position: sticky;
  }

  .brand-logo {
    height: 36px;
  }

  .cta-box {
    padding: 28px 20px;
  }

  .legal-shell {
    padding: 24px 18px;
  }
}
