/* ============================================================
   HOWAYS — MAIN STYLESHEET
   Shared across all pages. Edit here, affects everywhere.
   ============================================================ */

/* ── TOKENS ── */
:root {
  --primary:       #1A6B8A;
  --primary-dark:  #124f68;
  --primary-light: #e8f4f8;
  --accent:        #F4A836;
  --accent-dark:   #d4901e;
  --bg:            #FAFAF8;
  --white:         #ffffff;
  --text:          #1e2d35;
  --text-mid:      #4a6070;
  --text-light:    #7a9aaa;
  --red:           #e53e3e;
  --green-wa:      #25D366;
  --border:        #dde8ed;
  --shadow-sm:     0 2px 12px rgba(26,107,138,0.08);
  --shadow-md:     0 6px 28px rgba(26,107,138,0.12);
  --shadow-lg:     0 12px 48px rgba(26,107,138,0.16);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-pill:   50px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: 96px; /* top-bar 44px + header 52px */
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Nunito', sans-serif;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 900; }
h3 { font-size: 1.1rem; font-weight: 800; }
p  { color: var(--text-mid); }

/* ── TOP BAR ── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  background: var(--accent);
  height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.82rem;
  color: var(--text);
  text-align: center;
  padding: 0 16px;
}
.top-bar a { color: var(--primary-dark); text-decoration: underline; margin-left: 8px; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 44px; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  height: 52px;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.header-logo img { height: 38px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  color: var(--text-mid);
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { color: var(--primary); }
.site-nav a.active { border-bottom: 2px solid var(--primary); padding-bottom: 2px; }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: var(--white) !important;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.84rem;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.25s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.mobile-menu-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 4px; color: var(--text);
}

/* ── SECTION BASE ── */
.section { padding: 80px 5%; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.section-title { margin-bottom: 48px; }
.section-title span { color: var(--primary); }
.section-title .accent { color: var(--accent-dark); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  padding: 14px 32px; border-radius: var(--radius-pill);
  border: none; cursor: pointer; transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 6px 20px rgba(26,107,138,0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,107,138,0.35); }
.btn-accent { background: var(--accent); color: var(--text); box-shadow: 0 6px 20px rgba(244,168,54,0.35); }
.btn-accent:hover { background: #ffbe5c; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(244,168,54,0.45); }
.btn-wa { background: var(--green-wa); color: var(--white); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-wa:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.4); }
.btn-lg { font-size: 1.05rem; padding: 16px 38px; }
.btn-full { width: 100%; }

/* ── HERO ── */
.hero {
  background: linear-gradient(140deg, #1A6B8A 0%, #0d4a66 55%, #0a3347 100%);
  padding: 64px 5% 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,54,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(244,168,54,0.18);
  border: 1px solid rgba(244,168,54,0.45);
  color: var(--accent);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.75rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: var(--radius-pill); margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: 8px; }
.hero h1 .accent-line { color: var(--accent); display: block; }
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem; line-height: 1.7;
  margin: 16px 0 28px; max-width: 540px;
}
.hero-audience {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.audience-tag {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.78rem;
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.hero-reassure {
  margin-top: 14px;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
}
/* Right card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  padding: 32px 24px; text-align: center;
}
.hero-card-photo {
  width: 90px; height: 90px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 16px;
  border: 3px solid var(--primary-light);
}
.hero-card-name {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.05rem;
  color: var(--text); margin-bottom: 4px;
}
.hero-card-title { font-size: 0.82rem; color: var(--text-light); margin-bottom: 20px; }
.hero-card-divider { height: 1px; background: var(--border); margin: 18px 0; }
.hero-card-stat { margin-bottom: 12px; }
.hero-card-stat .s-num {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.6rem;
  color: var(--primary); display: block; line-height: 1;
}
.hero-card-stat .s-lbl { font-size: 0.78rem; color: var(--text-light); }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--white); padding: 40px 5%; border-bottom: 1px solid var(--border); }
.trust-inner { max-width: 1080px; margin: 0 auto; }
.trust-label {
  text-align: center; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 28px;
}
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 28px 40px;
}
.logo-strip img {
  height: 44px; width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s;
  object-fit: contain;
}
.logo-strip img:hover { filter: grayscale(0) opacity(1); }

/* ── PAIN ── */
.pain { background: var(--bg); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pain-card {
  background: var(--white);
  border: 1.5px solid #ffd5d5;
  border-left: 5px solid var(--red);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-card .card-icon { font-size: 2rem; margin-bottom: 12px; }
.pain-card p { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text); }

/* ── PROOF LINE ── */
.proof-line {
  background: var(--primary);
  padding: 64px 5%;
}
.proof-line-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.proof-line-numbers { display: flex; gap: 32px; }
.proof-num-block { text-align: center; }
.proof-num-block .p-big {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--accent); display: block; line-height: 1;
}
.proof-num-block .p-arrow {
  font-size: 2rem; color: rgba(255,255,255,0.4);
  display: block; line-height: 1; margin: 6px 0;
}
.proof-num-block .p-lbl {
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  font-family: 'Nunito', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.proof-line-text h3 {
  color: var(--white); font-size: 1.35rem; font-weight: 900; margin-bottom: 14px;
}
.proof-line-text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.proof-line-text .proof-tag {
  display: inline-block; margin-top: 14px;
  background: rgba(244,168,54,0.2); border: 1px solid rgba(244,168,54,0.4);
  color: var(--accent); font-size: 0.78rem; font-weight: 800;
  padding: 4px 14px; border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
}

/* ── AUDIENCE ── */
.audience { background: var(--white); }
.audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.audience-card {
  border: 1.5px solid var(--primary-light);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 24px 20px; text-align: center;
  transition: all 0.2s;
  background: var(--white);
}
.audience-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.audience-card .a-icon { font-size: 2.2rem; margin-bottom: 12px; }
.audience-card h3 { font-size: 0.95rem; color: var(--text); }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s; position: relative;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.step-icon { font-size: 2.5rem; margin-bottom: 14px; margin-top: 8px; }
.step-card h3 { margin-bottom: 10px; color: var(--primary); }
.step-card p { font-size: 0.9rem; }

/* ── STATS ── */
.stats-section { background: var(--primary-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-box {
  background: var(--white); border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  padding: 28px 16px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-box .s-num {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.2rem;
  color: var(--primary); display: block; line-height: 1; margin-bottom: 6px;
}
.stat-box .s-lbl {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 0.82rem; color: var(--text-mid);
}
.stat-box .s-compare {
  display: inline-block; margin-top: 8px;
  background: rgba(244,168,54,0.15); color: var(--accent-dark);
  font-size: 0.7rem; font-weight: 800;
  padding: 2px 10px; border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
}
.stats-footnote {
  text-align: center; font-size: 0.85rem; color: var(--text-light);
  font-family: 'Nunito', sans-serif; font-weight: 600;
}

/* ── ABOUT ── */
.about-section { background: var(--white); }
.about-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start;
}
.about-photo-col { text-align: center; }
.about-photo {
  width: 220px; height: 220px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 20px;
  border: 4px solid var(--primary-light);
  box-shadow: var(--shadow-md);
}
.about-name {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.15rem;
  color: var(--text); margin-bottom: 4px;
}
.about-title { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; }
.social-links { display: flex; justify-content: center; gap: 12px; margin-top: 4px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  color: var(--primary); transition: all 0.2s;
}
.social-link:hover { background: var(--primary); color: var(--white); }
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 16px; font-size: 0.95rem; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px;
}
.highlight-item {
  background: var(--primary-light); border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.highlight-item .h-icon { font-size: 1.3rem; flex-shrink: 0; }
.highlight-item p {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--text); margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text {
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: var(--text); line-height: 1.7; font-style: italic;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--primary-light);
}
.testi-info .t-name {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--text);
}
.testi-info .t-role { font-size: 0.78rem; color: var(--text-light); }

/* ── LEAD FORM SECTION ── */
.form-section { background: var(--primary); padding: 80px 5%; }
.form-section-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.form-section h2 { color: var(--white); margin-bottom: 8px; }
.form-section .form-sub { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 0.95rem; }
.form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 36px; text-align: left;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.8rem; color: var(--text-mid);
  margin-bottom: 5px; text-align: left;
}
.form-group input,
.form-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--bg); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,107,138,0.1);
}
.form-group input::placeholder { color: #b0bec5; }
.form-note {
  text-align: center; font-size: 0.78rem; color: var(--text-light);
  margin-top: 12px; font-family: 'Nunito', sans-serif;
}

/* ── OFFER BOX ── */
.offer-section { background: var(--bg); }
.offer-box {
  max-width: 620px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 40px; box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-light);
}
.offer-list { margin-bottom: 24px; }
.offer-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: var(--text); padding: 14px 16px;
  background: var(--primary-light); border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.scarcity-note {
  background: #fff5f5; border: 1.5px solid #fbd5d5; border-radius: var(--radius-sm);
  padding: 12px 18px; margin-bottom: 24px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.88rem;
  color: #c53030; text-align: center;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #0d4a66 0%, #1A6B8A 100%);
  padding: 56px 5%; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 1rem; }

/* ── FOOTER ── */
.site-footer {
  background: #0d2535;
  padding: 56px 5% 32px;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p {
  color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); transition: all 0.2s; font-size: 0.9rem;
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.85rem;
  color: var(--white); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-bottom: 10px;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1080px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-policy-links { display: flex; gap: 20px; }
.footer-policy-links a {
  color: rgba(255,255,255,0.3); font-size: 0.78rem; transition: color 0.2s;
}
.footer-policy-links a:hover { color: rgba(255,255,255,0.6); }

/* ── FLOATING WA BUTTON ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; align-items: center; gap: 8px;
  background: var(--green-wa);
  color: var(--white); font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.88rem;
  padding: 12px 20px 12px 14px; border-radius: var(--radius-pill);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: all 0.2s;
}
.wa-float:hover { transform: scale(1.04); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.wa-float .wa-pulse {
  position: absolute; inset: 0; border-radius: var(--radius-pill);
  background: var(--green-wa);
  animation: pulse 2.2s ease-out infinite; z-index: -1;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(140deg, #1A6B8A 0%, #0d4a66 100%);
  padding: 56px 5%;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 580px; margin: 0 auto; }

/* ── SERVICES PAGE ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  border-top: 4px solid var(--primary);
  padding: 36px 28px; box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-top-color: var(--accent); }
.service-icon { font-size: 2.5rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; margin-bottom: 16px; }
.service-includes { margin-top: 16px; }
.service-includes li {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.85rem;
  color: var(--text-mid); padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.service-includes li:last-child { border-bottom: none; }
.service-badge {
  display: inline-block; margin-top: 16px;
  background: var(--primary-light); color: var(--primary);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.78rem;
  padding: 4px 14px; border-radius: var(--radius-pill);
}

/* ── RESULTS PAGE ── */
.result-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1.5px solid var(--border); padding: 36px;
  box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.result-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.result-icon { font-size: 2.2rem; }
.result-header h3 { color: var(--primary); font-size: 1.15rem; margin-bottom: 2px; }
.result-header .r-niche { font-size: 0.8rem; color: var(--text-light); }
.result-nums {
  display: flex; gap: 24px; margin-bottom: 20px;
  flex-wrap: wrap;
}
.result-num-item { text-align: center; }
.result-num-item .r-n {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.8rem;
  color: var(--primary); display: block; line-height: 1;
}
.result-num-item .r-l { font-size: 0.75rem; color: var(--text-light); }
.result-what-fixed { margin-top: 16px; }
.result-what-fixed h4 { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 8px; }
.result-what-fixed li {
  font-size: 0.85rem; color: var(--text-mid); padding: 4px 0;
  display: flex; align-items: center; gap: 6px;
}

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 28px; font-size: 0.95rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.c-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.c-label { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--text-light); margin-bottom: 3px; }
.c-value { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.c-value a { color: var(--primary); }

/* ── PRIVACY / TERMS pages ── */
.policy-content { max-width: 780px; margin: 0 auto; }
.policy-content h2 { margin: 32px 0 12px; color: var(--primary); }
.policy-content p, .policy-content li { font-size: 0.93rem; margin-bottom: 12px; }
.policy-content ul { padding-left: 20px; list-style: disc; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; top: 96px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 32px 5%;
  flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--text); padding: 14px 16px; border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--primary-light); color: var(--primary); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  body { padding-top: 96px; }
  .site-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .proof-line-inner { grid-template-columns: 1fr; gap: 28px; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-col { text-align: left; }
  .about-photo { width: 150px; height: 150px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  form [style*="grid-template-columns:1fr 1fr"],
  form [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .about-highlights { grid-template-columns: 1fr; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .section { padding: 56px 4%; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-box { padding: 28px 20px; }
  .offer-box { padding: 28px 20px; }
}

/* ── HERO FORM COMPACT OVERRIDE ── */
.hero-card {
  padding: 24px 20px;
}
.hero-card-headline {
  background: var(--primary);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 0.95rem;
  text-align: center; padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px; line-height: 1.3;
}
.hero-card-headline span { color: var(--accent); }
.hero-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.form-group-compact { margin-bottom: 10px; }
.form-group-compact label {
  display: block; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.75rem;
  color: var(--text-mid); margin-bottom: 4px;
}
.form-group-compact input,
.form-group-compact select {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif; font-size: 0.88rem; color: var(--text);
  background: var(--bg); outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group-compact input:focus,
.form-group-compact select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26,107,138,0.1);
}
.form-group-compact input::placeholder { color: #b0bec5; font-size: 0.82rem; }
.hero-form-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 8px;
  font-size: 0.72rem; color: var(--text-light);
  font-family: 'Nunito', sans-serif; font-weight: 600;
}
@media (max-width: 480px) {
  .hero-form-row { grid-template-columns: 1fr; }
}
