
/* ============================================================
   LeadFlow Website Development — 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 60px;
  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: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a   { padding: 10px 0; width: 100%; }
  .navbar { position: sticky; }

  .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; }
