
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #152e24;
  --green-light: #98C761;
  --green-soft: #e8f5d8;
  --dark: #0a1a14;
  --gray-50: #f8faf8;
  --gray-100: #f0f4f1;
  --gray-200: #dce5de;
  --gray-500: #6b7c72;
  --gray-700: #374840;
  --white: #ffffff;
  --gold: #D4A017;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(10, 26, 20, .06);
  --shadow-lg: 0 12px 48px rgba(10, 26, 20, .12);
  --font: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 3px solid var(--green-light); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--white); color: var(--green); padding: 10px 16px;
  border-radius: var(--radius-sm); font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }
.gradient-text {
  background: linear-gradient(135deg, var(--green-light), #6dbf4a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-light); color: var(--white);
  padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 15px;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(152, 199, 97, .3);
}
.btn-primary:hover { background: #8ab856; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(152, 199, 97, .4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); border: 1.5px solid rgba(255,255,255,.25);
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 14px;
  transition: var(--transition);
}
.btn-secondary:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.btn-secondary-dark { color: var(--green); border-color: var(--gray-200); }
.btn-secondary-dark:hover { border-color: var(--green-light); background: var(--green-soft); }
.btn-nav {
  background: var(--green-light); color: var(--white);
  padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 13px;
  transition: var(--transition);
}
.btn-nav:hover { background: #8ab856; }
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 26, 20, .85); backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.06); transition: var(--transition);
}
#navbar.scrolled { background: rgba(10, 26, 20, .95); box-shadow: 0 2px 20px rgba(0,0,0,.15); }
.nav-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; }
.logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500; transition: var(--transition); letter-spacing: .3px; }
.nav-links a:hover { color: var(--white); }
.nav-links a.btn-nav { color: var(--white); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); border-radius: 2px; }
#hero {
  position: relative; min-height: 660px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(165deg, #0a1a14 0%, #152e24 40%, #1a3d2f 100%);
  overflow: hidden; padding: 130px 24px 90px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(152, 199, 97, .08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(107, 191, 74, .05) 0%, transparent 50%);
}
.hero-content { position: relative; text-align: center; max-width: 700px; }
.hero-tag { color: var(--green-light); font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
#hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-desc { color: rgba(255,255,255,.65); font-size: clamp(15px, 2vw, 17px); line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 10px; justify-content: center; }
.hero-trust .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.hero-trust a { color: rgba(255,255,255,.6); font-size: 13px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.2); }
.hero-trust a:hover { color: var(--white); }
.section { padding: 100px 0; }
.section-dark { background: var(--gray-50); }
.section-tag { color: var(--green-light); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; text-align: center; }
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--green); text-align: center; margin-bottom: 16px; line-height: 1.2; }
.section-desc { color: var(--gray-500); font-size: 16px; text-align: center; max-width: 560px; margin: 0 auto 48px; line-height: 1.7; }
.section-cta-line { text-align: center; margin-top: 48px; }
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.method-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 32px 24px; transition: var(--transition);
}
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.method-icon { font-size: 32px; margin-bottom: 16px; }
.method-card h3 { font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.method-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.reviews-badge { text-align: center; color: var(--gray-500); font-size: 14px; margin-bottom: 40px; }
.reviews-badge .stars { color: var(--gold); letter-spacing: 2px; margin-right: 8px; }
.reviews-badge strong { color: var(--green); font-size: 16px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-card blockquote { font-size: 14px; color: var(--gray-700); line-height: 1.7; font-style: italic; flex-grow: 1; }
.review-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.review-card figcaption strong { font-size: 13px; color: var(--green); }
.review-card figcaption span { font-size: 11px; color: var(--gray-500); }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.security-item { text-align: center; padding: 32px 20px; }
.security-icon { font-size: 36px; margin-bottom: 16px; }
.security-item h3 { font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.security-item p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item[open] { border-color: var(--green-light); box-shadow: var(--shadow); }
.faq-item summary {
  padding: 18px 24px; font-weight: 600; font-size: 15px; color: var(--green);
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--green-light); flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 24px 18px; font-size: 14px; color: var(--gray-500); line-height: 1.7; }
footer { background: var(--dark); padding: 48px 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand img { height: 32px; width: auto; }
.footer-copy { color: rgba(255,255,255,.35); font-size: 12px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 13px; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-legal { text-align: right; max-width: 340px; }
.footer-legal p { color: rgba(255,255,255,.35); font-size: 11px; line-height: 1.8; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag, #hero h1, .hero-desc, .hero-actions { opacity: 0; animation: fadeUp .8s forwards; }
.hero-tag { animation-delay: .1s; }
#hero h1 { animation-delay: .25s; }
.hero-desc { animation-delay: .4s; }
.hero-actions { animation-delay: .55s; }
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: rgba(10,26,20,.97); flex-direction: column; align-items: center; justify-content: center; gap: 28px; backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-links a { font-size: 18px; color: var(--white); }
  #hero { padding: 120px 20px 60px; min-height: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section { padding: 72px 0; }
  .method-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-links { flex-direction: column; gap: 12px; align-items: center; }
  .footer-legal { text-align: center; max-width: none; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-tag, #hero h1, .hero-desc, .hero-actions { opacity: 1; animation: none; }
}
