/* ══════════════════════════════════════════
   THE STANDARD BUILD — styles.css
   Light Tech Theme
══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #F4F4F0;
  --bg2:          #ECEAE4;
  --surface:      #FFFFFF;
  --border:       #DDDBD4;
  --border-dark:  #C8C6BF;
  --accent:       #0055FF;
  --accent-light: #EEF3FF;
  --accent-dim:   rgba(0,85,255,0.08);
  --accent-glow:  rgba(0,85,255,0.15);
  --green:        #00C566;
  --text:         #0C0C0A;
  --text-2:       #3C3C38;
  --muted:        #888882;
  --grid:         rgba(0,85,255,0.035);
  --shadow:       0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ─── Cursor ─── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
  top: 0; left: 0;
}
.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  top: 0; left: 0;
  opacity: 0.4;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor.expand { width: 6px; height: 6px; background: var(--accent); }
.cursor-ring.expand { width: 50px; height: 50px; opacity: 0.2; }

/* ─── Background grid ─── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--grid) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  background: rgba(244,244,240,0.92);
  backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: #003ECC !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow) !important;
}
.nav-cta.active::after { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Page wrapper ─── */
.page { position: relative; z-index: 1; }

/* ─── Sections ─── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: none;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #003ECC;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-primary svg { width: 14px; height: 14px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-2);
  padding: 13px 28px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border-dark);
  border-radius: 4px;
  cursor: none;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ─── Hero (home) ─── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 40px 60px;
  gap: 60px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,85,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left { }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(0,85,255,0.15);
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline .accent-word {
  color: var(--accent);
}
.hero-headline .outline-word {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
}

.hero-sub {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.85;
  font-family: 'Fraunces', serif;
  font-style: italic;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* Hero visual */
.hero-right {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-browser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.browser-bar {
  background: var(--bg2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.bd-red   { background: #FF5F57; }
.bd-yellow { background: #FEBC2E; }
.bd-green  { background: #28C840; }
.browser-url {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.browser-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.hero-card-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.hero-card-float.card-1 {
  bottom: -20px; left: -30px;
}
.hero-card-float.card-2 {
  top: 20px; right: -30px;
}
.card-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.card-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.card-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── Marquee ─── */
.marquee-wrap {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--accent);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-sep {
  color: rgba(255,255,255,0.4);
  font-size: 18px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Services cards (home) ─── */
.services-section {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.services-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1;
  color: var(--text);
}
.services-title span { color: var(--accent); }
.services-desc {
  color: var(--muted);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.85;
  max-width: 380px;
  justify-self: end;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 40px var(--accent-glow);
  transform: translateY(-4px);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 12px;
}
.service-card:hover::after { opacity: 1; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 20px;
}
.service-icon-wrap {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0,85,255,0.12);
}
.service-icon-wrap svg {
  width: 22px; height: 22px;
  color: var(--accent);
}
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.service-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  font-family: 'Fraunces', serif;
  margin-bottom: 28px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--surface);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.service-link svg {
  width: 12px; height: 12px;
  transition: transform 0.2s;
}
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ─── Process ─── */
.process-section {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.process-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1;
  margin-bottom: 56px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 26px; left: 26px; right: 26px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), var(--border));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 20px 0 0;
}
.step-bubble {
  width: 52px; height: 52px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: border-color 0.3s, background 0.3s;
}
.process-step:hover .step-bubble {
  border-color: var(--accent);
  background: var(--accent-light);
}
.step-title {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 500;
}
.step-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.8;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

/* ─── Why Us ─── */
.why-section {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 20px;
}
.why-title span { color: var(--accent); }
.why-body {
  color: var(--muted);
  font-family: 'Fraunces', serif;
  font-style: italic;
  line-height: 1.9;
  font-size: 14px;
  margin-bottom: 32px;
}
.why-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin-top: 20px;
}
.why-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.why-list { list-style: none; }
.why-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-check {
  width: 28px; height: 28px;
  background: var(--accent-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg { width: 13px; height: 13px; color: var(--accent); }
.why-item-text strong {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--text);
}
.why-item-text p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Tech callout / terminal box ─── */
.terminal-box {
  background: #0C0C0A;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2A2A26;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
}
.terminal-bar {
  background: #1A1A18;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #2A2A26;
}
.terminal-dots { display: flex; gap: 5px; }
.terminal-dot { width: 9px; height: 9px; border-radius: 50%; }
.td-r { background: #FF5F57; }
.td-y { background: #FEBC2E; }
.td-g { background: #28C840; }
.terminal-title { font-size: 11px; color: #666; margin-left: 8px; }
.terminal-body { padding: 20px; line-height: 1.9; }
.t-line { display: block; }
.t-prompt { color: #0055FF; }
.t-cmd { color: #00C566; }
.t-comment { color: #444; }
.t-output { color: #AAA; }
.t-key { color: #FFB86C; }
.t-val { color: #BD93F9; }
.t-success { color: #00C566; }

/* ─── CTA section ─── */
.cta-section {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,85,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: 'BUILD';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 18vw, 220px);
  color: var(--bg2);
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1;
  margin-bottom: 16px;
}
.cta-title span { color: var(--accent); }
.cta-sub {
  color: var(--muted);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 40px;
}
.cta-contact {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.contact-item { text-align: left; }
.contact-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-val {
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
}
.contact-val:hover { color: var(--accent); }

/* ─── Footer ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
  background: var(--surface);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 11px;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   SERVICE PAGES (websites.html / openclaw.html)
══════════════════════════════════════════ */

/* Page hero */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 140px 40px 80px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,85,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  margin-bottom: 20px;
}
.page-hero-title span { color: var(--accent); }
.page-hero-sub {
  color: var(--text-2);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 36px;
}
.page-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.meta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
}
.meta-badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* Page hero image */
.page-hero-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.page-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.image-overlay-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
}
.iob-label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.iob-value { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--accent); }

/* Feature grid */
.features-section {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.features-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px var(--accent-glow);
}
.feature-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 18px; height: 18px; color: var(--accent); }
.feature-name {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
}
.feature-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* Two-col content block */
.split-section {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.split-section.bg-surface { background: var(--surface); }
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }
.split-content-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  margin-bottom: 16px;
}
.split-content-title span { color: var(--accent); }
.split-content-body {
  color: var(--muted);
  font-family: 'Fraunces', serif;
  font-style: italic;
  line-height: 1.9;
  font-size: 14px;
  margin-bottom: 28px;
}
.split-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.split-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-2);
}
.split-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.split-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.split-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Pricing */
.pricing-section {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.pricing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 12px;
}
.pricing-sub {
  color: var(--muted);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
}
.pricing-tier {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-amount span { font-size: 22px; color: var(--muted); }
.pricing-note {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-2);
}
.pricing-features li svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.pricing-features li.dim { color: var(--muted); }
.pricing-features li.dim svg { color: var(--border-dark); }

/* ─── Calendly badge override ─── */
.calendly-badge-widget .calendly-badge-content {
  font-size: 15px !important;
  padding: 16px 28px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 6px 28px rgba(0,85,255,0.35) !important;
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Page load animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag      { animation: fadeUp 0.6s ease 0.1s both; }
.hero-headline { animation: fadeUp 0.6s ease 0.2s both; }
.hero-sub      { animation: fadeUp 0.6s ease 0.32s both; }
.hero-actions  { animation: fadeUp 0.6s ease 0.44s both; }
.hero-stats    { animation: fadeUp 0.6s ease 0.56s both; }
.hero-right    { animation: fadeUp 0.7s ease 0.3s both; }

.page-hero-left  { animation: fadeUp 0.6s ease 0.15s both; }
.page-hero-image { animation: fadeUp 0.7s ease 0.3s both; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
  .hero-right { display: none; }
  .services-header { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-image { display: none; }
  .split-inner { grid-template-columns: 1fr; gap: 40px; }
  .split-inner.reverse { direction: ltr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(244,244,240,0.98);
    backdrop-filter: blur(16px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    z-index: 199;
  }
  .nav-toggle { display: flex; }
  .hero, .services-section, .process-section, .why-section, .cta-section { padding-left: 20px; padding-right: 20px; }
  .page-hero { padding: 120px 20px 60px; }
  .features-section, .split-section, .pricing-section { padding-left: 20px; padding-right: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  footer { padding: 20px; flex-direction: column; align-items: flex-start; gap: 20px; }
}
