/* ===================================================================
   VELORA AGENCY — Shared Stylesheet
   Edit colors / fonts / spacing here and every page updates.
   =================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --card: #161616;
  --border: #1f1f1f;
  --text: #f3eee3;
  --muted: #a8a39a;
  --yellow: #f7c518;
  --yellow-soft: rgba(247, 197, 24, 0.08);
  --max-width: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ---------- NAVBAR ---------- */
header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem; max-width: var(--max-width); margin: 0 auto;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-mark {
  width: 38px; height: 38px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(247,197,24,0.04);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(247,197,24,0.3);
  transform: rotate(-30deg);
}
.logo-mark-text { font-size: 0.85rem; letter-spacing: 0.02em; position: relative; z-index: 1; }
.logo-mark-text .m { color: var(--yellow); }
.logo-mark-text .a { color: var(--text); margin-left: -1px; }
.logo-text-name .name-w { color: var(--text); }
.logo-text-name .name-y { color: var(--yellow); }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text); transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.5rem; background: var(--yellow); color: #0a0a0a;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 4px; border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247, 197, 24, 0.25); background: #ffd230; }
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); background: transparent; }
.btn-lg { padding: 1.1rem 2rem; font-size: 0.95rem; }

.mobile-toggle {
  display: none; background: transparent; border: none;
  color: var(--text); font-size: 1.5rem; cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
  position: relative; padding: 7rem 0 6rem; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(247, 197, 24, 0.18) 0%, transparent 60%);
  filter: blur(40px); pointer-events: none;
}

/* Hero 2-col grid with mockup */
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 4rem; align-items: center; position: relative;
}
.hero-text { position: relative; z-index: 2; }

/* ---------- HERO MOCKUP (Phone overlapping Laptop) ---------- */
.hero-visual {
  position: relative; width: 100%; height: 580px;
}
.hero-visual::before {
  content: ''; position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(247,197,24,0.14) 0%, transparent 65%);
  filter: blur(30px); pointer-events: none; z-index: 0;
}

/* Floating card base */
.hv-card {
  position: absolute;
  background: rgba(20, 20, 20, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 197, 24, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,0,0,0.3);
  z-index: 5;
  animation: cardFloat 8s ease-in-out infinite;
}
.hv-card:nth-of-type(odd) { animation-delay: -2s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hv-card-label {
  font-size: 0.62rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600;
}
.hv-card-num {
  font-family: 'Anton', sans-serif; font-size: 2rem;
  color: var(--text); line-height: 1;
  margin: 6px 0 4px;
}
.hv-card-trend {
  font-size: 0.7rem; color: #4ade80; font-weight: 500;
}

/* New Lead Captured notification (top area) */
.hv-notif {
  top: 0; left: 32%; width: 260px;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px;
}
.hv-notif-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(247, 197, 24, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.hv-notif-icon svg { width: 14px; height: 14px; }
.hv-notif-text { flex: 1; min-width: 0; }
.hv-notif-title { font-size: 0.8rem; color: var(--text); font-weight: 700; }
.hv-notif-sub { font-size: 0.65rem; color: var(--muted); margin-top: 1px; }
.hv-notif-time { font-size: 0.6rem; color: #555; margin-top: 2px; }
.hv-notif-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(247, 197, 24, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.hv-notif-avatar svg { width: 14px; height: 14px; }

/* Total Leads with line chart (top-right) */
.hv-leads {
  top: 85px; right: 0; width: 230px;
  padding: 14px 16px;
}
.hv-leads-chart {
  width: 100%; height: 38px;
  margin-top: 8px; color: var(--yellow);
  display: block;
}

/* Appointments (middle) */
.hv-appts {
  top: 195px; left: 32%; width: 220px;
  display: flex; align-items: center; gap: 12px;
}
.hv-appts-text { flex: 1; }
.hv-appts-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(247, 197, 24, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.hv-appts-icon svg { width: 18px; height: 18px; }

/* Recent Activity (lower-middle) */
.hv-activity {
  top: 310px; left: 32%; width: 260px;
  padding: 12px 14px;
}
.hv-activity .hv-card-label { margin-bottom: 6px; }
.hv-act-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.68rem; color: var(--text);
  padding: 5px 0;
}
.hv-act-icon {
  width: 22px; height: 22px; border-radius: 5px;
  background: rgba(247, 197, 24, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.hv-act-icon svg { width: 11px; height: 11px; }
.hv-act-text { flex: 1; min-width: 0; }
.hv-act-time { color: var(--muted); font-size: 0.58rem; flex-shrink: 0; }

/* Top Sources (right side, lower) */
.hv-sources {
  top: 250px; right: 0; width: 230px;
  padding: 12px 14px;
}
.hv-sources .hv-card-label { margin-bottom: 6px; }
.hv-src-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.66rem; padding: 4px 0;
}
.hv-src-row > span:first-child {
  width: 50px; flex-shrink: 0;
  color: var(--text);
}
.hv-src-bar {
  flex: 1; height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
}
.hv-src-bar > div {
  height: 100%; background: var(--yellow);
  border-radius: 2px;
}
.hv-src-pct {
  color: var(--text); font-weight: 700;
  min-width: 32px; text-align: right;
  font-size: 0.64rem;
}

/* Laptop — bigger, top-right, phone overlaps its lower-left */
.laptop {
  position: absolute; right: 0; top: 10px;
  width: 100%; max-width: 520px; z-index: 1;
}
.laptop-frame {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1.5px solid #3a3a3a; border-radius: 12px 12px 4px 4px;
  padding: 14px 14px 16px; position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(247,197,24,0.08), inset 0 1px 0 rgba(255,255,255,0.08);
}
.laptop-screen {
  background: #050505; border-radius: 6px;
  aspect-ratio: 16 / 10; min-height: 240px;
  position: relative; overflow: hidden;
  border: 1px solid #2a2a2a;
  padding: 0.9rem 1.1rem;
  display: flex; flex-direction: column;
}
.laptop-base {
  height: 14px; background: linear-gradient(to bottom, #353535, #1c1c1c);
  margin: 0 -28px -2px; border-radius: 0 0 16px 16px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.laptop-base::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 6px; background: #0a0a0a; border-radius: 0 0 8px 8px;
}

/* Laptop screen — marketing hero layout matching reference image */
.laptop-screen { padding: 8px 10px; gap: 0; display: flex; flex-direction: column; }
.ls-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 6px; border-bottom: 1px solid #1a1a1a; gap: 8px;
}
.ls-brand { display: flex; align-items: center; gap: 5px; }
.ls-logo-mark {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.2px solid var(--yellow); display: flex;
  align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif; font-size: 0.42rem;
  color: var(--yellow);
}
.ls-logo-text {
  font-family: 'Anton', sans-serif; font-size: 0.5rem;
  letter-spacing: 0.04em;
}
.ls-logo-text .ls-w { color: var(--text); }
.ls-logo-text .ls-y { color: var(--yellow); }
.ls-nav-links { display: flex; gap: 8px; font-size: 0.42rem; color: var(--muted); letter-spacing: 0.04em; }
.ls-nav-btn {
  background: var(--yellow); color: #000;
  font-size: 0.42rem; font-weight: 800; padding: 3px 7px;
  border-radius: 2px; letter-spacing: 0.06em; text-transform: uppercase;
}

.ls-hero {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 8px;
  flex: 1; padding: 8px 0; align-items: start;
}
.ls-hero-text { display: flex; flex-direction: column; gap: 5px; }
.ls-headline {
  font-family: 'Anton', sans-serif; font-size: 0.95rem;
  line-height: 1; color: var(--text);
  letter-spacing: 0.005em;
}
.ls-desc { font-size: 0.4rem; color: var(--muted); line-height: 1.35; max-width: 95%; }
.ls-cta { display: flex; gap: 4px; margin-top: 2px; }
.ls-btn {
  background: var(--yellow); color: #000;
  font-size: 0.42rem; font-weight: 800; padding: 4px 8px;
  border-radius: 2px; letter-spacing: 0.05em; text-transform: uppercase;
}
.ls-btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid #2a2a2a;
  font-size: 0.42rem; font-weight: 700; padding: 3px 7px;
  border-radius: 2px; letter-spacing: 0.05em; text-transform: uppercase;
}

.ls-dashboard {
  background: #0d0d0d; border: 1px solid #1a1a1a;
  border-radius: 4px; padding: 6px 7px;
  display: flex; flex-direction: column; gap: 5px;
}
.ls-dash-head {
  font-family: 'Anton', sans-serif; font-size: 0.5rem;
  color: var(--text); letter-spacing: 0.06em;
  text-transform: uppercase; padding-bottom: 4px;
  border-bottom: 1px solid #1a1a1a;
}
.ls-dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.ls-stat {
  background: #141414; border: 1px solid #1f1f1f;
  border-radius: 3px; padding: 4px 5px;
  display: flex; flex-direction: column;
}
.ls-spark {
  width: 100%; height: 10px;
  color: var(--yellow); margin-top: 2px;
}
.ls-stat-label {
  font-size: 0.36rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ls-stat-num {
  font-family: 'Anton', sans-serif; font-size: 0.85rem;
  color: var(--text); line-height: 1; margin-top: 1px;
}
.ls-stat-trend { font-size: 0.36rem; color: #4ade80; margin-top: 1px; }
.ls-dash-mini {
  display: flex; flex-direction: column; gap: 3px;
  padding-top: 4px; border-top: 1px solid #1a1a1a;
}
.ls-mini-label {
  font-size: 0.36rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.ls-mini-row {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.36rem; color: var(--muted);
}
.ls-mini-row > span:first-child { width: 32px; flex-shrink: 0; color: var(--text); }
.ls-mini-bar {
  flex: 1; height: 3px; background: #1a1a1a;
  border-radius: 2px; overflow: hidden;
}
.ls-mini-bar > div { height: 100%; background: var(--yellow); border-radius: 2px; }
.ls-mini-row > span:last-child { color: var(--text); font-weight: 600; min-width: 18px; text-align: right; }

.ls-services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  margin-top: auto; padding-top: 6px;
}
.ls-service {
  background: #141414; border: 1px solid #1f1f1f;
  border-radius: 3px; padding: 5px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.ls-service svg { width: 12px; height: 12px; color: var(--yellow); }
.ls-service span { font-size: 0.4rem; color: var(--text); font-weight: 600; }

/* Dashboard inside laptop screen (legacy fallback) */
.dash-grid {
  display: grid; grid-template-columns: 70px 1fr;
  gap: 6px; height: 100%;
}
.dash-sidebar {
  background: #0d0d0d; border-radius: 4px;
  padding: 6px 4px; display: flex; flex-direction: column; gap: 2px;
  border: 1px solid #161616;
}
.dash-logo {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--yellow); display: flex;
  align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif; font-size: 0.55rem;
  color: var(--yellow); margin: 2px auto 8px;
  letter-spacing: 0.02em;
}
.dash-nav-item {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 5px; font-size: 0.42rem;
  color: var(--muted); border-radius: 2px;
  letter-spacing: 0.02em;
}
.dash-nav-item svg { width: 7px; height: 7px; flex-shrink: 0; }
.dash-nav-item.active {
  background: rgba(247,197,24,0.08);
  color: var(--yellow);
}
.dash-main { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.dash-title {
  font-family: 'Anton', sans-serif; font-size: 0.6rem;
  color: var(--text); letter-spacing: 0.06em;
  text-transform: uppercase; padding-bottom: 4px;
  border-bottom: 1px solid #1a1a1a;
}
.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.dash-card {
  background: #0e0e0e; border: 1px solid #1a1a1a;
  border-radius: 3px; padding: 5px 6px; position: relative;
  display: flex; flex-direction: column; gap: 1px;
}
.dash-card-label {
  font-size: 0.38rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.dash-card-num {
  font-family: 'Anton', sans-serif; font-size: 0.95rem;
  color: var(--text); line-height: 1; margin-top: 1px;
}
.dash-card-trend { font-size: 0.4rem; color: #4ade80; margin-top: 1px; }
.dash-spark { width: 100%; height: 12px; color: var(--yellow); margin-top: 2px; }
.dash-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; flex: 1; }
.dash-panel {
  background: #0e0e0e; border: 1px solid #1a1a1a;
  border-radius: 3px; padding: 5px 6px;
  display: flex; flex-direction: column; gap: 2px;
}
.dash-section-title {
  font-size: 0.45rem; color: var(--text);
  font-weight: 600; margin-bottom: 3px; letter-spacing: 0.05em;
}
.dash-activity-item {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.4rem; color: var(--muted); padding: 1px 0;
}
.dash-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0;
}
.dash-time { margin-left: auto; color: #4a4a4a; font-size: 0.35rem; }
.dash-source-row {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.4rem; color: var(--muted); padding: 1px 0;
}
.dash-src-label { width: 32px; flex-shrink: 0; }
.dash-bar {
  flex: 1; height: 3px; background: #1a1a1a;
  border-radius: 2px; overflow: hidden;
}
.dash-bar-fill { height: 100%; background: var(--yellow); border-radius: 2px; }
.dash-pct {
  font-size: 0.4rem; color: var(--text);
  font-weight: 600; min-width: 18px; text-align: right;
}

/* Mini Velora site inside laptop (legacy fallback) */
.mini-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 0.6rem; border-bottom: 1px solid #1a1a1a;
}
.mini-logo {
  font-family: 'Anton', sans-serif; color: var(--yellow);
  font-size: 0.7rem; letter-spacing: 0.05em;
}
.mini-nav-dots { display: flex; gap: 0.6rem; }
.mini-nav-dot { width: 18px; height: 3px; background: #2a2a2a; border-radius: 2px; }
.mini-nav-btn {
  background: var(--yellow); color: #000;
  font-size: 0.55rem; font-weight: 800; padding: 0.25rem 0.5rem;
  border-radius: 2px; letter-spacing: 0.06em; text-transform: uppercase;
}
.mini-content { padding: 0.9rem 0 0.6rem; }
.mini-eyebrow {
  color: var(--yellow); font-size: 0.5rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.5rem; font-weight: 700;
}
.mini-headline {
  font-family: 'Anton', sans-serif; font-size: 1.5rem;
  line-height: 0.95; text-transform: uppercase; margin-bottom: 0.6rem;
}
.mini-headline .accent { color: var(--yellow); }
.mini-btn {
  display: inline-block; background: var(--yellow); color: #000;
  padding: 0.3rem 0.65rem; font-size: 0.55rem; font-weight: 800;
  text-transform: uppercase; border-radius: 2px; letter-spacing: 0.06em;
}
.mini-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem; margin-top: 0.85rem;
}
.mini-card {
  background: #141414; border: 1px solid #1f1f1f;
  border-radius: 3px; padding: 0.45rem; height: 48px;
  display: flex; flex-direction: column; gap: 4px;
}
.mini-card-icon { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); opacity: 0.7; }
.mini-card-line { height: 3px; background: #2a2a2a; border-radius: 1px; width: 80%; }
.mini-card-line.short { width: 50%; }

/* Phone — bigger, overlapping the laptop's lower-left corner */
.phone {
  position: absolute; left: -10px; bottom: 0;
  width: 200px; z-index: 10;
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.phone-frame {
  background: linear-gradient(180deg, #1c1c1c 0%, #0f0f0f 100%);
  border-radius: 32px; padding: 7px;
  border: 1.5px solid #2a2a2a;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(247,197,24,0.06);
}
.phone-screen {
  background: #0a0a0a; border-radius: 26px;
  height: 380px; padding: 1.5rem 0.85rem 0.85rem;
  overflow: hidden; position: relative;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 56px; height: 16px; background: #0a0a0a;
  border-radius: 0 0 12px 12px; z-index: 2;
}
.chat-header {
  display: flex; align-items: center; gap: 0.5rem;
  padding-bottom: 0.6rem; margin-bottom: 0.7rem;
  border-bottom: 1px solid #1a1a1a;
}
.chat-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  color: #000; font-size: 0.65rem; font-weight: 800;
}
.chat-name { font-size: 0.7rem; color: var(--text); font-weight: 600; line-height: 1.1; }
.chat-status { font-size: 0.55rem; color: #4caf50; line-height: 1.1; }
.chat-status::before { content: '•'; margin-right: 2px; }
.chat-messages {
  display: flex; flex-direction: column; gap: 0.45rem;
  animation: fadein 1s ease;
}
.msg {
  font-size: 0.65rem; padding: 0.45rem 0.65rem;
  border-radius: 12px; max-width: 80%; line-height: 1.3;
  animation: msg-in 0.5s ease both;
}
.msg-ai {
  background: #1f1f1f; color: var(--text);
  border-bottom-left-radius: 4px; align-self: flex-start;
}
.msg-user {
  background: var(--yellow); color: #000; font-weight: 600;
  border-bottom-right-radius: 4px; align-self: flex-end;
}
.msg:nth-child(1) { animation-delay: 0.2s; }
.msg:nth-child(2) { animation-delay: 0.6s; }
.msg:nth-child(3) { animation-delay: 1.0s; }
.msg:nth-child(4) { animation-delay: 1.4s; }
.msg-typing {
  background: #1f1f1f; padding: 0.55rem 0.7rem;
  align-self: flex-start; display: flex; gap: 3px;
  border-radius: 12px; border-bottom-left-radius: 4px;
}
.msg-typing span {
  width: 5px; height: 5px; background: var(--muted);
  border-radius: 50%; animation: typing 1.4s infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }
@keyframes msg-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.eyebrow {
  color: var(--yellow); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.75rem; position: relative;
}
.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.92; letter-spacing: 0.01em; text-transform: uppercase;
  margin-bottom: 2rem; position: relative;
}
.hero h1 .accent { color: var(--yellow); display: block; }
.hero-sub {
  color: var(--muted); font-size: 1.15rem; max-width: 580px;
  margin-bottom: 2.5rem; position: relative;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; }

/* Service-page hero (smaller) */
.subhero { padding: 5rem 0 3rem; }
.subhero h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
.subhero .hero-sub { font-size: 1.2rem; max-width: 640px; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--text); }

/* ---------- SECTION HEADERS ---------- */
section { padding: 6rem 0; position: relative; }
.section-eyebrow {
  color: var(--yellow); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95; text-transform: uppercase; letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.section-title .accent { color: var(--yellow); }

/* ---------- SERVICES (homepage grid) ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 4rem;
}
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 2.25rem 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: flex; flex-direction: column; min-height: 380px;
  color: inherit; cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px); border-color: var(--yellow); background: #1a1a1a;
}
.service-icon { width: 48px; height: 48px; color: var(--yellow); margin-bottom: 1.75rem; }
.service-card h3 {
  font-family: 'Anton', sans-serif; font-size: 1.5rem;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1rem;
}
.service-card p { color: var(--muted); font-size: 0.95rem; flex: 1; margin-bottom: 1.5rem; }
.service-price {
  color: var(--yellow); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.service-card .learn-more {
  margin-top: 0.75rem; font-size: 0.8rem; color: var(--text); font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.4rem;
}
.service-card:hover .learn-more { color: var(--yellow); }

/* ---------- WHAT'S INCLUDED (service page) ---------- */
.includes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.include-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.75rem;
}
.include-item h4 {
  font-family: 'Anton', sans-serif; font-size: 1.15rem;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.6rem;
  color: var(--yellow);
}
.include-item p { color: var(--muted); font-size: 0.95rem; }

/* ---------- OFFER / CHECKLIST ---------- */
.offer {
  background: var(--bg-alt); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); overflow: hidden; position: relative;
}
.offer::after {
  content: 'FREE'; position: absolute; right: -2%; bottom: -10%;
  font-family: 'Anton', sans-serif; font-size: 22rem;
  color: rgba(247, 197, 24, 0.04); pointer-events: none;
  line-height: 1; letter-spacing: -0.02em;
}
.offer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; position: relative; z-index: 1;
}
.offer-left p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 460px; }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.offer-list li {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
}
.offer-list li:last-child { border-bottom: none; }
.check { flex-shrink: 0; width: 24px; height: 24px; color: var(--yellow); margin-top: 2px; }

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 2.5rem 2rem;
  position: relative; transition: border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(180deg, rgba(247, 197, 24, 0.06) 0%, var(--card) 100%);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: #0a0a0a;
  padding: 0.3rem 1rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.price-name {
  font-family: 'Anton', sans-serif; font-size: 1.5rem;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.price-amount {
  font-family: 'Anton', sans-serif; font-size: 3rem;
  color: var(--yellow); line-height: 1; margin: 1rem 0 0.25rem;
}
.price-amount small {
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: var(--muted); font-weight: 400;
}
.price-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.75rem; }
.price-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.price-features li {
  padding: 0.65rem 0; color: var(--text); font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.price-features li::before { content: '✓'; color: var(--yellow); font-weight: 700; }
.price-card .btn { width: 100%; justify-content: center; }
.price-card .btn-outline { width: 100%; justify-content: center; }
.secure-note {
  text-align: center; margin-top: 0.75rem;
  color: var(--muted); font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}

/* ---------- ABOUT / STATS ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.stat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.75rem;
}
.stat-num { font-family: 'Anton', sans-serif; font-size: 2.75rem; color: var(--yellow); line-height: 1; }
.stat-label { color: var(--muted); font-size: 0.85rem; margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.06em; }
.about-text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.25rem; }
.about-text p:last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 1.5rem 0; cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 600; font-size: 1.05rem;
}
.faq-q::after { content: '+'; color: var(--yellow); font-size: 1.5rem; font-weight: 300; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; color: var(--muted);
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 0.85rem; }

/* ---------- CONTACT ---------- */
.contact { text-align: center; padding: 8rem 0; }
.contact .section-title { font-size: clamp(3rem, 7vw, 5.5rem); }
.contact p { color: var(--muted); font-size: 1.15rem; max-width: 560px; margin: 0 auto 3rem; }
.contact-form {
  max-width: 560px; margin: 3rem auto 0; text-align: left;
  display: grid; gap: 1rem;
}
.contact-form input, .contact-form textarea {
  background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  padding: 0.9rem 1.1rem; color: var(--text); font-family: inherit;
  font-size: 1rem; transition: border-color 0.2s; width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--yellow); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { justify-self: center; margin-top: 0.5rem; }
.form-success {
  display: none; padding: 1.25rem; background: var(--yellow-soft);
  border: 1px solid var(--yellow); border-radius: 6px; color: var(--yellow);
  text-align: center; margin-top: 1rem;
}

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--border); padding: 2.5rem 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.copyright { color: var(--muted); font-size: 0.85rem; }

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 968px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .offer-grid, .about-grid, .includes-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 420px; max-width: 520px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 1.5rem 2rem; gap: 1.25rem;
  }
  .mobile-toggle { display: block; }
  .nav-cta-desktop { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 1rem 1.25rem; }
  section { padding: 4rem 0; }
  .hero { padding: 4rem 0 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; }
  .laptop { max-width: 100%; }
  .phone { width: 160px; left: -10px; bottom: 0; }
  .phone-screen { height: 320px; }
  .offer::after { font-size: 12rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
}
