/* ═══════════════════════════════════════════════════════════════
   🎨 GLOBAL DESIGN TOKENS — CHANGE FONTS HERE, ENTIRE SITE UPDATES
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* FONTS — swap these two lines to change all typography instantly */
  --font-display: 'arial', cursive;
  /* hero h1 */
  --font-heading: 'arial';
  /* h2, h3  */
  --font-body: 'calibri';
  /* all body */

  /* COLORS */
  --green: #25D366;
  --green-dark: #128C7E;
  --dark: #080e0a;
  --dark2: #0f1a11;
  --dark3: #141f10;
  --text: #e2f0e4;
  /* --muted:      #7aa888; */
  --muted: #5ee486;
  --accent: #00e5ff;
  --card-bg: rgba(255, 255, 255, 0.03);
  --border: rgba(37, 211, 102, 0.16);
}

/* ── BASE ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
}

/* ════════════════════════
   NAVIGATION
════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 62px;
  backdrop-filter: blur(20px);
  background: rgba(8, 14, 10, 0.92);
  border-bottom: 1px solid var(--border);
  gap: 0.8rem;
  background-color: white;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--dark2);
  text-decoration: none;
  font-size: 1.0rem;
  font-weight: bolder;
  white-space: nowrap;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.nav-login , .nav-login2 {
  color: var(--dark2);
  text-decoration: none;
   background: var(--green);
  font-size: 1.0rem;
  font-weight: bolder;
  transition: color .2s;
  white-space: nowrap;
  padding: 0.12rem  0.9rem ;
  border-radius: 10px;
  text-align: center;
}

.nav-login:hover , .nav-login2 {
  color: var(--dark3);
}

.nav-btn {
  background: var(--green);
  color: #000;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
}

.nav-btn:hover {
  background: #1eca55;
  transform: scale(1.04);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  margin-left: 0.3rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: rgb(0, 0, 0);
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  z-index: 190;
  background: rgba(8, 14, 10, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 0.5rem 5% 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color .2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--green);
}

.mobile-menu .m-cta {
  margin-top: 1.2rem;
  background: var(--green);
  color: #000;
  padding: 0.9rem;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: none !important;
}

/* ════════════════════════
   HERO
════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 5% 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 75% 40%, rgba(37, 211, 102, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid var(--border);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--green);
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.25
  }
}

h1 {
  /* font-family:var(--font-display); */
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.4rem, 10vw, 8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

h1 .highlight {
  background: linear-gradient(130deg, var(--green) 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 580px;
  font-weight: 400;
  text-align: center;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #1eca55);
  color: #000;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.28);
  transition: all .25s;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--text);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all .25s;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ════════════════════════
   POWERED BY
════════════════════════ */
.powered {
  background: var(--dark2);
  padding: 2.5rem 5%;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.powered-label {
  color: var(--muted);
  font-size: 1.0rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

.powered-chips {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.chip {
  background: rgba(37, 211, 102, 0.07);
  border: 1px solid var(--border);
  padding: 0.42rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--green);
  white-space: nowrap;
}

/* ════════════════════════
   SECTIONS SHARED
════════════════════════ */
section {
  padding: 6rem 5%;
  position: relative;
  z-index: 1;
}

.section-label {
  color: var(--green);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

h2 em {
  font-style: normal;
  color: var(--green);
}

h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-sub {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.78;
}

/* ════════════════════════
   FEATURES
════════════════════════ */
.features {
  background: var(--dark2);
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header .section-sub {
  max-width: 520px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 211, 102, 0.35);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ════════════════════════
   WHY WHATSAPP — RESPONSIVE FIXED
════════════════════════ */
.why-wa {
  background: var(--dark3);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text .btn-primary {
  margin-top: 2rem;
}

.why-text .section-sub {
  max-width: 420px;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  min-width: 0;
  overflow: hidden;
}

.big-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  display: block;
  line-height: 1;
  background: linear-gradient(130deg, var(--green), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.big-label {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ════════════════════════
   PRICING
════════════════════════ */
.pricing {
  background: var(--dark2);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header .section-sub {
  max-width: 460px;
  margin: 0 auto;
}

.toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.toggle {
  width: 48px;
  height: 26px;
  background: var(--green);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color .25s;
}

.price-card:hover {
  border-color: rgba(37, 211, 102, 0.3);
}

.price-card.popular {
  border-color: var(--green);
  background: rgba(37, 211, 102, 0.04);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.28rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  font-family: var(--font-body);
}

.price-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.price-amount {
  margin-bottom: 1.4rem;
}

.price-amount .currency {
  font-size: 1rem;
  color: var(--green);
  vertical-align: top;
  margin-top: 0.6rem;
  display: inline-block;
}

.price-amount .amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
}

.price-amount .period {
  color: var(--muted);
  font-size: 0.8rem;
}

.price-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--muted);
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}

.price-btn {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all .25s;
}

.price-btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}

.price-btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.price-btn-solid {
  background: var(--green);
  color: #000;
}

.price-btn-solid:hover {
  background: #1eca55;
}

/* ════════════════════════
   TESTIMONIALS
════════════════════════ */
.testimonials {
  background: var(--dark3);
}

.testi-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
}

.testi-stars {
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testi-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
  margin-bottom: 1.4rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 0.9rem;
}

.testi-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.testi-role {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 2px;
}

/* ════════════════════════
   CONTACT FORM — stretch fixed
════════════════════════ */
.contact-section {
  background: var(--dark2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text .section-sub {
  max-width: 400px;
  margin-bottom: 1.8rem;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.perk {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 1.0rem;
  font-weight: bold ;
}

.perk-icon {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.2rem;
  width: 100%;
  max-width: 100%;
  /* never overflows */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  /* critical — stays inside container */
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.72rem 0.95rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 168, 136, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(37, 211, 102, 0.5);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--dark2);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 95px;
}

.form-submit {
  width: 100%;
  padding: 0.88rem;
  border-radius: 50px;
  background: var(--green);
  color: #000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: all .25s;
  margin-top: 0.3rem;
}

.form-submit:hover {
  background: #1eca55;
  transform: translateY(-2px);
}

/* ════════════════════════
   FAQ
════════════════════════ */
.faq {
  background: var(--dark3);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
}

.faq-q {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-plus {
  color: var(--green);
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  transition: transform .25s;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 1.4rem 1.1rem;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.72;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ════════════════════════
   CTA
════════════════════════ */
.cta-section {
  background: var(--dark2);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.07), rgba(0, 229, 255, 0.04));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 4rem 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.cta-box h2 {
  margin-bottom: 0.9rem;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.cta-box .btn-primary {
  display: inline-flex;
}

/* ════════════════════════
   FOOTER
════════════════════════ */
footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 2.5rem 3%;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .top{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;

}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 1rem;
  background-color: white;
  width: fit-content;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.footer-links a {
  color: var(--dark3);
  text-decoration: none;
  font-size: 1.0rem;
  transition: color .2s;
  font-weight: bolder;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-copy {
  color: rgba(0, 0, 0, 1);
  font-size: 0.8rem;
}

/* WA FAB */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

/* Scroll anims */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   📱 TABLET — max 920px
═══════════════════════════════════════════ */
@media(max-width:920px) {

  /* Nav — hide links, show hamburger */
  .nav-links {
    display: none;
  }

  .nav-login {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Features: 2 col */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why WA: stack */
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-text .section-sub {
    max-width: 100%;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  /* Pricing: 2 col */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
  }

  .pricing-grid .price-card:last-child {
    grid-column: 1 / -1;
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }

  /* Testi: 2 col */
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid .testi-card:last-child {
    grid-column: 1/-1;
  }

  /* Contact: stack */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    max-width: 540px;
  }
}

/* ═══════════════════════════════════════════
   📱 MOBILE — max 600px
═══════════════════════════════════════════ */
@media(max-width:600px) {

  /* Nav */
  nav {
    padding: 0 4%;
    height: 56px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .mobile-menu {
    top: 56px;
    background-color: rgb(0, 0, 0);
    height: 350px;
  }

  .mobile-menu a {
    color: white;
  }
 
  .mobile-menu .logins{
    /* color: var(--green); */
    background-color: var(--green) ;
    padding: 0.5rem 1.0rem;
    border-radius: 10px;
    color: #000;
  }

  /* Hero */
  .hero {
    padding: 5.5rem 4% 3rem;
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
    letter-spacing: 1px;
  }

  .hero-desc {
    font-size: 0.97rem;
  }

  .hero-cta {
    flex-direction: column;
    justify-content: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    gap: 1.4rem;
  }

  /* Powered chips */
  .powered-chips {
    gap: 0.5rem;
  }

  .chip {
    font-size: 0.75rem;
    padding: 0.38rem 0.85rem;
  }

  /* Sections */
  section {
    padding: 4rem 4%;
  }

  h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  /* Features: 1 col */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Why WA: 2 col grid stays on mobile */
  .why-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .why-stat-card {
    padding: 1.2rem 0.7rem;
  }

  .big-num {
    font-size: 1.8rem;
  }

  /* Pricing: 1 col */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .pricing-grid .price-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Testi: 1 col */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid .testi-card:last-child {
    grid-column: auto;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.4rem;
  }

  /* CTA */
  .cta-box {
    padding: 2.5rem 1.4rem;
    border-radius: 18px;
  }

  /* Footer */
  footer .top{
    flex-direction: column;
  }
  .footer-links {
    gap: 0.9rem;
  }

  .footer-logo {
    font-size: 1.6rem;
  }

  .wa-fab {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}