/* ========== Theme ========== */
:root{
  --bg: #ffffff;
  --text: #101010;
  --muted: #6b6b6b;
  --yellow: #ffd400;           /* primary accent */
  --yellow-200: #ffea80;       /* light accent */
  --yellow-600: #caa600;       /* darker accent */
  --border: #ececec;
  --card: #ffffff;
  --shadow: 0 10px 25px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Utility */
.container{ width: min(1120px, 92vw); margin-inline: auto; }
.muted{ color: var(--muted); }
.nowrap{ white-space: nowrap; }

/* Buttons */
.btn{
  --btn-bg: var(--yellow);
  --btn-text: #111;
  display: inline-block;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: var(--btn-text);
  background: var(--btn-bg);
  border: 2px solid transparent;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  box-shadow: 0 6px 18px rgba(202,166,0,.25);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn--outline{ background: transparent; border-color: var(--yellow); color: var(--text); }
.btn--outline:hover{ background: var(--yellow); }

.btn--solid{ }
.btn--ghost{ --btn-bg: transparent; border: 2px solid #ddd; box-shadow: none; }
.btn--dark{ --btn-bg: #111; --btn-text: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.btn--dark:hover{ background:#000; }

/* ===== Header ===== */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav{ display:flex; align-items:center; gap:1rem; padding: .9rem 0; }
.brand{ display:flex; align-items:center; gap:.6rem; text-decoration:none; color:inherit; font-weight:800; }
.brand-mark{
  width: 34px; height: 34px; display:grid; place-items:center;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--yellow), var(--yellow-200));
  color:#111; font-weight:900;
}
.brand-text{ letter-spacing:.2px; }

.nav-links{ margin-left:auto; display:flex; align-items:center; gap:.8rem; flex-wrap:wrap; }
.nav-links a{ text-decoration:none; color:#222; padding:.4rem .6rem; border-radius:8px; }
.nav-links a:hover{ background:#f7f7f7; }

/* Mobile toggle (CSS-only) */
.nav-toggle{ display:none; }
.burger{ display:none; margin-left:auto; cursor:pointer; }
.burger span{ display:block; width:24px; height:2px; background:#111; margin:5px 0; border-radius:1px; }

@media (max-width: 900px){
  .burger{ display:block; }
  .nav-links{
    position:absolute; inset: 60px 0 auto 0;
    background:#fff; border-bottom:1px solid var(--border);
    display:grid; gap:.4rem; padding: .8rem .8rem 1rem;
    transform-origin: top center; transform: scaleY(0);
    transition: transform .18s ease;
  }
  .nav-toggle:checked ~ .burger + .nav-links{ transform: scaleY(1); }
}

/* ===== Hero ===== */
.hero{
  background:
    radial-gradient(1500px 400px at 80% -10%, rgba(255,212,0,.35), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
  border-bottom:1px solid var(--border);
}
.hero__inner{
  display:grid; grid-template-columns: 1.15fr .85fr; gap: 2rem;
  align-items:center; padding: clamp(2rem, 4vw, 4rem) 0;
}
.hero__content .pill{
  display:inline-block; background:#111; color:#fff; border-radius:999px; font-size:.8rem; padding:.35rem .7rem; margin-bottom: .9rem;
}
.hero h1{ font-size: clamp(1.8rem, 3.8vw, 3rem); line-height:1.2; margin:0 0 .6rem 0; }
.hero .highlight{ background: linear-gradient(0deg, var(--yellow-200), var(--yellow-200)); box-decoration-break: clone; padding: 0 .25rem; }
.hero .lead{ color:#2f2f2f; max-width: 58ch; }
.cta-row{ display:flex; gap:.7rem; margin-top:1rem; flex-wrap:wrap; }

.hero__art {
  width: 100%;
  aspect-ratio: 1 / 1; /* adjust as needed */
  border-radius: 22px;
  background: url('assets/img/ipad.png') no-repeat center center / cover;
}

@media (max-width: 960px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__content{ order: 1; } /* text first */
  .hero__art{ order: 2; }     /* image after text */
}

.logos {
  display: block;
  width: 100%;
  background: url('assets/img/logos.png') no-repeat center center;
  background-size: cover; /* fills full width & height */
  height: 180px; /* increase for desktop */
}

@media (max-width: 768px) {
  .logos {
    background-size: contain;
    background-position: center;
    height: 60px;
  }
}

/* ===== Feature (Original - Marketing On Your Terms) ===== */
.feature{ padding: clamp(2rem, 5vw, 4rem) 0; }
.feature__grid{ display:grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; align-items:center; }
.feature__image{
  width:100%; aspect-ratio: 1/1; border-radius: 22px;
  background:
    radial-gradient(45% 45% at 60% 30%, #fff 30%, #fff0 31%),
    linear-gradient(180deg, #fff, #fff),
    radial-gradient(circle at 30% 10%, var(--yellow-200), transparent 45%),
    linear-gradient(145deg, #fff, #fff7bf);
  box-shadow: var(--shadow);
  position: relative;
}
.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.feature__copy h2{ margin-top:0; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.checks{ list-style:none; padding:0; margin: .75rem 0 0 0; display:grid; gap:.55rem; }
.checks li{ position:relative; padding-left: 1.75rem; }
.checks li::before{
  content:""; position:absolute; left:0; top:.25rem; width:1.1rem; height:1.1rem; border-radius:50%;
  background: var(--yellow); box-shadow: 0 0 0 2px #fff inset, 0 0 0 2px var(--yellow);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.2 12.2 2.6 8.7l1.4-1.4 2.1 2.1 5.9-5.9 1.4 1.4z"/></svg>') center / 70% 70% no-repeat;
}

/* ===== NEW Service Sections (Zombie & Lead Gen) ===== */
.service-section{
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.service-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.service__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service__grid--reverse{
  grid-template-columns: 1fr 1.1fr;
}

.service__image{
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 22px;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, 0.1);
}

.service__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 212, 0, 0.15), transparent 60%);
  pointer-events: none;
}

.service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  position: relative;
  z-index: 1;
}

.service__copy{
  color: #fff;
}

.service__copy h2{
  margin-top: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.service__copy .service-note {
  color: var(--yellow);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Arrow bullets for service sections */
.arrows{
  list-style: none;
  padding: 0;
  margin: .75rem 0 0 0;
  display: grid;
  gap: .7rem;
}

.arrows li{
  position: relative;
  padding-left: 2rem;
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.arrows li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .3rem;
  width: 1.3rem;
  height: 1.3rem;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-600));
  border-radius: 4px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M8 2l6 6-6 6v-4H2V6h6V2z"/></svg>') center / 65% 65% no-repeat;
  box-shadow: 0 2px 8px rgba(255, 212, 0, 0.3);
}

@media (max-width: 960px){
  .feature__grid{ grid-template-columns: 1fr; }
  .service__grid,
  .service__grid--reverse{
    grid-template-columns: 1fr;
  }
  .service__image{
    order: 1;
  }
  .service__copy{
    order: 2;
  }
}

/* ===== Fit / Not Fit ===== */
.fit{ padding: clamp(2rem, 5vw, 4rem) 0; background:#0a0a0a; color:#fff; }
.fit__grid{ display:grid; grid-template-columns: 1fr 1fr; gap:1rem; }
.fit-card{ background:#111; border:1px solid #1f1f1f; border-radius:18px; padding:1.5rem; box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.fit-card h3{ margin-top:0; font-size: 1.3rem; }
.fit-card--no{ background:#171717; }
.fit a{ color:#fff; }

.crosses{ list-style:none; padding:0; margin: .75rem 0 0 0; display:grid; gap:.55rem; }
.crosses li{ position:relative; padding-left: 1.75rem; }
.crosses li::before{
  content:""; position:absolute; left:0; top:.25rem; width:1.1rem; height:1.1rem; border-radius:50%;
  background: #ff4444; box-shadow: none;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M3.5 4.9 4.9 3.5 12.5 11.1 11.1 12.5z"/><path fill="white" d="M11.1 3.5 12.5 4.9 4.9 12.5 3.5 11.1z"/></svg>') center / 70% 70% no-repeat;
}

@media (max-width: 900px){
  .fit__grid{ grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.cta{
  padding: clamp(2.2rem, 5vw, 4rem) 0;
  background: radial-gradient(600px 200px at 20% 0%, #fff3a7, transparent 60%),
              radial-gradient(600px 220px at 100% 120%, #ffe77a, transparent 60%),
              linear-gradient(180deg, #fffef4, #fff);
  border-top:1px solid var(--border);
}
.cta__inner{ text-align:center; }
.cta__inner h2{ margin: 0 0 .25rem 0; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.cta__inner p{ margin: 0 0 .8rem 0; color:#2e2e2e; }

/* ===== Footer ===== */
.site-footer{ border-top:1px solid var(--border); background:#fff; }
.footer__grid{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding: 1.1rem 0; }
.brand--footer .brand-mark{ background: linear-gradient(180deg, var(--yellow), var(--yellow-200)); }
.site-footer nav a{ text-decoration:none; color:#333; margin-left: .8rem; }
.site-footer nav a:hover{ text-decoration: underline; }

@media (max-width: 800px){
  .footer__grid{ flex-direction:column; align-items:flex-start; }
}

.special-fit .fit__grid {
  display: flex;
  justify-content: center;
  align-items: center;
}