@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --green: #25D366;
  --green-dark: #128C7E;
  --dark: #050505;
  --black: #0b0f14;
  --text: #1f2937;
  --muted: #6b7280;
  --light: #f7f8fa;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 24px 70px rgba(0,0,0,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--black);
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.nav a:hover {
  color: var(--black);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
}

.login-link:hover {
  color: var(--green-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--green);
  color: #06130a;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(37,211,102,.28);
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-outline {
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  box-shadow: none;
}

.btn-outline-dark {
  background: white;
  color: var(--black);
  border: 1px solid var(--border);
  box-shadow: none;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(37,211,102,.25), transparent 34%),
    linear-gradient(135deg, #050505 0%, #101820 58%, #07130c 100%);
  color: white;
  padding: 96px 0 110px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 70px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37,211,102,.12);
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .95;
  letter-spacing: -.075em;
  max-width: 780px;
}

.hero p {
  max-width: 660px;
  color: rgba(255,255,255,.78);
  font-size: 20px;
  line-height: 1.65;
  margin: 26px 0 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 800;
}

.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone {
  width: 310px;
  height: 620px;
  border: 10px solid #191f26;
  border-radius: 46px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
  transform: rotate(3deg);
}

.phone-top {
  width: 94px;
  height: 24px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #111827;
}

.store-preview {
  height: calc(100% - 42px);
  border-radius: 30px;
  background: #f4f5f7;
  padding: 16px;
  overflow: hidden;
}

.store-hero {
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(135deg, #111827, var(--green));
}

.store-title {
  height: 22px;
  width: 72%;
  background: #111827;
  border-radius: 999px;
  margin-top: 18px;
}

.store-text {
  height: 12px;
  width: 88%;
  background: #d1d5db;
  border-radius: 999px;
  margin: 12px 0 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-grid div {
  height: 116px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.cart-preview {
  margin-top: 16px;
  border-radius: 18px;
  padding: 14px;
  background: var(--green);
  color: #07130c;
  font-weight: 900;
  text-align: center;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2,
.simple-box h2,
.final-cta h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.section-head p,
.simple-box p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.compare-section {
  background: var(--light);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-card {
  padding: 34px;
  border-radius: 32px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 14px 45px rgba(0,0,0,.06);
}

.compare-card h3 {
  font-size: 26px;
  margin: 0 0 22px;
  color: var(--black);
  letter-spacing: -.04em;
}

.compare-card ul,
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.compare-card li,
.pricing-card li {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.compare-card.bad li::before {
  content: "✕ ";
  color: #ef4444;
  font-weight: 900;
}

.compare-card.good {
  background: var(--black);
  color: white;
  transform: translateY(-12px);
  box-shadow: 0 28px 80px rgba(0,0,0,.2);
}

.compare-card.good h3 {
  color: white;
}

.compare-card.good li {
  color: rgba(255,255,255,.78);
}

.compare-card.good li::before,
.pricing-card li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 900;
}

.section-dark {
  background: var(--black);
  color: white;
}

.section-dark .section-head h2 {
  color: white;
}

.section-dark .section-head p {
  color: rgba(255,255,255,.68);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  padding: 32px;
  border-radius: 30px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #07130c;
  font-weight: 900;
}

.step h3 {
  font-size: 22px;
  margin: 22px 0 10px;
}

.step p {
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: white;
  box-shadow: 0 14px 45px rgba(0,0,0,.06);
  font-size: 28px;
}

.card h3 {
  font-size: 20px;
  margin: 18px 0 8px;
  color: var(--black);
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.simple-section {
  background: var(--light);
}

.simple-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 54px;
  border-radius: 40px;
  background: white;
  box-shadow: var(--shadow);
}

.simple-list {
  display: grid;
  gap: 14px;
}

.simple-list p {
  margin: 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: #f7f8fa;
  color: var(--black);
  font-weight: 800;
}

.plans-section {
  background: white;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 14px 45px rgba(0,0,0,.06);
}

.pricing-card.featured {
  background: var(--black);
  color: white;
  transform: translateY(-14px);
  box-shadow: 0 28px 80px rgba(0,0,0,.20);
}

.pricing-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
  color: var(--black);
}

.pricing-card.featured h3 {
  color: white;
}

.price {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.05em;
  margin: 0 0 22px;
}

.price span {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0;
}

.featured .price span {
  color: rgba(255,255,255,.6);
}

.pricing-card ul {
  margin-bottom: 28px;
}

.featured li {
  color: rgba(255,255,255,.76);
}

.popular {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37,211,102,.14);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.faq-section {
  background: var(--light);
}

.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--black);
}

details p {
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(37,211,102,.25), transparent 40%),
    var(--black);
  color: white;
}

.final-cta h2 {
  color: white;
  max-width: 820px;
  margin: 0 auto;
}

.final-cta p {
  color: rgba(255,255,255,.72);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .compare-grid,
  .simple-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 70px 0;
  }

  .phone {
    width: 280px;
    height: 560px;
  }

  .cards,
  .steps,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .compare-card.good,
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    height: 68px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .login-link {
    display: none;
  }

  .btn-small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .simple-box {
    padding: 28px;
    border-radius: 30px;
  }

  .phone {
    transform: none;
  }
}
.pricing-note {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 52px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37,211,102,.16), rgba(37,211,102,.06));
  color: var(--green-dark);
  font-weight: 900;
  font-size: 15px;
  border: 1px solid rgba(37,211,102,.25);
  box-shadow: 0 14px 35px rgba(37,211,102,.14);
  text-align: center;
}

.quota-badge {
  display: inline-flex;
  width: fit-content;
  margin: 4px 0 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9ff4f, #25D366);
  color: #06130a;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(37,211,102,.28);
}

.pricing-card.featured .quota-badge {
  background: linear-gradient(135deg, #eaff64, #25D366);
  color: #06130a;
  box-shadow: 0 14px 34px rgba(37,211,102,.34);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f4f5f7;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
}







.price-year {
  margin: 8px 0 6px;
  font-size: 18px;
  font-weight: 900;
  color: var(--black);
}

.featured .price-year {
  color: white;
}

.price-extra {
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.featured .price-extra {
  color: rgba(255,255,255,.65);
}

.extra-products {
  margin-top: 40px;
}

.extra-box {
  padding: 38px;
  border-radius: 32px;
  background: var(--light);
  text-align: center;
}

.extra-box h3 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -.04em;
}

.extra-box p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
}

.extra-item {
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.extra-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.extra-item span {
  color: var(--green-dark);
  font-weight: 900;
  font-size: 20px;
}

.pricing-footer {
  margin-top: 34px;
  text-align: center;
}

.pricing-footer p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 768px) {

  .extra-grid {
    grid-template-columns: 1fr;
  }

  .price-month strong {
    font-size: 40px;
  }

}

.pricing-note {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 52px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37,211,102,.16), rgba(37,211,102,.06));
  color: var(--green-dark);
  font-weight: 900;
  font-size: 15px;
  border: 1px solid rgba(37,211,102,.25);
  box-shadow: 0 14px 35px rgba(37,211,102,.14);
  text-align: center;
}

.quota-badge {
  display: inline-flex;
  width: fit-content;
  margin: 4px 0 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9ff4f, #25D366);
  color: #06130a;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(37,211,102,.28);
}

.partner-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  background:#B7FF3C;
  color:#111827;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(183,255,60,.35);
  transition:.2s;
}

.partner-link:hover{
  transform:translateY(-2px);
}

.partner-section{
  background:#f8fafc;
}

.partner-main-box{
  background:#070b1a;
  color:white;
  border-radius:34px;
  padding:54px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:38px;
  align-items:center;
  box-shadow:0 30px 80px rgba(15,23,42,.18);
}

.partner-content h2{
  font-size:42px;
  line-height:1.08;
  margin:14px 0;
}

.partner-content p{
  color:#d1d5db;
  font-size:18px;
}

.partner-highlight{
  margin:24px 0;
  background:rgba(183,255,60,.12);
  border:1px solid rgba(183,255,60,.35);
  color:#B7FF3C;
  padding:18px;
  border-radius:18px;
  font-weight:900;
}

.partner-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.earnings-card{
  background:white;
  color:#111827;
  padding:30px;
  border-radius:28px;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.earnings-card span{
  color:#64748b;
  font-weight:700;
}

.earnings-card > strong{
  display:block;
  font-size:42px;
  margin:10px 0 22px;
}

.earnings-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:18px;
  border-radius:18px;
  background:#f1f5f9;
  margin-top:12px;
}

.earnings-row p{
  margin:0;
  color:#334155;
}

.earnings-row.good{
  background:#dcfce7;
}

.earnings-row.good b{
  color:#16a34a;
}

.partner-benefits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:24px;
}

.partner-benefit{
  background:white;
  padding:26px;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.partner-benefit h3{
  margin-top:0;
}

.partner-benefit p{
  color:#64748b;
}

@media(max-width:900px){
  .partner-main-box{
    grid-template-columns:1fr;
    padding:34px 24px;
  }

  .partner-content h2{
    font-size:32px;
  }

  .partner-benefits{
    grid-template-columns:1fr;
  }
}
#partners.partner-section{
  background:#f8fafc !important;
  padding:96px 0 !important;
}

#partners .partner-main-box{
  background:#070b1a !important;
  color:white !important;
  border-radius:34px !important;
  padding:54px !important;
  display:grid !important;
  grid-template-columns:1.2fr .8fr !important;
  gap:38px !important;
  align-items:center !important;
  box-shadow:0 30px 80px rgba(15,23,42,.18) !important;
}

#partners .partner-content h2{
  color:white !important;
  font-size:42px !important;
  line-height:1.08 !important;
  margin:14px 0 !important;
}

#partners .partner-content p{
  color:#d1d5db !important;
  font-size:18px !important;
}

#partners .partner-highlight{
  margin:24px 0 !important;
  background:rgba(183,255,60,.12) !important;
  border:1px solid rgba(183,255,60,.35) !important;
  color:#B7FF3C !important;
  padding:18px !important;
  border-radius:18px !important;
  font-weight:900 !important;
}

#partners .partner-actions{
  display:flex !important;
  gap:14px !important;
  flex-wrap:wrap !important;
}

#partners .earnings-card{
  background:white !important;
  color:#111827 !important;
  padding:30px !important;
  border-radius:28px !important;
  box-shadow:0 25px 60px rgba(0,0,0,.25) !important;
}

#partners .earnings-card > strong{
  display:block !important;
  font-size:42px !important;
  margin:10px 0 22px !important;
}

#partners .earnings-row{
  display:flex !important;
  justify-content:space-between !important;
  gap:20px !important;
  padding:18px !important;
  border-radius:18px !important;
  background:#f1f5f9 !important;
  margin-top:12px !important;
}

#partners .earnings-row.good{
  background:#dcfce7 !important;
}

#partners .partner-benefits{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:18px !important;
  margin-top:24px !important;
}

#partners .partner-benefit{
  background:white !important;
  padding:26px !important;
  border-radius:24px !important;
  box-shadow:0 18px 45px rgba(15,23,42,.08) !important;
}

@media(max-width:900px){
  #partners .partner-main-box{
    grid-template-columns:1fr !important;
    padding:34px 24px !important;
  }

  #partners .partner-content h2{
    font-size:32px !important;
  }

  #partners .partner-benefits{
    grid-template-columns:1fr !important;
  }
}

/* =========================
   PARTNER REGISTER
========================= */

.partner-register-box{
  margin-top:50px;
}

.partner-form{
  max-width:950px;
  margin:0 auto;
  background:white;
  border-radius:34px;
  padding:42px;
  border:1px solid #e5e7eb;
  box-shadow:0 24px 70px rgba(15,23,42,.08);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group label{
  margin-bottom:10px;
  font-size:14px;
  font-weight:800;
  color:#111827;
}

.form-group input,
.form-group select{
  width:100%;
  height:56px;
  border-radius:18px;
  border:1px solid #dbe2ea;
  background:#f8fafc;
  padding:0 18px;
  font-size:15px;
  font-family:inherit;
  color:#111827;
  transition:.2s;
  outline:none;
}

.form-group input:focus,
.form-group select:focus{
  border-color:#25D366;
  background:white;
  box-shadow:0 0 0 4px rgba(37,211,102,.12);
}

.partner-submit{
  width:100%;
  height:58px;
  margin-top:28px;
  border:none;
  cursor:pointer;
  font-size:17px;
}

.partner-form-note{
  margin-top:20px;
  text-align:center;
  color:#64748b;
  font-size:14px;
}

@media(max-width:768px){

  .partner-form{
    padding:26px;
    border-radius:24px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

}
