:root {
  --bg: #111111;
  --green: #22C55E;
  --green-dim: #16a34a;
  --light: #F0FDF4;
  --card: #1E2D26;
  --card2: #111111;
  --muted: #7a9a85;
  --border: rgba(34,197,94,0.15);
  --white: #ffffff;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  /* THIS is the nuclear fix — nothing can ever make html wider than viewport */
}

body {
  background: var(--bg);
  color: var(--light);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  max-width: 100%;
  width: 100%;
  position: relative;

}


/* ─── CUSTOM CURSOR ─────────────────────────────── */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(34,197,94,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
}
body:hover .cursor { opacity: 1; }

/* ─── SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* ─── NAVBAR ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  /* overflow:hidden on nav would break dropdowns, so we just ensure no wide children */
}
nav.scrolled {
  background: rgba(15,30,23,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}
.nav-logo span {
  display: block;
  color: var(--light);
  font-size: 0.7em;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--green);
  color: #0a1a0f;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  border: none;
  cursor: none;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: #16a34a; transform: scale(1.04); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(15,30,23,0.98);
  backdrop-filter: blur(20px);
  padding: 2rem 5%;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  color: var(--light);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu.open { display: flex; }

/* Logo icon */
.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── HERO ──────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* KEY FIX: overflow:hidden clips anything wider than the section */
  overflow: hidden;
  padding: 7rem 5% 4rem;
  width: 100%;
}
canvas#starfield {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* canvas must never be wider than viewport */
  max-width: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  /* limit width and center — prevent any child from blowing out */
  width: 100%;
  max-width: 900px;
  text-align: center;
  overflow: hidden; /* clip any child that overflows */
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ── HERO TITLE (solid text lines) ── */
h1.hero-title {
  font-family: var(--font-head);
  /* minimum 2.8rem so it's always big on mobile, scales up with viewport */
  font-size: clamp(2.8rem, 8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.9s 0.1s ease both;
  /* prevent the title itself from overflowing */
  width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}
h1.hero-title .accent { color: var(--green); }

/* ── WEBKIT OUTLINED TEXT ("MILLIONS OF VIEWS") ──
   Root cause of horizontal scroll on mobile:
   The text at a large font-size is wider than the screen.
   Fix: scale with vw so it always fits, add overflow guards,
   and reduce stroke weight on small screens.
*/
.hero-outline-text {
  display: block;
  width: 100%;
  /* Scale with viewport — never a fixed px size */
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  /* Transparent fill, green border */
  color: transparent;
  -webkit-text-stroke: 2px var(--green);
  text-stroke: 2px var(--green);
  /* Prevent overflow in all cases */
  overflow: hidden;
  white-space: nowrap;    /* keep on one line like desktop */
  /* If it somehow still overflows, scale it down */
  transform-origin: center;
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.9s 0.3s ease both;
}
.btn-primary {
  background: var(--green);
  color: #0a1a0f;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: none;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34,197,94,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--light);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 1.5px solid rgba(240,253,244,0.25);
  cursor: none;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.trust-badge svg { color: var(--green); }

/* ─── STATS ─────────────────────────────────────── */
#stats {
  padding: 5rem 5%;
  background: var(--card2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width: 100%;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 45%), 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.stat-card {
  text-align: center;
  animation: fadeUp 0.7s ease both;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

/* Ticker — the infinite scroll strip */
.ticker-wrap {
  overflow: hidden;         /* hard clip, nothing escapes */
  position: relative;
  width: 100%;
  max-width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
  display: flex;
  /* width:max-content makes the track wide, but parent overflow:hidden clips it */
  width: max-content;
  animation: ticker 18s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.8rem;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ──────────────────────────────── */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-top: 0.8rem;
}




/* ─── SERVICES (commented out in your version — kept as-is) ─── */
/* #services { ... } */

/* ─── WHY CHOOSE US ─────────────────────────────── */
#why {
  padding: 5rem 5%;
  background: var(--card2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-list { list-style: none; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.1rem; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}
.why-item:hover { border-color: rgba(34,197,94,0.4); transform: translateX(4px); }
.why-check {
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.why-check svg { width: 12px; height: 12px; color: #0a1a0f; }
.why-item-text { font-weight: 600; font-size: 0.9rem; color: var(--light); text-transform: uppercase; letter-spacing: 0.04em; }
.why-visual { position: relative; height: 440px; display: flex; align-items: center; justify-content: center; }
.why-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(34,197,94,0.15); animation: ringPulse 3s ease-in-out infinite; }
.why-center {
  width: 120px; height: 120px;
  background: rgba(34,197,94,0.1);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 800;
  color: var(--green);
  text-align: center; text-transform: uppercase; letter-spacing: 0.05em;
  position: relative; z-index: 2;
}

/* ─── PORTFOLIO (commented out) ─── */
/* #portfolio { ... } */

/* ─── HOW IT WORKS — NEW GRID STYLE ────────────── */
.section {
  padding: 6rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  /* ensure padding doesn't create overflow */
  box-sizing: border-box;
  width: 100%;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1px;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}
.feature-card {
  padding: 2rem;
  position: relative;
  transition: background 0.3s;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.feature-card:hover { background: #0f0f0f; }
.card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: rgba(29,185,84,0.12);
  margin-bottom: 0.5rem;
}
.card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(29,185,84,0.1);
  border: 1px solid rgba(29,185,84,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.card-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
/* right side content  */
  /* Override the base .section width so the two columns fit */
  .hiw-section {
    max-width: 1400px !important;
    padding: 6rem 3rem;
  }
 
  /* Two-column wrapper */
  .hiw-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3.5rem;
    align-items: start;
    /* margin-top pushes it below the header text */
    margin-top: 3rem;
  }
 
  /* Left column: header + process cards */
  .hiw-left {
    min-width: 0; /* flex/grid child overflow guard */
  }
 
  /* Process cards inside the left column stay 2×2 */
  .hiw-cards {
    margin-top: 2rem !important;
    /* auto-fit with ~240px min → two columns inside ~700px left panel */
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)) !important;
  }
 
  /* Right column: sticky dashboard */
  .hiw-right {
    position: sticky;
    top: 90px; /* clears the fixed navbar height */
    min-width: 0;
  }
 
  /* ─── DASHBOARD WIDGET STYLES ─────────────────────── */
  .cp-dash {
    background: #0A0A0A;
    border-radius: 16px;
    padding: 24px;
    font-family: 'Syne', sans-serif;
    border: 1px solid rgba(255,255,255,0.08);
    /* subtle green glow to tie it into the site palette */
    box-shadow: 0 0 60px rgba(29,185,84,0.06);
  }
  .cp-dash-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
  }
  .cp-logo { display: flex; align-items: center; gap: 8px; }
  .cp-logo-icon {
    width: 28px; height: 28px; background: #1DB954; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
  }
  .cp-logo-text { font-size: 14px; font-weight: 700; color: #1DB954; }
  .cp-logo-text span { color: white; }
 
  .live-dot {
    width: 6px; height: 6px; min-width: 6px;
    background: #1DB954; border-radius: 50%;
    animation: dashPulse 2s infinite;
    flex-shrink: 0;
  }
  /* Renamed to avoid clash with site-level @keyframes pulse */
  @keyframes dashPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.4; transform:scale(0.8); }
  }
 
  .cp-impressions-card {
    background: #111; border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; padding: 18px; margin-bottom: 12px;
  }
  .cp-imp-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(245,245,240,0.4); margin-bottom: 10px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 8px;
  }
  .cp-imp-label span {
    font-family: 'Bebas Neue', sans-serif; font-size: 22px;
    color: #1DB954; letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .cp-progress-track {
    height: 8px; background: rgba(255,255,255,0.08);
    border-radius: 99px; overflow: hidden;
  }
  .cp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1DB954, #E8B422);
    border-radius: 99px; width: 0%;
    transition: width 1.6s cubic-bezier(0.4,0,0.2,1);
  }
 
  .cp-metrics-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 10px; margin-bottom: 12px;
  }
  .cp-metric {
    background: #111; border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px; padding: 14px 12px; min-width: 0; overflow: hidden;
  }
  .cp-metric-label {
    font-size: 11px; color: rgba(245,245,240,0.4); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
  }
  .cp-metric-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px; letter-spacing: 0.03em; line-height: 1;
    word-break: break-all;
  }
  .cp-metric-sub { font-size: 10px; color: rgba(245,245,240,0.35); margin-top: 3px; }
 
  /* Scoped colour helpers — won't clash with site globals */
  .cp-green { color: #1DB954; }
  .cp-gold  { color: #E8B422; }
  .cp-white { color: #F5F5F0; }
 
  .cp-rows-card {
    background: #111; border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; padding: 18px; margin-bottom: 12px;
  }
  .cp-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 8px; min-width: 0;
  }
  .cp-row:last-child { border-bottom: none; }
  .cp-row-label {
    font-size: 13px; color: rgba(245,245,240,0.6);
    min-width: 0; word-break: break-word;
  }
  .cp-row-val {
    font-size: 14px; font-weight: 700;
    white-space: nowrap; flex-shrink: 0;
  }
 
  .cp-cpm-card {
    background: #111; border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; padding: 16px; margin-bottom: 12px;
    display: flex; align-items: center; gap: 14px; overflow: hidden;
  }
  .cp-cpm-icon {
    width: 42px; height: 42px; min-width: 42px;
    background: rgba(29,185,84,0.15);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(29,185,84,0.25); flex-shrink: 0;
  }
  .cp-cpm-text { min-width: 0; }
  .cp-cpm-label { font-size: 15px; font-weight: 700; color: #F5F5F0; }
  .cp-cpm-sub   { font-size: 12px; color: rgba(245,245,240,0.4); margin-top: 2px; }
  .cp-cpm-badge {
    margin-left: auto; font-size: 13px; font-weight: 700; color: #1DB954;
    background: rgba(29,185,84,0.1); border: 1px solid rgba(29,185,84,0.2);
    padding: 5px 10px; border-radius: 7px; white-space: nowrap; flex-shrink: 0;
  }
 
  .cp-chart-card {
    background: #111; border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; padding: 18px;
  }
  .cp-chart-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: rgba(245,245,240,0.4); margin-bottom: 14px;
  }
  .cp-bars {
    display: flex; align-items: flex-end; gap: 6px; height: 80px;
  }
  .cp-bar {
    flex: 1; border-radius: 4px 4px 0 0; min-width: 0;
    transition: height 1.4s cubic-bezier(0.4,0,0.2,1);
  }
  .cp-chart-labels { display: flex; gap: 6px; margin-top: 6px; }
  .cp-chart-labels span {
    flex: 1; text-align: center; font-size: 10px; color: rgba(245,245,240,0.3);
  }
  .cp-footer {
    display: flex; align-items: center; justify-content: center; margin-top: 16px;
    font-size: 11px; color: rgba(245,245,240,0.2);
    letter-spacing: 0.08em; text-transform: uppercase;
  }
 
  /* ─── RESPONSIVE ──────────────────────────────────── */
 
  /* Tablet: collapse to single column, dashboard goes below cards */
  @media (max-width: 1024px) {
    .hiw-section {
      max-width: 900px !important;
      padding: 5rem 2.5rem;
    }
    .hiw-inner {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    /* Un-stick the dashboard when stacked */
    .hiw-right {
      position: static;
    }
    /* Cards go back to auto-fit full width */
    .hiw-cards {
      grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)) !important;
    }
  }
 
  /* Mobile */
  @media (max-width: 640px) {
    .hiw-section {
      padding: 3.5rem 4% !important;
    }
    .hiw-inner { gap: 2rem; }
    .cp-metric-value { font-size: 22px; }
    .cp-metrics-row  { gap: 7px; }
    .cp-metric       { padding: 11px 9px; }
    /* On very small screens collapse the 3-col metrics to 1×3 */
  }
 
  /* Very small screens */
  @media (max-width: 380px) {
    .cp-metrics-row {
      grid-template-columns: 1fr; /* stack the 3 metric cards */
      gap: 8px;
    }
    .cp-metric-value { font-size: 28px; } /* room to breathe now they're full-width */
  }

/* ─── BLOG ──────────────────────────────────────── */
#blog {
  padding: 5rem 5%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s;
  cursor: none;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); border-color: rgba(34,197,94,0.4); }
.blog-thumb {
  height: 160px;
  background: var(--card2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-thumb-icon { font-size: 2.5rem; opacity: 0.5; }
.blog-category {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 99px;
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-body { padding: 1.4rem; }
.blog-body h3 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white); line-height: 1.4; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.02em; }
.blog-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; text-transform: uppercase; }
.blog-read { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--green); font-size: 0.8rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.07em; margin-top: 1rem; transition: gap 0.2s; }
.blog-read:hover { gap: 0.6rem; }

/* ─── FAQ ───────────────────────────────────────── */
#faq {
  padding: 5rem 5%;
  background: var(--card2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(34,197,94,0.4); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.4rem 1.6rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.faq-arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  transition: transform 0.35s, background 0.3s;
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); background: rgba(34,197,94,0.2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-a-inner { padding: 0 1.6rem 1.4rem; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

 /* ── FAQ highlight  */
mark.faq-highlight {
  background: rgba(34, 197, 94, 0.12);   /* very subtle green tint */
  color: #22C55E;                         /* solid green text       */
  font-weight: 700;
  padding: 0.1em 0.45em;
  border-radius: 4px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  /* inherit the uppercase from parent if needed */
  text-transform: none;                   /* keep natural case       */
  font-style: normal;
  /* don't break across lines awkwardly */
  display: inline;
  white-space: nowrap;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
#contact {
  padding: 5rem 5%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
 
/* ─── LEFT COLUMN ─────────────────────────────────────────── */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
 
/* ── ANIMATED BOOK BUTTON CARD ────────────────────────────── */
.book-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  /* animated gradient border via pseudo-element */
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease;
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(29,185,84,0.18),
    0 0 0 1px rgba(29,185,84,0.35);
}
 
/* Rotating green glow behind the card */
.book-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    #22C55E 60deg,
    transparent 120deg
  );
  border-radius: 22px;
  z-index: 0;
  animation: rotateBorder 3s linear infinite;
  opacity: 0;
  transition: opacity 0.4s;
}
.book-card:hover::before { opacity: 1; }
 
/* Inner fill that sits on top of the border animation */
.book-card-inner {
  position: relative;
  z-index: 1;
  background: var(--card);
  border-radius: 19px;
  padding: 2.4rem 2rem;
  text-align: center;
}
 
/* Pulsing ring background decoration */
.book-card-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  border-radius: 19px;
}
.book-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34,197,94,0.12);
  animation: bookRingPulse 3s ease-in-out infinite;
}
.book-ring:nth-child(1) { width: 120px; height: 120px; animation-delay: 0s; }
.book-ring:nth-child(2) { width: 200px; height: 200px; animation-delay: 0.6s; }
.book-ring:nth-child(3) { width: 290px; height: 290px; animation-delay: 1.2s; }
.book-ring:nth-child(4) { width: 380px; height: 380px; animation-delay: 1.8s; }
 
/* Calendar icon */
.book-icon-wrap {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.4rem;
  background: rgba(34,197,94,0.1);
  border: 1.5px solid rgba(34,197,94,0.35);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  animation: iconFloat 3.5s ease-in-out infinite;
}
.book-card:hover .book-icon-wrap {
  background: rgba(34,197,94,0.18);
  transform: scale(1.08);
}
 
.book-heading {
  position: relative;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.book-sub {
  position: relative;
  z-index: 2;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.8rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
 
/* The actual animated CTA pill */
.book-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--green);
  color: #0a1a0f;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  /* shimmer sweep */
  overflow: hidden;
}
.book-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: shimmer 2.8s ease-in-out infinite;
}
.book-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34,197,94,0.4);
}
 
/* Availability chip below the card */
.book-avail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  position: relative;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.book-avail-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
  flex-shrink: 0;
}
 
/* ── CONTACT INFO CHIPS (email, phone, hours) ─────────────── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.3s, transform 0.3s;
  min-width: 0;
  overflow: hidden;
}
.contact-item:hover {
  border-color: rgba(34,197,94,0.4);
  transform: translateX(4px);
}
.contact-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(34,197,94,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.contact-val {
  font-size: 0.88rem;
  color: var(--light);
  font-weight: 600;
  word-break: break-word;
  min-width: 0;
}
 
/* ─── RIGHT COLUMN — CONTACT FORM (unchanged styles) ─────── */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
  overflow: hidden;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin: 5px; }
.form-group label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  resize: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-width: 0;
}
.form-row .form-group { min-width: 0; }
.form-submit {
  background: var(--green);
  color: #0a1a0f;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}
.form-submit:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34,197,94,0.3);
}
 
/* ─── CALENDLY MODAL ──────────────────────────────────────── */
.cal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cal-modal {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: min(90vh, 740px);
  background: #0F1E17;
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 20px;
  overflow: hidden;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(34,197,94,0.1);
}
.cal-overlay.open .cal-modal {
  transform: scale(1) translateY(0);
}
.cal-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 54px;
  background: rgba(15,30,23,0.97);
  border-bottom: 1px solid rgba(34,197,94,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.4rem;
  z-index: 10;
}
.cal-topbar-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cal-topbar-title svg { flex-shrink: 0; }
.cal-close {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--green);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
  font-family: sans-serif;
}
.cal-close:hover {
  background: rgba(34,197,94,0.2);
  transform: rotate(90deg);
}
 
/* Loading spinner shown while Calendly iframe loads */
.cal-loader {
  position: absolute;
  inset: 54px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #0F1E17;
  z-index: 5;
  transition: opacity 0.4s;
}
.cal-loader.hidden { opacity: 0; pointer-events: none; }
.cal-spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(34,197,94,0.15);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.cal-loader p {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.cal-iframe {
  position: absolute;
  inset: 54px 0 0;
  width: 100%;
  height: calc(100% - 54px);
  border: none;
  border-radius: 0 0 20px 20px;
}
 
/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes rotateBorder {
  to { --angle: 360deg; }
}
/* Polyfill for the CSS custom property inside conic-gradient */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes bookRingPulse {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50%       { opacity: 0.28; transform: scale(1.04); }
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes shimmer {
  0%   { left: -75%; }
  60%, 100% { left: 130%; }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
 
/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 640px) {
  #contact { padding: 3.5rem 4%; }
  .book-card-inner { padding: 2rem 1.4rem; }
  .book-heading { font-size: 1.25rem; }
  .cal-modal { height: min(90vh, 660px); border-radius: 14px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .book-btn { font-size: 0.82rem; padding: 0.8rem 1.4rem; }
  .book-heading { font-size: 1.1rem; }
}

/* ─── FOOTER ────────────────────────────────────── */
footer {
  background: var(--card2);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
  overflow: hidden;
  width: 100%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { font-size: 1.8rem; display: inline-block; margin-bottom: 1rem; }
.footer-desc {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
  text-transform: uppercase;
  word-break: break-word;
}
.footer-col h4 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: var(--muted); font-size: 0.85rem; text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s; display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; word-break: break-word; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 700;
}
.social-link:hover { border-color: var(--green); color: var(--green); background: rgba(34,197,94,0.05); }

/* ─── WHATSAPP FLOAT ────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 998;
  background: var(--green);
  color: #0a1a0f;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(34,197,94,0.4);
  text-decoration: none;
  animation: waBounce 2s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float:hover { animation-play-state: paused; transform: scale(1.1); }

/* ─── CALENDLY MODAL ────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  height: 80vh;
  position: relative;
  overflow: hidden;
}
.modal-close {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 10;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  color: var(--green);
  font-size: 1.2rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: background 0.3s;
}
.modal-close:hover { background: rgba(34,197,94,0.2); }
.modal-box iframe { width: 100%; height: 100%; border: none; }

/* ─── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp    { from { opacity:0; transform:translateY(30px);  } to { opacity:1; transform:translateY(0); } }
@keyframes pulse     { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.7); } }
@keyframes ticker    { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes slide     { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes ringPulse { 0%,100% { opacity:0.15; } 50% { opacity:0.4; } }
@keyframes waBounce  { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
@keyframes float     { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes revealUp  { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }

/* ─── SCROLL REVEAL ─────────────────────────────── */
.reveal { opacity:0; transform:translateY(35px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 900px
   ════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .why-inner,
  .contact-grid { grid-template-columns: 1fr; }
  .why-visual   { height: 280px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }

  /* section used in How It Works */
  .section { padding: 4rem 1.5rem; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 640px
   ════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* ── Nav ── */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav { padding: 1rem 5%; }
  .nav-logo { font-size: 1.2rem; }

  /* ── Kill custom cursor on touch screens ── */
  .cursor, .cursor-ring { display: none; }

  /* ── Global overflow guard ── */
  *  { max-width: 100%; }
  section, footer, nav, .section { overflow-x: hidden; box-sizing: border-box; }

  /* ── Hero ── */
  #hero { padding: 6rem 4% 3rem; }

  /* Solid heading — big and bold on mobile */
  h1.hero-title {
    font-size: clamp(2.6rem, 10vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /*
    WEBKIT OUTLINED TEXT FIX
    ─────────────────────────────────────────────
    Problem: a long string like "MILLIIONS OF VIEWS" at
    large font-size is physically wider than 360-430px screens.
    white-space:nowrap keeps it on one line → overflow.

    Solution:
    1. Use font-size that scales with vw so it fits
    2. Allow wrapping (white-space:normal) so if it wraps,
       it wraps — but with the right font-size it won't need to
    3. Reduce stroke width for thin screens so it stays crisp
  */
  .hero-outline-text {
    font-size: clamp(1.9rem, 9.5vw, 3rem);
    -webkit-text-stroke: 1.5px var(--green);
    text-stroke: 1.5px var(--green);
    white-space: normal;      /* allow wrapping as safety net */
    word-break: break-word;
    letter-spacing: -0.01em;  /* tighten slightly to save space */
    line-height: 1.1;
  }

  /* ── Buttons ── */
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline {
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.8rem 1rem;
    width: 100%;
    max-width: 320px;
  }

  /* ── Trust badges ── */
  .trust-badges { flex-direction: column; align-items: center; gap: 1rem; }

  /* ── Stats ── */
  #stats { padding: 3.5rem 4%; }
  .ticker-item { font-size: 0.78rem; padding: 0.6rem 1.2rem; }

  /* ── Testimonials ── */
  #testimonials1, #testimonials2 { padding: 3.5rem 0; }

  /* ── Why ── */
  #why { padding: 3.5rem 4%; }
  .why-visual, .why-rings { display: none; }
  .why-inner { gap: 2rem; }

  /* ── How It Works cards ── */
  .section { padding: 3.5rem 4%; }
  .cards-grid { margin-top: 2rem; }
  .feature-card { padding: 1.5rem; }
  .card-num { font-size: 40px; }

  /* ── Pricing ── */
  #pricing { padding: 3.5rem 4%; }
  .price-card { padding: 1.5rem; }
  .price-amount { font-size: 2.2rem; }

  /* ── Industries ── */
  #industries { padding: 3.5rem 4%; }

  /* ── Blog ── */
  #blog { padding: 3.5rem 4%; }

  /* ── FAQ ── */
  #faq { padding: 3.5rem 4%; }
  .faq-q { font-size: 0.82rem; padding: 1.1rem 1rem; }
  .faq-a-inner { padding: 0 1rem 1.1rem; font-size: 0.84rem; }

  /* ── Contact ── */
  #contact { padding: 3.5rem 4%; }
  .contact-form { padding: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .wa-btn { font-size: 0.8rem; padding: 0.9rem 1rem; }

  /* ── Footer ── */
  footer { padding: 3rem 4% 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-desc { max-width: 100%; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — VERY SMALL  ≤ 380px
   ════════════════════════════════════════════════ */
@media (max-width: 380px) {
  h1.hero-title {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }
  .hero-outline-text {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
    -webkit-text-stroke: 1px var(--green);
    letter-spacing: -0.02em;
  }
  .section-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
}