@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,700&display=swap');

:root {
  --bg:     #070515;
  --bg2:    #0e0c1e;
  --card:   #100e22;
  --border: rgba(255,255,255,0.07);
  --text:   #ffffff;
  --muted:  #6d6c6c;
  --muted2: #a3a3a3;
  --coral:  #fa8fd5;
  --yellow: #FDF070;
  --green:  #C6FF7C;
  --blue:   #B4DBFF;
  --purple: #c7caff;
  --pink:   #f6c2f4;
  --r:      12px;
  --rl:     20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; line-height: 1.6; overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 2px; }

/* ====== NAV ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0.5rem 5%; display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,5,21,0.94); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
.nav-logo img { flex-shrink: 0; width: 150px; height: 150px; max-height: 70px; max-width: 70px; object-fit: contain; display: block; }
.nav-logo svg { flex-shrink: 0; }
.nav-logo-text { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.nav-logo-text span { color: var(--coral); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted2);
  text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 0.25rem;
  white-space: nowrap; padding: 0.4rem 0;
}
.nav-links > li > a:hover { color: var(--text); }

/* DROPDOWN — JS-powered, not CSS hover (fixes mobile/touch) */
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: -1rem;
  padding-top: 10px;
  background: var(--card); border: 1px solid rgba(250,143,213,0.18);
  border-radius: var(--r); padding: 0.6rem 0; min-width: 210px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  z-index: 300;
}
.nav-dropdown.open { display: block; }
.nav-dropdown a {
  display: block; padding: 0.55rem 1.25rem;
  font-size: 0.82rem; color: var(--muted2); text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover { color: var(--coral); background: rgba(250,143,213,0.07); }

.nav-cta {
  font-size: 0.875rem; font-weight: 600; background: var(--coral); color: var(--bg);
  padding: 0.6rem 1.4rem; border-radius: 50px; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s; white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(7,5,21,0.97); backdrop-filter: blur(20px);
  z-index: 250; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.25rem; font-weight: 600; color: var(--muted2); text-decoration: none; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--coral); }
.mobile-cta { background: var(--coral); color: var(--bg) !important; padding: 0.75rem 2rem; border-radius: 50px; }
.mobile-divider { width: 40px; height: 1px; background: var(--border); }

/* ====== SECTIONS ====== */
section { padding: 7rem 5%; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; }
.section-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.section-sub { font-size: 1rem; color: var(--muted2); max-width: 520px; line-height: 1.75; }

/* ====== HERO ====== */
.hero { min-height: 100vh; padding: 9rem 5% 6rem; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(250,143,213,0.1) 0%, transparent 70%); top: -150px; left: -100px; pointer-events: none; }
.hero::after { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(199,202,255,0.07) 0%, transparent 70%); bottom: 0; right: 10%; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { max-width: 580px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 50px; padding: 0.4rem 1.1rem; font-size: 0.8rem; font-weight: 500; color: var(--muted2); margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.7s 0.1s forwards; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.7s 0.25s forwards; }
.hero-h1 em { color: var(--coral); font-style: normal; }
.hero-p { font-size: 1.05rem; color: var(--muted2); line-height: 1.8; max-width: 560px; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.7s 0.4s forwards; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.7s 0.55s forwards; }
.btn-primary { font-size: 0.9rem; font-weight: 600; background: var(--coral); color: var(--bg); padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none; transition: opacity 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-ghost { font-size: 0.9rem; font-weight: 600; background: transparent; color: var(--text); padding: 0.85rem 2rem; border-radius: 50px; border: 1px solid var(--border); text-decoration: none; transition: border-color 0.2s, color 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }

/* TAGS */
.tags-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.5rem; opacity: 0; animation: fadeUp 0.7s 0.65s forwards; }
.tag { font-size: 0.78rem; font-weight: 600; padding: 0.35rem 0.9rem; border-radius: 50px; border: 1px solid var(--border); color: var(--muted2); }

/* STATS */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.stat-item { background: var(--card); padding: 2rem 1.5rem; text-align: center; position: relative; overflow: hidden; transition: background 0.3s; }
.stat-item:hover { background: rgba(250,143,213,0.04); }
.stat-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(250,143,213,0.04) 0%, transparent 60%); pointer-events: none; }
.stat-icon { font-size: 1.4rem; margin-bottom: 0.5rem; opacity: 0.7; }
.stat-num { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--coral); line-height: 1; }
.stat-label { font-size: 0.78rem; font-weight: 500; color: var(--muted); margin-top: 0.4rem; }
.stat-spark { display: block; width: 100%; height: 24px; margin-top: 0.75rem; }
.stat-dots { display: flex; justify-content: center; gap: 4px; margin-top: 0.75rem; }
.sdot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background 0.3s; }
.sdot.active { background: var(--coral); }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--rl); padding: 2rem; transition: border-color 0.3s, transform 0.3s; text-decoration: none; color: inherit; display: block; }
.service-card:hover { border-color: rgba(250,143,213,0.35); transform: translateY(-4px); }
.service-icon { font-size: 1.8rem; margin-bottom: 1.2rem; }
.service-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.7rem; }
.service-desc { font-size: 0.85rem; color: var(--muted2); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 600; color: var(--coral); margin-top: 1.2rem; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; }
.step-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--coral); margin-bottom: 1rem; }
.step-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.82rem; color: var(--muted2); line-height: 1.65; }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon { width: 40px; height: 40px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.why-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.why-item p { font-size: 0.83rem; color: var(--muted2); line-height: 1.65; }
.why-visual { background: var(--card); border: 1px solid var(--border); border-radius: var(--rl); padding: 3rem 2.5rem; }
.why-visual-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.75rem; }
.metric-row { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.metric-row:last-child { border-bottom: none; }
.metric-label { font-size: 0.85rem; color: var(--muted2); }
.metric-val { font-size: 0.9rem; font-weight: 700; color: var(--green); }

/* TOOLS */
.tools-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.tool-badge { background: var(--card); border: 1px solid var(--border); border-radius: 50px; padding: 0.5rem 1.1rem; font-size: 0.8rem; font-weight: 600; color: var(--muted2); }

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; max-width: 600px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--muted2); letter-spacing: 0.04em; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 0.85rem 1rem; font-size: 0.9rem; color: var(--text);
  font-family: inherit; transition: border-color 0.2s;
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--coral); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-honeypot { display: none; }
.form-submit { font-size: 0.9rem; font-weight: 600; background: var(--coral); color: var(--bg); padding: 0.9rem 2.5rem; border-radius: 50px; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; align-self: flex-start; }
.form-submit:hover { opacity: 0.85; transform: translateY(-2px); }
.form-success { background: rgba(198,255,124,0.08); border: 1px solid rgba(198,255,124,0.25); border-radius: var(--r); padding: 1.25rem 1.5rem; color: var(--green); font-size: 0.9rem; font-weight: 600; display: none; }

/* CTA SECTION */
.cta-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; padding: 7rem 5%; }
.cta-section .section-h2 { max-width: 700px; margin: 0 auto 1.5rem; }
.cta-section .section-sub { max-width: 500px; margin: 0 auto 2.5rem; }

/* PAGE HERO */
.page-hero { padding: 10rem 5% 5rem; background: var(--bg2); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(250,143,213,0.08) 0%, transparent 70%); top: -100px; right: 0; pointer-events: none; }
.page-hero-content { max-width: 560px; }
.page-hero-visual { position: relative; }
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; max-width: 1200px; }
.breadcrumb { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--coral); text-decoration: none; }

/* FEATURE LIST */
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.feature-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; }
.feature-item .icon { font-size: 1.5rem; margin-bottom: 1rem; }
.feature-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-item p { font-size: 0.82rem; color: var(--muted2); line-height: 1.65; }

/* FOOTER */
footer { background: var(--card); border-top: 1px solid var(--border); padding: 3rem 5%; }
.footer-inner { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1rem; }
.footer-logo img { width: 86px; height: 86px; object-fit: contain; }
.footer-logo-text { font-size: 1rem; font-weight: 800; color: var(--text); }
.footer-tagline { font-size: 0.83rem; color: var(--muted2); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.83rem; color: var(--muted2); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--coral); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-bottom a { color: var(--coral); text-decoration: none; font-size: 0.78rem; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  nav { padding: 1rem 5%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 5rem 5%; }
  .services-grid, .feature-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-h1 { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  nav img[alt="29D"] { width: 70px !important; height: 70px !important; }
  nav { min-height: 60px; padding: 0.3rem 5%; }
}


/* ====== HERO DASHBOARD VISUAL ====== */
.hero-dash {
  position: relative;
  width: 420px;
  height: 440px;
}
.dash-card {
  background: var(--card);
  border: 1px solid rgba(250,143,213,0.18);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  position: absolute;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(250,143,213,0.08);
  opacity: 0;
  animation: dashSlideIn 0.7s ease forwards;
}
.dash-card--top { top: 0; left: 0; width: 260px; animation-delay: 0.8s; }
.dash-card--mid { top: 160px; right: 0; width: 180px; animation-delay: 1.05s; }
.dash-card--bottom { bottom: 0; left: 30px; width: 300px; animation-delay: 1.25s; }

@keyframes dashSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.dash-card-label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.5rem; }
.dash-card-value { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text); }
.dash-card-change { font-size: 0.72rem; font-weight: 600; color: var(--green); margin-top: 0.25rem; }

.sparkline { width: 100%; height: 40px; margin-top: 0.75rem; display: block; }

.pipeline-dots { display: flex; gap: 0.6rem; align-items: baseline; }
.pip { font-size: 1.3rem; font-weight: 800; padding: 0.2rem 0.5rem; border-radius: 8px; }
.pip--won { color: var(--green); background: rgba(198,255,124,0.1); }
.pip--active { color: var(--coral); background: rgba(250,143,213,0.12); font-size: 1.6rem; }
.pip--new { color: var(--blue); background: rgba(180,219,255,0.1); }
.dash-card-sublabels { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.dash-card-sublabels span { font-size: 0.6rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; flex: 1; text-align: center; }

.channel-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.ch-pill {
  font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.7rem;
  border-radius: 50px; border: 1px solid rgba(250,143,213,0.3);
  color: var(--coral); background: rgba(250,143,213,0.07);
  opacity: 0; animation: pillPop 0.4s ease forwards;
  animation-delay: calc(1.4s + var(--d));
}
@keyframes pillPop {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Floating notification badges */
.dash-float {
  position: absolute;
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(250,143,213,0.12); border: 1px solid rgba(250,143,213,0.25);
  border-radius: 50px; padding: 0.35rem 0.75rem;
  font-size: 0.72rem; font-weight: 600; color: var(--text);
  opacity: 0; white-space: nowrap;
}
.dash-float--1 { top: 130px; left: -10px; animation: dashSlideIn 0.5s ease 1.5s forwards; }
.dash-float--2 { top: 300px; right: -10px; animation: dashSlideIn 0.5s ease 1.7s forwards; }
.float-icon { font-size: 0.9rem; }
.float-label { font-size: 0.68rem; }

/* Orbit ring */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 360px; height: 360px;
  margin: -180px 0 0 -180px;
  border: 1px dashed rgba(250,143,213,0.12);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
  pointer-events: none;
}
.orbit-ring::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--coral);
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ====== HERO WIDGET REDESIGNS ====== */

/* Shared tool row */
.hw-tools-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.25rem; }
.hw-tool { font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 50px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--muted2); }
.hw-tagline { font-size: 0.8rem; color: var(--muted2); margin-top: 1rem; line-height: 1.5; }
.hw-tagline strong { color: var(--coral); }

/* SEO funnel */
.seo-funnel { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; margin: 1rem 0; }
.sf-row { display: flex; gap: 0.5rem; width: 100%; }
.sf-wide { width: 100%; }
.sf-mid { width: 100%; }
.sf-narrow { width: 80%; margin: 0 auto; }
.sf-block { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--r); padding: 0.65rem 0.9rem; font-size: 0.78rem; font-weight: 600; color: var(--text); }
.sf-block span { display: block; font-size: 0.68rem; font-weight: 400; color: var(--muted); margin-top: 0.2rem; }
.sf-pink { border-color: rgba(250,143,213,0.3); background: rgba(250,143,213,0.07); color: var(--coral); }
.sf-green { border-color: rgba(198,255,124,0.3); background: rgba(198,255,124,0.07); color: var(--green); text-align: center; }
.sf-arrow { font-size: 0.9rem; color: var(--muted); line-height: 1; }

/* Website checklist */
.web-checklist { display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0; }
.wc-item { display: flex; align-items: center; gap: 0.65rem; padding: 0.5rem 0.75rem;
  border-radius: var(--r); background: rgba(255,255,255,0.03); border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s; }
.wc-item:hover { border-color: rgba(250,143,213,0.2); background: rgba(250,143,213,0.04); }
.wc-icon { font-size: 0.8rem; font-weight: 700; color: var(--green); flex-shrink: 0; }
.wc-label { font-size: 0.8rem; color: var(--text); flex: 1; }
.wc-tag { font-size: 0.65rem; font-weight: 700; color: var(--coral); background: rgba(250,143,213,0.1);
  border: 1px solid rgba(250,143,213,0.2); padding: 0.15rem 0.5rem; border-radius: 50px; white-space: nowrap; }

/* CRM architecture */
.crm-arch { margin: 1rem 0; }
.ca-top { display: flex; gap: 0.5rem; justify-content: center; }
.ca-source { font-size: 0.72rem; padding: 0.4rem 0.75rem; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 50px; color: var(--muted2); }
.ca-arrows { text-align: center; color: var(--muted); font-size: 0.9rem; padding: 0.4rem 0; letter-spacing: 0.5rem; }
.ca-hub { display: block; background: rgba(250,143,213,0.1); border: 1px solid rgba(250,143,213,0.3);
  border-radius: var(--r); padding: 0.9rem 1.25rem; text-align: center; }
.ca-hub-label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--coral); }
.ca-hub-sub { display: block; font-size: 0.68rem; color: var(--muted); margin-top: 0.2rem; }
.ca-bottom { display: flex; gap: 0.5rem; justify-content: center; }
.ca-out { font-size: 0.72rem; padding: 0.4rem 0.75rem; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 50px; color: var(--muted2); }
.ca-out-pink { border-color: rgba(250,143,213,0.3); color: var(--coral); background: rgba(250,143,213,0.06); }

/* AI automation flow */
.ai-flow { display: flex; flex-direction: column; gap: 0; margin: 1rem 0; }
.af-step { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.75rem 0; }
.af-connector { width: 1px; background: var(--border); height: 16px; margin-left: 18px; }
.af-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.07);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--muted2); flex-shrink: 0; }
.af-num-pink { background: rgba(250,143,213,0.15); border-color: rgba(250,143,213,0.35); color: var(--coral); }
.af-name { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.af-desc { font-size: 0.74rem; color: var(--muted2); margin-top: 0.15rem; line-height: 1.4; }
.af-step-last .af-name { color: var(--coral); }

/* Email sequence */
.email-seq { margin: 1rem 0; display: flex; flex-direction: column; }
.es-day { display: flex; gap: 0.75rem; align-items: center; padding: 0.5rem 0; }
.es-line { width: 1px; height: 14px; background: var(--border); margin-left: 7px; }
.es-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.1);
  border: 2px solid var(--border); flex-shrink: 0; }
.es-dot-pink { border-color: var(--coral); background: rgba(250,143,213,0.2); }
.es-dot-green { border-color: var(--green); background: rgba(198,255,124,0.2); }
.es-content { flex: 1; }
.es-label { font-size: 0.76rem; font-weight: 700; color: var(--text); }
.es-preview { font-size: 0.69rem; color: var(--muted2); font-style: italic; margin-top: 0.1rem; }
.es-badge { font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 50px; white-space: nowrap; }
.es-badge-inbox { background: rgba(198,255,124,0.1); border: 1px solid rgba(198,255,124,0.25); color: var(--green); }
.es-badge-reply { background: rgba(250,143,213,0.1); border: 1px solid rgba(250,143,213,0.25); color: var(--coral); }

/* Social engine */
.social-engine { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.75rem; align-items: center; margin: 1rem 0; }
.se-col { display: flex; flex-direction: column; gap: 0.45rem; }
.se-col-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.25rem; }
.se-item { font-size: 0.76rem; color: var(--muted2); padding: 0.35rem 0; 
  border-bottom: 1px solid rgba(255,255,255,0.04); }
.se-item:last-child { border-bottom: none; }
.se-item-pink { color: var(--coral); }
.se-divider { font-size: 1.2rem; color: var(--coral); text-align: center; font-weight: 300; }

/* ABM model */
.abm-model { display: flex; flex-direction: column; gap: 0.3rem; margin: 1rem 0; }
.abm-layer { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0.9rem;
  border-radius: var(--r); border: 1px solid var(--border); background: rgba(255,255,255,0.03);
  transition: transform 0.2s; }
.abm-layer:hover { transform: translateX(4px); }
.abm-l1 { opacity: 0.6; }
.abm-l2 { opacity: 0.75; }
.abm-l3 { opacity: 0.9; }
.abm-l4 { border-color: rgba(250,143,213,0.3); background: rgba(250,143,213,0.07); }
.abm-icon { font-size: 1.1rem; flex-shrink: 0; }
.abm-text strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text); }
.abm-text span { font-size: 0.7rem; color: var(--muted2); }
.abm-text-pink strong { color: var(--coral); }
.abm-arrow { text-align: center; font-size: 0.7rem; color: var(--muted); padding: 0.1rem 0; margin-left: 1rem; }

/* Workflows hub */
.wf-grid { margin: 1rem 0; }
.wf-node-center { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1rem;
  background: rgba(250,143,213,0.1); border: 1px solid rgba(250,143,213,0.3); border-radius: var(--r);
  margin-bottom: 0.75rem; }
.wf-node-icon { font-size: 1.1rem; }
.wf-node-label { font-size: 0.88rem; font-weight: 700; color: var(--coral); }
.wf-spokes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem; }
.wf-spoke { display: flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; color: var(--muted2);
  padding: 0.4rem 0.65rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--r); transition: border-color 0.2s, color 0.2s; }
.wf-spoke:hover { border-color: rgba(250,143,213,0.25); color: var(--text); }
.wf-spoke-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }

/* ====== MOBILE IMPROVEMENTS ====== */
@media (max-width: 768px) {
  .nav-logo img { flex-shrink: 0; width: 150px; height: 150px; max-height: 70px; max-width: 70px; object-fit: contain; display: block; }
  .hero { padding: 7rem 5% 4rem; }
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-visual { display: none; }
  .page-hero { padding: 8rem 5% 3rem; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero-visual { display: none; }
  .stat-num { font-size: 1.6rem; }
  .why-grid { gap: 2rem; }
  .section-h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  nav { padding: 0.85rem 4%; }
  .nav-logo img { flex-shrink: 0; width: 150px; height: 150px; max-height: 70px; max-width: 70px; object-fit: contain; display: block; }
  .nav-cta { display: none; }
  .hero-h1 { font-size: 1.9rem; }
  .hero-p { font-size: 0.95rem; }
  .btn-primary, .btn-ghost { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
  .tags-row .tag { font-size: 0.72rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 4%; }
}

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
}

/* ====== PRICING TEASER (homepage) ====== */
@media (max-width: 768px) {
  #pricing > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   MOBILE OPTIMISATION — comprehensive responsive fixes
   ============================================================ */

/* ── Nav ── */
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { flex-shrink: 0; width: 150px; height: 150px; max-height: 70px; max-width: 70px; object-fit: contain; display: block; }
}

/* ── Hero ── */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 7rem 5% 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero-h1 { font-size: 2rem; }
  .hero-p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; gap: 0.75rem; }
  .hero-btns a { text-align: center; }
  .tags-row { gap: 0.4rem; }
  .tag { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
}

/* ── Stats bar ── */
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .stat-num { font-size: 2rem; }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
}

/* ── Services grid ── */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }
}
@media (min-width: 480px) and (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Process steps ── */
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
  .step { padding: 1.5rem; }
}

/* ── Why grid ── */
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { display: none; }
  .why-list { gap: 1.25rem; }
}

/* ── Tools grid ── */
@media (max-width: 768px) {
  .tools-grid { gap: 0.5rem; }
  .tool-badge { font-size: 0.78rem; padding: 0.35rem 0.75rem; }
}

/* ── Sections ── */
@media (max-width: 768px) {
  section { padding: 4rem 5%; }
  .section-h2 { font-size: 1.7rem; }
  .section-sub { font-size: 0.9rem; }
  .section-label { font-size: 0.68rem; }
}

/* ── Page hero (service pages) ── */
@media (max-width: 768px) {
  .page-hero { padding: 7rem 5% 3rem; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
}

/* ── Founder hero ── */
@media (max-width: 900px) {
  .founder-hero { padding: 7rem 5% 4rem; min-height: auto; }
  .founder-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-visual-panel { display: none; }
  .founder-stat-row { gap: 1.5rem; }
  .founder-hero h1 { font-size: 2rem; }
  .founder-hero-lead { font-size: 0.95rem; }
}

/* ── Pricing page ── */
@media (max-width: 768px) {
  .pricing-hero { padding: 7rem 5% 2.5rem; }
  .pricing-hero .section-h2 { font-size: 1.7rem; }
  .service-tabs { gap: 0.4rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .service-tabs::-webkit-scrollbar { display: none; }
  .svc-tab { flex-shrink: 0; font-size: 0.75rem; padding: 0.4rem 1rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .currency-toggle { margin-top: 1.25rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .plan-name { font-size: 1.2rem; }
  .price-main { font-size: 1.8rem; }
}

/* ── Pricing homepage teaser ── */
@media (max-width: 768px) {
  #pricing > div[style*="grid"] {
    display: flex !important;
    flex-direction: column !important;
    max-width: 100% !important;
  }
}

/* ── Contact form ── */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { display: none; }
}

/* ── Footer ── */
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-col h5 { font-size: 0.78rem; }
  .footer-col a { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── CTA section ── */
@media (max-width: 768px) {
  .cta-section { padding: 4rem 5%; }
  .cta-section .section-h2 { font-size: 1.7rem; }
  .cta-section div[style*="display:flex"] { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 320px; text-align: center; }
}

/* ── Buttons ── */
@media (max-width: 480px) {
  .btn-primary, .btn-ghost { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
}

/* ── Misc touch fixes ── */
@media (max-width: 768px) {
  body { font-size: 16px; }
  * { -webkit-tap-highlight-color: transparent; }
}
