
/* ============================================================
   BlrNet.in – Bangalore Network — Main Stylesheet
   Fonts: Bebas Neue (display) + Nunito Sans (body)
   ============================================================ */

:root {
  --orange: #FF5722;
  --orange-dark: #E64A19;
  --dark: #0D1117;
  --dark-2: #1A1A2E;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --white: #FFFFFF;
  --light-bg: #F4F7FB;
  --text: #1C2438;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  padding-bottom: 70px; /* space for sticky bar */
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 820px; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { line-height: 1.25; font-weight: 800; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

.orange { color: var(--orange); }
.white  { color: var(--white); }
.text-center { text-align: center; }
.mt-10  { margin-top: 10px; }
.mt-20  { margin-top: 20px; }
.mt-30  { margin-top: 30px; }
.mt-40  { margin-top: 40px; }
.mt-50  { margin-top: 50px; }
.w-full { width: 100%; display: block; text-align: center; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-font { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-orange, .btn-wa, .btn-outline, .btn-outline-white,
.btn-nav-call, .btn-hero-primary, .btn-hero-wa,
.btn-dark, .btn-premium, .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-orange         { background: var(--orange); color: #fff; }
.btn-orange:hover   { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,87,34,0.35); }
.btn-wa             { background: var(--wa-green); color: #fff; }
.btn-wa:hover       { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-outline        { border-color: var(--orange); color: var(--orange); background: transparent; }
.btn-outline:hover  { background: var(--orange); color: #fff; }
.btn-outline-white  { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: var(--dark); }
.btn-dark           { background: var(--dark); color: #fff; }
.btn-dark:hover     { background: #222; transform: translateY(-2px); }
.btn-premium        { background: linear-gradient(135deg, #7B2FF7, #E040FB); color: #fff; }
.btn-premium:hover  { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123,47,247,0.4); }
.btn-link           { color: var(--orange); padding: 0; border: none; background: none; text-decoration: underline; }
.btn-lg             { padding: 16px 32px; font-size: 1.05rem; }
.btn-nav-call       { background: var(--orange); color: #fff; padding: 8px 18px; border-radius: 6px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 1px; display: flex; }
.logo-lead { color: #fff; }
.logo-flow { color: var(--orange); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-menu a {
  color: #ccc;
  font-size: .88rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s;
}
.nav-menu a:hover { color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,87,34,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(21,101,192,0.15) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,87,34,0.15);
  border: 1px solid rgba(255,87,34,0.4);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: .5px;
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: #c9d1e0;
  margin-bottom: 2rem;
  max-width: 620px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-hero-primary {
  background: var(--orange);
  color: #fff;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--orange);
  transition: all 0.2s;
}
.btn-hero-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,87,34,0.4); }
.btn-hero-wa {
  background: var(--wa-green);
  color: #fff;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.2s;
}
.btn-hero-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.hero-trust {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #8899aa;
  font-size: .88rem;
  font-weight: 600;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--orange); padding: 36px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: #fff; letter-spacing: 1px; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,0.85); font-weight: 600; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section       { padding: 80px 0; }
.section-light { background: var(--light-bg); }
.section-dark  { background: var(--dark-2); }
.section-orange { background: var(--orange); }
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-tag.light { color: rgba(255,255,255,0.7); }
.section-tag.dark  { color: var(--dark-2); }
.section-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .5px;
  margin-bottom: 1rem;
}
.section-h2.dark-text { color: var(--dark); }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 660px; }
.section-sub.light { color: rgba(255,255,255,0.8); }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.problem-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
}
.problem-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.problem-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.problem-card p { color: var(--text-light); font-size: .95rem; }

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.solution-item {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.sol-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--orange);
  min-width: 48px;
  line-height: 1;
}
.solution-item h3 { color: #fff; margin-bottom: .5rem; font-size: 1.05rem; }
.solution-item p  { color: #8899aa; font-size: .93rem; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.feat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feat-icon { font-size: 2rem; margin-bottom: .75rem; }
.feat-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.feat-card p  { color: var(--text-light); font-size: .9rem; }

/* ============================================================
   STEPS (HOW IT WORKS)
   ============================================================ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 2.5rem;
}
.step { flex: 1; background: rgba(0,0,0,0.15); border-radius: var(--radius); padding: 32px 24px; }
.step-num {
  width: 48px; height: 48px;
  background: var(--dark);
  color: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.step h3 { color: var(--dark); margin-bottom: .5rem; font-size: 1.05rem; }
.step p   { color: #444; font-size: .93rem; }
.step-arrow { font-size: 2rem; color: var(--dark); align-self: center; flex-shrink: 0; margin-top: -20px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
  align-items: start;
}
.pricing-grid.big { align-items: stretch; }
.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid var(--border);
  transition: box-shadow 0.2s;
}
.price-card:hover { box-shadow: var(--shadow-lg); }
.price-card.popular { border-color: var(--orange); }
.price-card.premium { border-color: #7B2FF7; }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  padding: 4px 20px; border-radius: 50px; font-size: .8rem; font-weight: 800;
  white-space: nowrap;
}
.exclusive-badge {
  background: linear-gradient(135deg,#7B2FF7,#E040FB);
  color: #fff; font-size: .78rem; font-weight: 800;
  text-align: center; padding: 8px; border-radius: 8px;
  margin-bottom: 1rem; letter-spacing: .5px;
}
.price-badge { font-weight: 800; font-size: 1.1rem; margin-bottom: .5rem; }
.price-plan-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .5px; margin-bottom: .25rem; }
.price-amount { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--orange); letter-spacing: 1px; line-height: 1; }
.price-amount-custom { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: #7B2FF7; letter-spacing: 1px; }
.price-period { color: var(--text-light); font-size: .85rem; margin-bottom: .5rem; }
.custom-note { color: #7B2FF7; font-weight: 700; font-size: .95rem; margin-bottom: 1rem; }
.price-desc { color: var(--text-light); font-size: .9rem; margin-bottom: 1.25rem; }
.price-features { margin-bottom: 1.5rem; }
.price-features li { padding: 6px 0; font-size: .9rem; border-bottom: 1px solid var(--border); }
.price-features li:last-child { border-bottom: none; }
.slots-note { color: #E64A19; font-size: .8rem; font-weight: 700; text-align: center; margin-top: .75rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 2rem; }
.testi-grid-full { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.testi-card, .testi-card-full {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.testi-card-full { background: #fff; border-color: var(--border); box-shadow: var(--shadow); }
.testi-stars { font-size: 1rem; margin-bottom: .75rem; }
.testi-text { color: var(--text); font-size: .95rem; font-style: italic; margin-bottom: 1rem; }
.testi-card p { color: #ccc; font-size: .93rem; font-style: italic; margin-bottom: 1rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--orange);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.testi-author strong { color: var(--text); font-size: .95rem; display: block; }
.testi-author small  { color: var(--text-light); font-size: .82rem; }
.testi-card .testi-author strong { color: #fff; }
.testi-card .testi-author small  { color: #aaa; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: linear-gradient(135deg, var(--dark-2) 0%, #0f2044 100%); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark-2);
  padding: 70px 0 80px;
  text-align: center;
}
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem,5vw,3.8rem); color: #fff; letter-spacing: .5px; }
.page-hero p  { color: #8899aa; font-size: 1.1rem; margin-top: .75rem; }
.dark-hero    { background: linear-gradient(135deg, var(--dark) 0%, #1a0a2e 100%); }

/* ============================================================
   WHY WEBSITE PAGE
   ============================================================ */
.why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 2rem; }
.why-card { display: flex; gap: 24px; background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-left: 5px solid var(--orange); }
.why-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--orange); min-width: 48px; line-height: 1; }
.why-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.why-card p  { color: var(--text-light); font-size: .95rem; }
.info-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.info-box.orange-border { border: 2px solid var(--orange); }
.info-box h3 { font-size: 1.3rem; margin-bottom: 1.25rem; }
.growth-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.growth-item { background: var(--light-bg); border-radius: 8px; padding: 16px; font-size: .9rem; }
.growth-icon { font-size: 1.5rem; display: block; margin-bottom: .4rem; }

/* ============================================================
   FEATURES DETAILED
   ============================================================ */
.feature-detailed-grid { display: flex; flex-direction: column; gap: 24px; }
.feat-detail-card { display: flex; gap: 24px; background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.feat-big-icon { font-size: 2.8rem; min-width: 56px; }
.feat-detail-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feat-detail-card p  { color: var(--text-light); font-size: .95rem; }

/* ============================================================
   SEO DOMINATION PAGE
   ============================================================ */
.seo-intro-box { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border-left: 6px solid var(--orange); margin-bottom: 1rem; }
.seo-intro-box h2 { font-size: 1.4rem; margin-bottom: .75rem; }
.seo-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 1.5rem; }
.seo-step { display: flex; gap: 20px; align-items: flex-start; background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.seo-step-icon { font-size: 2rem; min-width: 44px; }
.seo-step h3 { margin-bottom: .5rem; }
.seo-step p { color: var(--text-light); font-size: .93rem; }
.seo-keyword-box { background: var(--dark-2); border-radius: var(--radius); padding: 28px; }
.seo-keyword-box h3 { color: #fff; margin-bottom: 1rem; }
.keyword-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.keyword-pills span { background: rgba(255,87,34,0.2); border: 1px solid rgba(255,87,34,0.4); color: var(--orange); padding: 6px 14px; border-radius: 50px; font-size: .85rem; font-weight: 700; }
.honest-box { background: #FFF8F0; border: 2px solid var(--orange); border-radius: var(--radius); padding: 28px; }
.honest-box h3 { margin-bottom: .75rem; }
.honest-box p  { color: var(--text); font-size: .95rem; }
.premium-cta-box { background: linear-gradient(135deg, #0D1117, #1a0a2e); border-radius: 16px; padding: 48px 32px; }
.premium-cta-box h2 { color: #fff; font-family: 'Bebas Neue',sans-serif; font-size: 2.2rem; margin-bottom: .75rem; }
.premium-cta-box p  { color: #ccc; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.price-card .price-features.full li { padding: 8px 0; }
.cta-box { background: var(--light-bg); border-radius: var(--radius); padding: 48px; }
.cta-box h2 { font-family: 'Bebas Neue',sans-serif; font-size: 2.2rem; margin-bottom: .75rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.contact-info h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 16px; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { font-size: 1.8rem; min-width: 44px; }
.contact-item strong { display: block; font-size: 1rem; margin-bottom: 3px; }
.contact-item a { color: var(--orange); font-weight: 700; font-size: 1.05rem; }
.contact-item p { color: var(--text-light); font-size: .88rem; margin: 0; }
.contact-direct-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
}
.lead-form-wrap h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.lead-form-wrap p  { color: var(--text-light); font-size: .9rem; margin-bottom: 1.25rem; }
.lead-form { display: flex; flex-direction: column; gap: 12px; }
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  background: var(--light-bg);
}
.lead-form input:focus,
.lead-form select:focus { border-color: var(--orange); background: #fff; }
.form-note { text-align: center; color: var(--text-light); font-size: .85rem; margin: 1rem 0 .5rem; }
.form-direct-btns { display: flex; gap: 10px; }
.form-direct-btns a { flex: 1; justify-content: center; padding: 12px; font-size: .9rem; }

/* ============================================================
   DYNAMIC TEMPLATE PAGE
   ============================================================ */
.dynamic-hero { text-align: left; }
.breadcrumb { color: #8899aa; font-size: .85rem; margin-bottom: 1rem; }
.breadcrumb a { color: var(--orange); }
.template-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; }
.template-intro p { font-size: 1.05rem; line-height: 1.7; color: var(--text); }
.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 1rem; }
.benefit-list li { background: #fff; border-radius: 8px; padding: 12px 16px; box-shadow: var(--shadow); font-size: .9rem; font-weight: 600; }
.services-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1rem; }
.service-chip { background: #fff; border: 2px solid var(--border); border-radius: 50px; padding: 8px 16px; font-size: .85rem; font-weight: 700; }
.how-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 1rem; }
.how-step { display: flex; gap: 16px; align-items: flex-start; }
.how-num { background: var(--orange); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.how-step p { color: var(--text); font-size: .95rem; }
.internal-links h3 { font-size: 1rem; margin-bottom: .75rem; color: var(--text-light); }
.link-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.link-chip { background: var(--light-bg); border: 1px solid var(--border); border-radius: 6px; padding: 6px 14px; font-size: .82rem; font-weight: 600; color: var(--text); transition: all 0.15s; }
.link-chip:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.sidebar-cta { background: var(--dark-2); border-radius: var(--radius); padding: 24px; }
.sidebar-cta h4 { color: #fff; font-size: 1.05rem; margin-bottom: .5rem; }
.sidebar-cta p  { color: #8899aa; font-size: .9rem; margin-bottom: 1rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 1rem; }
.faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--orange); font-size: 1.4rem; font-weight: 800; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 16px; color: var(--text-light); font-size: .93rem; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 56px; height: 56px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  z-index: 999;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); }

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-call, .sticky-wa {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px;
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  transition: filter 0.2s;
}
.sticky-call:hover, .sticky-wa:hover { filter: brightness(1.1); }
.sticky-call { background: var(--orange); }
.sticky-wa   { background: var(--wa-green); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { color: #8899aa; font-size: .92rem; margin: .5rem 0 1.25rem; max-width: 300px; }
.footer-contact-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-links h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer-links ul li { margin-bottom: .6rem; }
.footer-links ul li a { color: #8899aa; font-size: .88rem; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.footer-bottom p { color: #667; font-size: .82rem; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-toggle  { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 9999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a   { padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-menu li:last-child a { border-bottom: none; }
  .navbar { position: sticky; z-index: 1000; }

  .hero-h1 { font-size: 2.6rem; }
  .hero-content { padding: 50px 20px; }
  .hero-trust { gap: 10px; }

  .stats-grid { grid-template-columns: repeat(2,1fr); }

  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid  { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .testi-grid-full { grid-template-columns: 1fr; }

  .steps-grid { flex-direction: column; }
  .step-arrow { display: none; }

  .template-grid { grid-template-columns: 1fr; }
  .template-sidebar { order: -1; }
  .benefit-list  { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .growth-grid  { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: span 1; }

  .float-wa { bottom: 78px; }

  .page-hero { padding: 50px 0 40px; }
  .why-card { flex-direction: column; gap: 12px; }
  .feat-detail-card { flex-direction: column; gap: 12px; }
  .seo-step { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; text-align: center; }
  .form-direct-btns { flex-direction: column; }
  .form-direct-btns a { width: 100%; }
}

/* Form message styles */
.form-msg { padding: 14px 18px; border-radius: 8px; font-weight: 700; font-size: .93rem; margin-bottom: 1rem; }
.form-msg-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.form-msg-error   { background: #FFF3E0; color: #E65100; border: 1px solid #FFCC80; }

/* ============================================================
   SUPPLEMENT — Missing classes for updated HTML
   ============================================================ */

:root {
  --green:      #16A34A;
  --green-dark: #15803D;
  --green-light:#DCFCE7;
}

/* ============================================================
   UTILITY — Green variants
   ============================================================ */
.green-text { color: var(--green) !important; }
.green-bg   { background: var(--green); }
.green { color: var(--green); }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-label.green { color: var(--green); }
.section-label.orange { color: var(--orange); }

/* ============================================================
   BUTTONS — Extra variants
   ============================================================ */
.btn-green              { background: var(--green); color: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: .95rem; border: 2px solid transparent; transition: all .2s; }
.btn-green:hover        { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.35); }
.btn-outline-green      { border: 2px solid var(--green); color: var(--green); background: transparent; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: .95rem; transition: all .2s; }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-white-green        { background: #fff; color: var(--green); border: 2px solid #fff; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: .95rem; transition: all .2s; }
.btn-white-green:hover  { background: var(--green-light); }
.btn-outline-dark       { border: 2px solid var(--dark); color: var(--dark); background: transparent; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: .95rem; transition: all .2s; }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-white-green-hero   { background: #fff; color: var(--green); border: 2px solid #fff; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 28px; border-radius: 8px; font-weight: 800; font-size: 1rem; transition: all .2s; }
.btn-white-green-hero:hover { background: var(--green-light); }
.btn-wa-hero            { background: var(--wa-green); color: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 28px; border-radius: 8px; font-weight: 800; font-size: 1rem; transition: all .2s; }
.btn-wa-hero:hover      { background: var(--wa-dark); }
.hero-btns              { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.5rem; margin-bottom: 0.5rem; }

/* ============================================================
   PAGE HERO VARIANTS
   ============================================================ */
.page-hero-dark  { background: linear-gradient(135deg, var(--dark) 0%, #1a0a2e 100%); text-align: center; }
.page-hero-dark h1, .page-hero-dark p { color: #fff; }
.page-hero-dark p { color: rgba(255,255,255,.75); margin-top: .75rem; }
.page-hero-green { background: linear-gradient(135deg, #064E3B 0%, #065F46 100%); padding: 70px 0 80px; text-align: center; }
.page-hero-green h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem,5vw,3.8rem); color: #fff; letter-spacing: .5px; }
.page-hero-green p  { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-top: .75rem; }

/* ============================================================
   DUAL HERO
   ============================================================ */
.dual-hero { overflow: hidden; }
.dual-hero-split {
  display: flex;
  min-height: 90vh;
  position: relative;
}
.dual-side {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 70px 0;
}
.web-side   { background: linear-gradient(135deg, var(--dark-2) 0%, #0f1a35 100%); }
.leads-side { background: #fff; border-left: 1px solid var(--border); }
.dual-side-inner { padding: 0 48px 0 40px; max-width: 600px; }
.web-side   .dual-side-inner { margin-left: auto; }
.leads-side .dual-side-inner { margin-right: auto; }
.dual-or {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 3px solid var(--border);
  color: var(--text-light);
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: 2px;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow);
}
.side-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.web-badge   { background: rgba(255,87,34,.15); border: 1px solid rgba(255,87,34,.4); color: var(--orange); }
.leads-badge { background: var(--green-light); border: 1px solid rgba(22,163,74,.4); color: var(--green); }
.dual-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  letter-spacing: .5px;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}
.leads-side .dual-h1 { color: var(--dark); }
.dual-p { font-size: 1rem; margin-bottom: 1.25rem; color: rgba(255,255,255,.8); }
.leads-side .dual-p { color: var(--text-light); }
.dual-pills { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; list-style: none; }
.dual-pills li { font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.85); }
.leads-pills li { color: var(--text); }
.dual-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.75rem; }
.dual-stats { display: flex; gap: 24px; }
.dstat { display: flex; flex-direction: column; }
.dnum { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 1px; line-height: 1; }
.dlabel { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6); }
.leads-side .dlabel { color: var(--text-light); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num   { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: #fff; letter-spacing: 1px; line-height: 1; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 600; }

/* ============================================================
   HOW IT WORKS — TWO-COL
   ============================================================ */
.two-col-how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 2.5rem;
}
.how-box {
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.web-how   { background: #fff; border-top: 4px solid var(--orange); }
.leads-how { background: #fff; border-top: 4px solid var(--green); }
.how-box-title {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.how-icon { font-size: 1.4rem; }
.how-steps-list { display: flex; flex-direction: column; gap: 16px; }
.how-step-item { display: flex; gap: 14px; align-items: flex-start; }
.how-num {
  min-width: 28px; height: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
  flex-shrink: 0;
}
.green-num { background: var(--green); }
.how-step-item strong { font-size: .95rem; display: block; margin-bottom: 2px; }
.how-step-item p { color: var(--text-light); font-size: .88rem; margin: 0; }

/* ============================================================
   STEPS ROW (Get Leads page)
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.step-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.step-num-big {
  width: 52px; height: 52px;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.step-box h3 { font-size: 1rem; margin-bottom: .5rem; }
.step-box p  { color: var(--text-light); font-size: .9rem; }

/* ============================================================
   SERVICE CATEGORY CHIPS
   ============================================================ */
.cat-group { margin-bottom: 2rem; }
.cat-group-title {
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.cat-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-chip-dual {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  text-align: center;
  transition: background .2s;
}
.cat-chip-dual:hover { background: rgba(255,255,255,.12); }
.cat-chip-icon { font-size: 1.5rem; }
.cat-chip-name { font-size: .82rem; font-weight: 700; color: #fff; }
.cat-chip-links { display: flex; gap: 6px; margin-top: 4px; }
.cat-chip-links a { font-size: .72rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.cat-chip-links a:first-child { background: rgba(255,87,34,.3); color: var(--orange); }
.cat-chip-links a:last-child  { background: rgba(22,163,74,.3); color: #4ADE80; }
.cat-chip-lead {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 10px 16px;
  transition: background .2s;
  color: #fff;
  text-decoration: none;
}
.cat-chip-lead:hover { background: rgba(22,163,74,.25); border-color: rgba(22,163,74,.5); }
.cat-icon { font-size: 1.2rem; }
.cat-name-text { font-size: .88rem; font-weight: 600; }
.leads-only-chips .cat-chip-lead { color: #e5f7ee; }

/* ============================================================
   TESTIMONIALS — New structure
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.testi-stars { font-size: 1rem; color: #F59E0B; margin-bottom: .75rem; }
.testi-text  { color: var(--text); font-size: .93rem; font-style: italic; flex-grow: 1; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px;
  background: var(--orange);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.green-av { background: var(--green); }
.testi-name  { font-weight: 700; font-size: .92rem; color: var(--text); }
.testi-role  { font-size: .8rem; color: var(--text-light); }
.testi-badge {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}
.web-badge-sm   { background: rgba(255,87,34,.12); color: var(--orange); }
.leads-badge-sm { background: var(--green-light); color: var(--green); }
/* Big testimonials */
.testimonials-big-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testi-big-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.testi-stars-big { font-size: 1.2rem; color: #F59E0B; margin-bottom: 1rem; }
.testi-text-big  { font-size: 1rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; }
.testi-author-big { display: flex; align-items: center; gap: 14px; }
.ta-av { width: 52px; height: 52px; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; flex-shrink: 0; }
.ta-name   { font-weight: 700; font-size: 1rem; }
.ta-role   { color: var(--text-light); font-size: .85rem; }
.ta-badge  { display: inline-block; font-size: .75rem; font-weight: 800; padding: 4px 12px; border-radius: 50px; background: rgba(255,87,34,.12); color: var(--orange); margin-top: 4px; }

/* ============================================================
   DUAL CTA SECTION
   ============================================================ */
.dual-cta-section { background: var(--light-bg); }
.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-card-dark, .cta-card-green {
  border-radius: 16px;
  padding: 44px 36px;
}
.cta-card-dark  { background: var(--dark-2); }
.cta-card-green { background: linear-gradient(135deg, var(--green) 0%, #065F46 100%); }
.cta-pretitle { font-size: .78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.cta-title    { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem,2.5vw,2.2rem); color: #fff; letter-spacing: .5px; margin-bottom: .75rem; }
.cta-desc     { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 1.5rem; }

/* ============================================================
   PRICING CARDS (New structure)
   ============================================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  position: relative;
  transition: box-shadow .2s;
}
.plan-card:hover { box-shadow: var(--shadow-lg); }
.plan-featured   { border-color: var(--orange); }
.plan-featured-green { border-color: var(--green) !important; }
.plan-badge-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  padding: 4px 20px; border-radius: 50px; font-size: .8rem; font-weight: 800;
  white-space: nowrap;
}
.plan-name    { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .5px; margin-bottom: .25rem; }
.plan-tagline { color: var(--text-light); font-size: .88rem; margin-bottom: .75rem; }
.plan-price   { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--orange); letter-spacing: 1px; line-height: 1; }
.plan-period  { color: var(--text-light); font-size: .85rem; margin-bottom: 1.25rem; }
.plan-features { margin-bottom: 1.5rem; list-style: none; }
.plan-features li { padding: 7px 0; font-size: .9rem; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: "✓ "; color: var(--orange); font-weight: 800; }
.plan-featured-green .plan-features li::before { color: var(--green); }
.pricing-also-leads { text-align: center; margin-top: 1.75rem; padding: 20px; background: var(--light-bg); border-radius: 10px; font-size: .95rem; }
.pricing-also-leads a { color: var(--orange); font-weight: 700; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.two-col-contact {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-col h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.contact-method {
  display: flex;
  gap: 16px;
  margin-bottom: 1.5rem;
  padding: 18px;
  background: var(--light-bg);
  border-radius: 10px;
}
.cm-icon  { font-size: 1.8rem; min-width: 44px; }
.cm-title { font-weight: 800; font-size: .88rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-light); margin-bottom: 4px; }
.cm-text a { color: var(--orange); font-weight: 700; font-size: 1.05rem; display: block; }
.cm-text p { color: var(--text-light); font-size: .85rem; margin: 2px 0 0; }

/* ============================================================
   LEAD FORM — supplement
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: .88rem; font-weight: 700; color: var(--text); }
.lead-form-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
}
.form-direct-links { display: flex; gap: 10px; margin-top: .5rem; }
.form-direct-links a { flex: 1; text-align: center; font-size: .9rem; }

/* ============================================================
   FOOTER — 4-column variant
   ============================================================ */
.footer-grid-4 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-links h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer-links ul li { margin-bottom: .6rem; }
.footer-links ul li a { color: #8899aa; font-size: .88rem; transition: color .2s; }
.footer-links ul li a:hover { color: var(--orange); }
.alt-dark { background: var(--dark-2); }
.alt-service-banner { background: var(--light-bg); padding: 18px 24px; text-align: center; font-size: .9rem; border-radius: 10px; margin-top: 2rem; }

/* ============================================================
   LEAD STATS BAR
   ============================================================ */
.lead-stats-bar { background: var(--green); padding: 36px 0; }
.lead-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.lstat { display: flex; align-items: center; justify-content: center; gap: 12px; }
.lstat-icon { font-size: 1.6rem; }
.lstat-text strong { display: block; color: #fff; font-family: 'Bebas Neue',sans-serif; font-size: 1.8rem; }
.lstat-text span   { color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 600; }

/* ============================================================
   COMPARE TABLE
   ============================================================ */
/* Compare table — light background (default) */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.compare-table th { background: #1A1A2E; color: #fff; padding: 12px 16px; font-size: .9rem; text-align: left; border-bottom: 2px solid #111; }
.compare-table td { padding: 11px 16px; border-bottom: 1px solid #E5E7EB; font-size: .9rem; color: #374151; background: #fff; }
.compare-table tr:nth-child(even) td { background: #F9FAFB; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: #6B7280; font-weight: 600; }
.yes { color: var(--green); font-weight: 800; }

/* Compare table — dark background variant */
.compare-table--dark th { background: rgba(255,255,255,0.1) !important; color: #fff !important; border-bottom: 2px solid rgba(255,255,255,0.15) !important; }
.compare-table--dark td { color: #E5E7EB !important; background: rgba(255,255,255,0.03) !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }
.compare-table--dark tr:nth-child(even) td { background: rgba(255,255,255,0.08) !important; }
.compare-table--dark td:first-child { color: #CBD5E1 !important; font-weight: 500 !important; }
.compare-table--dark .yes { color: #4ADE80 !important; }
.no  { color: #DC2626; font-weight: 800; }

/* ============================================================
   SIDEBAR & RELATED LINKS (template pages)
   ============================================================ */
.sidebar-box, .sidebar-pricing-box, .sidebar-web-promo, .sidebar-leads-promo {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-pricing-box { border-top: 3px solid var(--orange); }
.sidebar-leads-promo { border-top: 3px solid var(--green); }
.related-links h3 { font-size: .95rem; color: var(--text-light); margin-bottom: .75rem; font-weight: 700; }
.main-col  { min-width: 0; }
.side-col  { position: sticky; top: 84px; }
.leads-side-col { display: flex; flex-direction: column; gap: 16px; }
.numbered-steps { counter-reset: step; display: flex; flex-direction: column; gap: 14px; margin-top: 1rem; }
.numbered-steps li { counter-increment: step; display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; }
.numbered-steps li::before { content: counter(step); background: var(--orange); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .8rem; flex-shrink: 0; margin-top: 1px; }
.slp-title { font-size: 1rem; font-weight: 800; margin-bottom: .4rem; }
.two-col-page { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }

/* ============================================================
   MINI PLANS (leads sidebar)
   ============================================================ */
.mini-plan { background: #fff; border-radius: 10px; padding: 20px; box-shadow: var(--shadow); margin-bottom: 12px; border-left: 4px solid var(--green); }
.mp-name   { font-weight: 800; font-size: .95rem; margin-bottom: 4px; }
.mp-price  { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--green); line-height: 1; }
.mp-note   { color: var(--text-light); font-size: .82rem; }

/* ============================================================
   RESPONSIVE — supplement
   ============================================================ */
@media (max-width: 1024px) {
  .dual-hero-split { flex-direction: column; }
  .dual-side       { padding: 50px 0; min-height: auto; }
  .dual-side-inner { margin: 0 auto; padding: 0 24px; max-width: 100%; }
  .dual-or         { display: none; }
  .leads-side      { border-left: none; border-top: 4px solid var(--green); }
  .footer-grid-4   { grid-template-columns: 1fr 1fr; }
  .two-col-page    { grid-template-columns: 1fr; }
  .side-col        { position: static; }
  .pricing-cards   { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .dual-hero-split    { flex-direction: column; }
  .two-col-how        { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .testimonials-big-grid { grid-template-columns: 1fr; }
  .dual-cta-grid      { grid-template-columns: 1fr; }
  .steps-row          { grid-template-columns: repeat(2, 1fr); }
  .stats-row          { grid-template-columns: repeat(2, 1fr); }
  .lead-stats-row     { grid-template-columns: repeat(2, 1fr); }
  .two-col-contact    { grid-template-columns: 1fr; }
  .footer-grid-4      { grid-template-columns: 1fr; gap: 24px; }
  .dual-stats         { gap: 16px; }
  .hero-btns          { flex-direction: column; }
  .hero-btns a        { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .steps-row          { grid-template-columns: 1fr; }
  .dual-stats         { gap: 12px; flex-wrap: wrap; }
  .pricing-cards      { max-width: 100%; }
}

/* ============================================================
   ENHANCED FORMS — Beautiful, conversion-optimized
   ============================================================ */

.lead-form-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 48px rgba(0,0,0,.12);
  border: 1px solid #E5E7EB;
  position: relative;
  overflow: hidden;
}
.lead-form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF5722, #FF8A65, #16A34A);
}

.form-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1C2438;
  margin-bottom: 6px;
}
.form-header p {
  color: #6B7280;
  font-size: .9rem;
  margin-bottom: 1rem;
}
.form-trust-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.form-trust-bar span {
  font-size: .78rem;
  font-weight: 700;
  color: #16A34A;
  background: #DCFCE7;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Plan selector tabs */
.form-plan-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
  background: #F4F7FB;
  padding: 5px;
  border-radius: 10px;
}
.plan-tab {
  flex: 1;
  padding: 8px 4px;
  border: none;
  background: transparent;
  border-radius: 7px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  color: #6B7280;
  transition: all .2s;
  white-space: nowrap;
}
.plan-tab.active {
  background: #fff;
  color: #FF5722;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* Form fields */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 5px;
  letter-spacing: .2px;
}
.req { color: #EF4444; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  font-size: .92rem;
  font-family: inherit;
  color: #1C2438;
  background: #FAFAFA;
  transition: border-color .2s, box-shadow .2s, background .2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #FF5722;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,87,34,.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group textarea {
  resize: vertical;
  min-height: 72px;
}
.form-group input.input-error,
.form-group select.input-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

/* CAPTCHA */
.captcha-group {
  background: #F9FAFB;
  border: 1.5px dashed #D1D5DB;
  border-radius: 10px;
  padding: 12px 14px;
}
.captcha-group label {
  color: #374151;
  font-size: .85rem;
}
.captcha-input {
  max-width: 120px !important;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem !important;
}

/* Submit buttons */
.btn-submit-form {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  letter-spacing: .3px;
}
.btn-website-form {
  background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,87,34,.35);
}
.btn-website-form:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,87,34,.4); }
.btn-leads-form {
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(22,163,74,.3);
}
.btn-leads-form:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.4); }
.btn-commission {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124,58,237,.35);
}
.btn-commission:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.45); }
.btn-submit-form:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.form-direct-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
  flex-wrap: wrap;
}
.form-direct-links a {
  flex: 1;
  text-align: center;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  min-width: 120px;
}
.form-direct-links a:first-child { background: #FFF7ED; color: #FF5722; border: 1.5px solid #FDBA74; }
.form-direct-links a:last-child { background: #F0FDF4; color: #16A34A; border: 1.5px solid #BBF7D0; }

.field-error {
  color: #EF4444;
  font-size: .78rem;
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.form-feedback {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: .9rem;
}
.form-feedback.success { background: #DCFCE7; color: #15803D; border: 1.5px solid #BBF7D0; }
.form-feedback.error { background: #FEF2F2; color: #DC2626; border: 1.5px solid #FECACA; }

@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .lead-form-box { padding: 24px 18px; }
  .form-plan-tabs { flex-direction: column; }
  .plan-tab { text-align: center; }
}

/* ============================================================
   COMMISSION PAGE STYLES
   ============================================================ */
.commission-hero {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #4C1D95 100%);
  padding: 80px 0 70px;
}
.comm-hero-inner { max-width: 800px; }
.comm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(167,139,250,.2);
  border: 1px solid rgba(167,139,250,.4);
  color: #A78BFA;
  margin-bottom: 1.25rem;
}
.comm-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: .5px;
  margin-bottom: 1rem;
}
.comm-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 660px;
}
.comm-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.75rem;
}
.comm-hero-pills span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}
.btn-commission-hero {
  background: #7C3AED;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
  transition: all .2s;
}
.btn-commission-hero:hover { transform: translateY(-2px); }
.btn-outline-comm {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.btn-outline-comm:hover { background: rgba(255,255,255,.1); }

.comm-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.comm-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border-left: 4px solid #7C3AED;
}
.comm-step-num {
  min-width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.comm-step-body strong { font-size: 1rem; display: block; margin-bottom: 6px; color: #1C2438; }
.comm-step-body p { color: #6B7280; font-size: .9rem; margin: 0; line-height: 1.6; }

.comm-rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.comm-rate-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border: 2px solid #E5E7EB;
  text-align: center;
  transition: transform .2s, border-color .2s;
}
.comm-rate-card:hover { transform: translateY(-4px); border-color: #7C3AED; }
.highlight-card { border-color: #7C3AED; }
.comm-rate-icon { font-size: 2rem; margin-bottom: .5rem; }
.comm-rate-cat { font-weight: 800; font-size: .95rem; color: #1C2438; margin-bottom: .5rem; }
.comm-rate-pct { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: #7C3AED; letter-spacing: 1px; margin-bottom: .4rem; }
.comm-rate-ex { font-size: .8rem; color: #6B7280; }

.comm-note {
  margin-top: 1.5rem;
  padding: 16px 20px;
  background: #F5F3FF;
  border: 1.5px solid #DDD6FE;
  border-radius: 10px;
  font-size: .9rem;
  color: #4C1D95;
  line-height: 1.6;
}

.comm-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}
.comm-benefit {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 28px 22px;
}
.cb-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.comm-benefit strong { font-size: 1rem; color: #fff; display: block; margin-bottom: 8px; }
.comm-benefit p { color: #9CA3AF; font-size: .88rem; line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
  .comm-rates-grid { grid-template-columns: repeat(2, 1fr); }
  .comm-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .comm-rates-grid { grid-template-columns: 1fr; }
  .comm-benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV — Commission link colour
   ============================================================ */
.nav-commission { color: #7C3AED !important; font-weight: 800 !important; }

/* ============================================================
   FAQ enhanced
   ============================================================ */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: #FF5722; }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1C2438;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: #FF5722;
  font-weight: 900;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 22px 18px;
  color: #4B5563;
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid #F3F4F6;
  padding-top: 12px;
}
.faq-item::-webkit-details-marker { display: none; }


/* ============================================================
   MOBILE FIXES — Responsive overrides for newly added components
   ============================================================ */

/* Ensure dnum displays as block so labels appear below numbers */
.dnum { display: block; }

/* lead-stats-row responsive */
@media (max-width: 768px) {
  .lead-stats-row { grid-template-columns: repeat(2, 1fr) !important; }
  .dual-stats     { flex-wrap: wrap; gap: 16px; }
  .dual-side      { padding: 40px 0; }
  .dual-side-inner { padding: 0 20px !important; }
  .cta-card-dark,
  .cta-card-green { padding: 32px 24px; }
  .how-box        { padding: 28px 20px; }
  /* Prevent nav open-state from clipping hero content */
  .navbar         { z-index: 1000; }
}

@media (max-width: 480px) {
  .lead-stats-row   { grid-template-columns: repeat(2, 1fr) !important; }
  .dual-stats       { flex-wrap: wrap; gap: 12px; }
  .dual-side-inner  { padding: 0 16px !important; }
  .cta-card-dark,
  .cta-card-green   { padding: 28px 20px; }
  .dual-ctas        { flex-direction: column; }
  .dual-ctas a      { width: 100%; justify-content: center; text-align: center; }
}

/* 3-column steps variant */
.steps-row-3col { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 768px) {
  .steps-row-3col { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .steps-row-3col { grid-template-columns: 1fr !important; }
}
