:root{
  --green:#31B875;
  --gray:#6B6D68;
  --black:#121312;
  --soft:#E7E9E6;
  --white:#FFFFFF;

  --radius:18px;
  --shadow: 0 20px 60px rgba(0,0,0,.18);
  --shadowSoft: 0 14px 40px rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--black);background:#0f1110}
a{color:inherit;text-decoration:none}
.container{width:min(1120px,92vw);margin:0 auto}

.topbar{
  background:rgba(18,19,18,.9);
  border-bottom:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.85);
  font-size:13px;
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;padding:10px 0}
.topbar__left{display:flex;align-items:center;gap:10px}
.dot{width:8px;height:8px;border-radius:99px;background:var(--green);box-shadow:0 0 0 6px rgba(49,184,117,.15)}
.topbar__right{display:flex;gap:16px;flex-wrap:wrap}
.topbar__link{opacity:.9}
.topbar__link:hover{opacity:1}

.nav{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(15,17,16,.65);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav__inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand__logo{height:40px;max-width:180px;object-fit:contain}
.menu{display:flex;align-items:center;gap:22px}
.menu a{color:rgba(255,255,255,.86);font-size:14px}
.menu a:hover{color:#fff}

.burger{display:none;background:none;border:none;cursor:pointer}
.burger span{display:block;width:26px;height:2px;background:#fff;margin:6px 0;opacity:.9}

.mobile{
  display:none;
  padding:14px 0 18px;
  border-top:1px solid rgba(255,255,255,.08);
}
.mobile a{display:block;color:rgba(255,255,255,.88);padding:10px 0}
.mobile .btn{width:100%;text-align:center;margin-top:8px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  font-weight:700;
  transition:.2s transform,.2s opacity,.2s background,.2s border-color;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{background:var(--green);border-color:rgba(49,184,117,.45);color:#062014}
.btn--primary:hover{opacity:.95}
.btn--ghost{background:rgba(255,255,255,.06);color:#fff}
.btn--small{padding:10px 12px;border-radius:12px;font-size:13px}

.hero{
  padding:54px 0 40px;
  background:
    radial-gradient(1000px 600px at 20% 10%, rgba(49,184,117,.25), transparent 55%),
    radial-gradient(900px 540px at 90% 30%, rgba(107,109,104,.22), transparent 55%),
    linear-gradient(180deg, #0f1110 0%, #0b0c0b 100%);
  color:#fff;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.hero__grid{display:grid;grid-template-columns:1.1fr .9fr;gap:34px;align-items:center}
.badge{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:16px}
.badge__pill{
  font-size:12px;color:rgba(255,255,255,.86);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:8px 10px;border-radius:999px
}
h1{font-size:44px;line-height:1.06;margin:0 0 14px}
.lead{font-size:16px;line-height:1.6;color:rgba(255,255,255,.86);margin:0 0 16px}
.checks{list-style:none;padding:0;margin:0 0 20px;display:grid;gap:10px;color:rgba(255,255,255,.88)}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:6px}
.microcopy{margin-top:12px;font-size:12px;color:rgba(255,255,255,.68)}

.hero__visual{position:relative;min-height:360px}
.glass{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadowSoft);
  backdrop-filter: blur(14px);
}
.glass__title{font-weight:800;margin-bottom:12px}
.glass__items{display:grid;gap:10px}
.chip{
  padding:10px 12px;border-radius:14px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.90);
  font-size:13px;
}
.glass__footer{display:flex;align-items:center;justify-content:space-between;margin-top:14px;gap:10px;flex-wrap:wrap}
.signal{display:flex;align-items:center;gap:8px;color:rgba(255,255,255,.75);font-size:12px}
.signal__dot{width:8px;height:8px;border-radius:99px;background:var(--green);box-shadow:0 0 0 6px rgba(49,184,117,.16)}
.mini-btn{font-weight:800;color:#fff;border-bottom:1px solid rgba(255,255,255,.25)}
.mini-btn:hover{border-color:#fff}

.float{
  position:absolute; padding:10px 12px;
  background:rgba(18,19,18,.75);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  color:rgba(255,255,255,.88);
  font-size:12px;
  box-shadow: var(--shadowSoft);
  animation: drift 6s ease-in-out infinite;
}
.float--1{left:-8px;top:18px}
.float--2{right:-10px;top:76px;animation-delay:1.2s}
.float--3{left:18px;bottom:10px;animation-delay:2.2s}
@keyframes drift{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

.section{
  padding:64px 0;
  background:#0b0c0b;
  color:#fff;
}
.section--alt{background:#0f1110}
.section--tight{padding:48px 0}
.headline{margin-bottom:26px}
h2{font-size:32px;line-height:1.1;margin:0 0 10px}
.muted{color:rgba(255,255,255,.74);line-height:1.65}
.tiny{font-size:12px}

.split{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:start}
.cards3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:16px;
}
.card h3{margin:0 0 6px;font-size:15px}
.card p{margin:0;color:rgba(255,255,255,.74);font-size:13px;line-height:1.55}

.stats{
  margin-top:22px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
}
.stat{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:18px;
}
.stat__num{font-size:34px;font-weight:900;color:var(--green);letter-spacing:-0.02em}
.stat__label{color:rgba(255,255,255,.72);font-size:13px;margin-top:4px}

.grid6{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.feature{
  display:flex;gap:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:16px;
}
.feature span{font-size:18px}
.feature h3{margin:0 0 6px;font-size:15px}
.feature p{margin:0;color:rgba(255,255,255,.72);font-size:13px;line-height:1.55}

.cta-bar{
  margin-top:18px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  background:linear-gradient(135deg, rgba(49,184,117,.16), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:18px;
}

.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.step{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:18px;
}
.step__num{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(49,184,117,.18);
  border:1px solid rgba(49,184,117,.35);
  color:var(--green);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{margin:0 0 8px;font-size:15px}
.step p{margin:0;color:rgba(255,255,255,.72);font-size:13px;line-height:1.55}

.list{display:grid;gap:10px;margin:16px 0 16px}
.list__item{
  padding:12px 12px;border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.84);
  font-size:13px;
}

.panel{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:18px;
}
.panel__title{font-weight:900;margin-bottom:10px}
.panel__row{padding:10px 0;border-bottom:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.82);font-size:13px}
.panel__row:last-child{border-bottom:none}
.panel__note{margin-top:10px;font-size:12px}

.faq{display:grid;gap:10px}
.qa{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  overflow:hidden;
}
.q{
  width:100%;text-align:left;
  padding:16px 16px;
  background:transparent;border:none;color:#fff;
  font-weight:800;cursor:pointer;
}
.a{
  max-height:0;
  overflow:hidden;
  padding:0 16px;
  color:rgba(255,255,255,.76);
  transition:max-height .25s ease, padding .25s ease;
  line-height:1.6;
  font-size:13px;
}
.qa.open .a{padding:0 16px 16px;max-height:220px}

.contact{display:grid;grid-template-columns:1.1fr .9fr;gap:22px;align-items:start}
.contact__box{
  margin-top:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:16px;
}
.contact__label{font-size:12px;color:rgba(255,255,255,.72);margin-bottom:8px}
textarea{
  width:100%;
  background:rgba(0,0,0,.26);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:12px;
  color:#fff;
  outline:none;
  resize:vertical;
}
.contact__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

.sidecard{
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:16px;
}
.sidecard h3{margin:0 0 8px}
.sidecard__item{margin:8px 0;color:rgba(255,255,255,.82)}
.hr{border:none;border-top:1px solid rgba(255,255,255,.10);margin:14px 0}

.footer{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footer__logo{height:34px;object-fit:contain}
.sep{margin:0 8px;color:rgba(255,255,255,.25)}

.wa-float{
  position:fixed;right:18px;bottom:18px;z-index:60;
  width:54px;height:54px;border-radius:18px;
  background:var(--green);color:#062014;
  display:grid;place-items:center;
  box-shadow: var(--shadow);
  font-size:22px;font-weight:900;
}
.wa-float:hover{opacity:.95}

.reveal{opacity:0;transform:translateY(16px);transition:.6s ease}
.reveal.show{opacity:1;transform:translateY(0)}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr;gap:22px}
  .split{grid-template-columns:1fr}
  .cards3{grid-template-columns:1fr}
  .grid6{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  h1{font-size:36px}
  h2{font-size:28px}
  .menu{display:none}
  .burger{display:block}
}

/* ===== FORM GRID (aligned fields) ===== */
.form-cash{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.form-group{min-width:0}

/* full width helpers */
.form-group--full{grid-column:1 / -1}
.form__submit{grid-column:1 / -1}

/* On small screens: 1 column */
@media (max-width: 720px){
  .form-cash{grid-template-columns:1fr}
  .form__submit{grid-column:auto}
}

.form-group input,
.form-group select{
  width:100%;
}

/* ===== SINGLE COLUMN (no side image) ===== */
.contact--single{
  grid-template-columns: 1fr !important;
}
.contact--single > div:first-child{
  max-width: 860px;
}
.contact--single .contact__box{
  max-width: 860px;
}
@media (min-width: 981px){
  .contact--single{
    justify-items: start;
  }
}



/* ===== FOOTER ALIGN FIX ===== */
.footer{
  overflow: hidden;
}
/* keep all footer content on the same "container" width */
.footer, .footer__grid, .footer-contact{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* If footer grid exists, make 3 columns: left(contact) | center(logo+copyright) | right(links) */
.footer__grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 20px;
}

/* Contact block should align with the copyright line (same column baseline) */
.footer-contact{
  grid-column: 1;
  text-align: left;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

/* Center block (logo + copyright) */
.footer__center, .footer__brand, .footer__mid{
  grid-column: 2;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

/* Right links */
.footer__right, .footer__links{
  grid-column: 3;
  text-align: right;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

/* On smaller screens, stack nicely */
@media (max-width: 900px){
  .footer, .footer__grid, .footer-contact{
    max-width: 92vw;
  }
  .footer__grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact, .footer__center, .footer__brand, .footer__mid, .footer__right, .footer__links{
    grid-column: auto;
    text-align: center;
  }
}
