/* ============================================
   Netvoyant — Styles v2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- Variables ---- */
:root {
  --dark:          #0e0d0b;
  --dark-2:        #161410;
  --dark-3:        #1f1d19;
  --dark-border:   rgba(255,255,255,0.07);
  --dark-border-2: rgba(255,255,255,0.12);

  --light:         #f8f5ef;
  --light-2:       #f0ece2;
  --light-border:  #e2d9cc;

  --amber:         #2bd3fb;
  --amber-bright:  #5de0fd;
  --amber-glow:    rgba(43,211,251,0.18);
  --amber-subtle:  rgba(43,211,251,0.08);

  --text-dark:     #ede9e0;
  --muted-dark:    #6e6a60;
  --text-light:    #1a1815;
  --muted-light:   #6b5f52;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  28px;

  --font-display: 'Space Grotesk', -apple-system, sans-serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --nav-h: 68px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ---- Type scale ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
}
h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { line-height: 1.75; }

/* ---- Layout ---- */
.container  { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ---- Mono label ---- */
.mono-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--amber-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mono-label.light { color: var(--amber); }
.mono-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber-bright);
  display: inline-block;
  box-shadow: 0 0 6px var(--amber-bright);
}

/* ---- Section heading ---- */
.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.section-kicker.on-dark { color: var(--amber-bright); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-amber {
  background: var(--amber);
  color: #fff;
}
.btn-amber:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(43,211,251,0.35);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--dark-border-2);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost-light {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--light-border);
}
.btn-ghost-light:hover {
  background: var(--light-2);
  border-color: #c8b99a;
}
.btn-dark {
  background: var(--text-light);
  color: var(--light);
}
.btn-dark:hover {
  background: #2a2520;
  transform: translateY(-1px);
}
.btn-lg { padding: 15px 30px; font-size: 0.95rem; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(14,13,11,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
}
.nav.light-nav {
  background: rgba(248,245,239,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border);
}
.nav.light-nav .nav-wordmark  { color: var(--text-light); }
.nav.light-nav .nav-links a   { color: #4a3f35; }
.nav.light-nav .nav-links a:hover { color: var(--text-light); }
.nav.light-nav .nav-toggle span   { background: var(--text-light); }

.nav-inner {
  width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
}
.nav-mark {
  width: 36px; height: 36px;
  background: transparent;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.nav-mark img { width: 36px; height: 36px; object-fit: contain; display: block; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(237,233,224,0.7);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }
.nav.light-nav .nav-links a.active { color: var(--text-light); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 26px; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; height: 1.5px; border-radius: 2px;
  background: var(--text-dark); transition: all 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  padding: 20px 28px; flex-direction: column; gap: 2px;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 500;
  color: rgba(237,233,224,0.75);
  transition: background 0.15s, color 0.15s;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.05); color: var(--text-dark); }
.nav-mobile .btn { margin-top: 10px; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative; overflow: hidden;
}
.hero {
  --glow-x: 65%;
  --glow-y: 40%;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at var(--glow-x) var(--glow-y), rgba(43,211,251,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at -5% 80%, rgba(43,211,251,0.05) 0%, transparent 55%);
  pointer-events: none;
  transition: background 0.6s ease;
}
/* Subtle warm grain */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none; opacity: 0.6;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.hero-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(43,211,251,0.25);
  border-radius: 100px;
  background: rgba(43,211,251,0.06);
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber-bright);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-draw 0.8s ease 0.6s forwards;
}
@keyframes underline-draw { to { transform: scaleX(1); } }
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted-dark);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Status card (right side of hero) */
.hero-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-border-2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  min-width: 260px;
  flex-shrink: 0;
}
.hero-card-header {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: space-between;
}
.hero-card-header span { color: var(--amber-bright); }
.hero-card-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-key {
  font-family: var(--font-mono);
  font-size: 0.73rem;
  color: var(--muted-dark);
}
.hero-card-val {
  font-family: var(--font-mono);
  font-size: 0.73rem;
  color: var(--text-dark);
  display: flex; align-items: center; gap: 6px;
}
.status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  flex-shrink: 0;
}
.hero-card-footer {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted-dark);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--dark-border);
}

/* ============================================
   PITCH SECTION (light)
   ============================================ */
.pitch-section {
  background: var(--light);
  position: relative;
  z-index: 1;
}
.pitch-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.pitch-left h2 { margin-bottom: 20px; }
.pitch-left h2 em {
  font-style: italic;
  color: var(--muted-light);
}
.pitch-left p {
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.pitch-right { padding-top: 8px; }
.pitch-point {
  padding: 22px 0;
  border-bottom: 1px solid var(--light-border);
  display: flex; gap: 18px; align-items: flex-start;
}
.pitch-point:first-child { border-top: 1px solid var(--light-border); }
.pitch-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--amber);
  padding-top: 3px;
  flex-shrink: 0;
  width: 24px;
}
.pitch-point h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.pitch-point p { font-size: 0.88rem; color: var(--muted-light); line-height: 1.7; margin: 0; }

/* ============================================
   SERVICES (dark)
   ============================================ */
.services-section { background: var(--dark); }
.services-section h2 { color: var(--text-dark); max-width: 520px; margin-bottom: 56px; }

.services-list { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--dark-border);
  align-items: start;
}
.service-item:first-child { border-top: 1px solid var(--dark-border); }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted-dark);
  padding-top: 4px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 12px;
}
.service-name-icon {
  width: 36px; height: 36px;
  background: rgba(43,211,251,0.1);
  border: 1px solid rgba(43,211,251,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-name-icon svg { width: 16px; height: 16px; }
.service-desc {
  font-size: 0.9rem;
  color: var(--muted-dark);
  line-height: 1.75;
}

/* ============================================
   PRICING (light)
   ============================================ */
.pricing-section { background: var(--light); }
.pricing-intro { max-width: 560px; margin-bottom: 56px; }
.pricing-intro h2 { margin-bottom: 12px; }
.pricing-intro p { color: var(--muted-light); font-size: 0.95rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-card {
  background: var(--light);
  padding: 40px 36px;
  position: relative;
  transform-style: preserve-3d;
  transition: background 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.pricing-card:hover { background: var(--light-2); }
.pricing-card.featured {
  background: var(--dark);
  box-shadow: 0 0 0 1px rgba(43,211,251,0.2), 0 8px 48px rgba(43,211,251,0.12);
}
.pricing-card.featured:hover { background: var(--dark-2); }
.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-tier { color: var(--muted-dark); }
.pricing-card.featured .pricing-tier-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--amber-subtle);
  border: 1px solid rgba(43,211,251,0.25);
  border-radius: 100px;
  color: var(--amber-bright);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 8px;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-name { color: var(--text-dark); }
.pricing-tagline {
  font-size: 0.88rem; color: var(--muted-light);
  margin-bottom: 32px;
  line-height: 1.6;
}
.pricing-card.featured .pricing-tagline { color: var(--muted-dark); }
.pricing-features-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.pf-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.87rem; color: #3a3228; line-height: 1.5;
}
.pricing-card.featured .pf-item { color: rgba(237,233,224,0.8); }
.pf-check {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 1px;
}
.pf-check svg { width: 16px; height: 16px; stroke: var(--amber); fill: none; stroke-width: 2.5; }
.pricing-card.featured .pf-check svg { stroke: var(--amber-bright); }
.pricing-cta { width: 100%; justify-content: center; }

/* Price display */
.pricing-tier-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-price {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-border);
}
.pricing-card.featured .pricing-price { border-color: var(--dark-border); }
.pricing-consult {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-light);
  line-height: 1.3;
}
.pricing-plus {
  color: var(--amber);
  font-weight: 700;
}
.pricing-consult-note {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted-light);
  letter-spacing: 0.03em;
  margin-top: 6px;
  display: block;
}

/* ============================================
   PROCESS / HOW IT WORKS (light)
   ============================================ */
.process-section { background: var(--light); }
.process-intro { max-width: 560px; margin-bottom: 64px; }
.process-intro h2 { margin-bottom: 12px; }
.process-intro p  { color: var(--muted-light); font-size: 0.95rem; line-height: 1.8; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 52px;
}
.process-step {
  background: var(--light);
  padding: 44px 38px;
  transition: background 0.2s;
}
.process-step:hover { background: var(--light-2); }
.process-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--amber);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 20px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 12px; }
.process-step p  { font-size: 0.9rem; color: var(--muted-light); line-height: 1.75; }

.process-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.process-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted-light);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================
   COMPARISON SECTION (dark)
   ============================================ */
.compare-section { background: var(--dark-2); }
.compare-intro { max-width: 580px; margin-bottom: 52px; }
.compare-intro h2 { color: var(--text-dark); margin-bottom: 12px; }
.compare-intro p  { color: var(--muted-dark); font-size: 0.95rem; line-height: 1.8; }

.compare-table { width: 100%; border-collapse: collapse; }
.compare-table thead tr th {
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; text-align: left;
}
.compare-table thead tr th:first-child { color: var(--muted-dark); width: 36%; }
.compare-table thead tr th.col-us {
  color: var(--amber-bright);
  background: rgba(43,211,251,0.08);
  border: 1px solid rgba(43,211,251,0.18);
  border-bottom: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.compare-table thead tr th.col-them { color: var(--muted-dark); }

.compare-table tbody tr { border-bottom: 1px solid var(--dark-border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr td {
  padding: 15px 20px;
  font-size: 0.88rem; vertical-align: top;
}
.compare-table tbody tr td:first-child {
  color: var(--text-dark); font-weight: 500;
  font-family: var(--font-display); font-size: 0.9rem;
}
.compare-table tbody tr td.col-us {
  background: rgba(43,211,251,0.05);
  border-left: 1px solid rgba(43,211,251,0.18);
  border-right: 1px solid rgba(43,211,251,0.18);
  color: var(--text-dark);
}
.compare-table tbody tr:last-child td.col-us {
  border-bottom: 1px solid rgba(43,211,251,0.18);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.compare-table tbody tr td.col-them { color: var(--muted-dark); }
.compare-val {
  display: flex; align-items: flex-start; gap: 8px;
}
.compare-check { color: var(--amber-bright); flex-shrink: 0; margin-top: 1px; }
.compare-x     { color: #4a4640; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 640px) {
  .compare-table thead tr th,
  .compare-table tbody tr td { padding: 12px 14px; }
  .compare-table tbody tr td:first-child { font-size: 0.82rem; }
  .compare-table tbody tr td { font-size: 0.82rem; }
}

/* ============================================
   FAQ SECTION (light)
   ============================================ */
.faq-section { background: var(--light); }
.faq-intro { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.faq-intro h2 { margin-bottom: 10px; }
.faq-intro p  { color: var(--muted-light); font-size: 0.95rem; }

.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-border); }
.faq-item:first-child { border-top: 1px solid var(--light-border); }
.faq-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 0; text-align: left;
  font-family: var(--font-display);
  font-size: 0.97rem; font-weight: 600;
  color: var(--text-light);
  background: none; border: none; cursor: pointer;
  transition: color 0.15s;
}
.faq-trigger:hover { color: var(--amber); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1.5px solid var(--light-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, border-color 0.15s, background 0.15s;
}
.faq-icon svg { width: 10px; height: 10px; stroke: var(--muted-light); stroke-width: 2.5; fill: none; transition: stroke 0.15s; }
.faq-item.open .faq-trigger { color: var(--amber); }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--amber-subtle);
  border-color: rgba(43,211,251,0.3);
}
.faq-item.open .faq-icon svg { stroke: var(--amber); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  font-size: 0.92rem; color: var(--muted-light); line-height: 1.85;
  max-width: 620px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.4s ease;
  padding-bottom: 0;
}
.faq-body a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.faq-item.open .faq-body { max-height: 500px; padding-bottom: 20px; }

/* ============================================
   ABOUT SECTION (light-2)
   ============================================ */
.about-strip {
  background: var(--light-2);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}
.about-strip-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.about-strip h2 { margin-bottom: 20px; }
.about-strip h2 em { font-style: italic; color: var(--muted-light); }
.about-strip p {
  font-size: 0.97rem; color: var(--muted-light);
  line-height: 1.85; margin-bottom: 14px;
}
.about-strip p:last-of-type { margin-bottom: 28px; }
.about-strip-right { display: flex; flex-direction: column; gap: 2px; }
.about-fact {
  padding: 20px 0;
  border-bottom: 1px solid var(--light-border);
}
.about-fact:first-child { border-top: 1px solid var(--light-border); }
.about-fact-label {
  font-family: var(--font-mono);
  font-size: 0.68rem; color: var(--amber);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 4px;
}
.about-fact-value {
  font-family: var(--font-display);
  font-size: 0.97rem; font-weight: 600;
  color: var(--text-light);
}

/* ============================================
   CTA BANNER (dark)
   ============================================ */
.cta-banner {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(43,211,251,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.cta-banner h2 { color: var(--text-dark); max-width: 540px; margin-bottom: 10px; }
.cta-banner p { color: var(--muted-dark); font-size: 0.95rem; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 64px) 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% -10%, rgba(43,211,251,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 { color: var(--text-dark); margin: 14px 0 18px; }
.page-hero p  { font-size: 1.05rem; color: var(--muted-dark); max-width: 520px; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--light-border);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-block-left {}
.service-block-icon {
  width: 52px; height: 52px;
  background: var(--amber-subtle);
  border: 1px solid rgba(43,211,251,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-block-icon svg { width: 22px; height: 22px; }
.service-block-left h2 { font-size: 1.7rem; margin-bottom: 14px; }
.service-block-left p  { color: var(--muted-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.service-block-right { padding-top: 4px; }
.service-detail-list { display: flex; flex-direction: column; gap: 0; }
.service-detail-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-border);
}
.service-detail-item:first-child { border-top: 1px solid var(--light-border); }
.sdi-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--amber-subtle);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.sdi-icon svg { width: 13px; height: 13px; stroke: var(--amber); fill: none; stroke-width: 2.5; }
.sdi-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; font-family: var(--font-display); }
.sdi-desc  { font-size: 0.83rem; color: var(--muted-light); line-height: 1.6; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-mission {
  background: var(--dark);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.about-mission::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(43,211,251,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.about-mission-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  position: relative; z-index: 1;
}
.about-mission h2 { color: var(--text-dark); margin-bottom: 20px; }
.about-mission p  { color: var(--muted-dark); line-height: 1.85; margin-bottom: 14px; font-size: 0.97rem; }
.about-mission .btn { margin-top: 10px; }

.about-side-list { display: flex; flex-direction: column; gap: 0; padding-top: 8px; }
.about-side-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--dark-border);
}
.about-side-item:first-child { border-top: 1px solid var(--dark-border); }
.about-side-label {
  font-family: var(--font-mono);
  font-size: 0.68rem; color: var(--amber-bright);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.about-side-text { font-size: 0.9rem; color: var(--muted-dark); line-height: 1.7; }

.values-section { background: var(--light); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.value-tile {
  background: var(--light);
  padding: 36px 32px;
  transition: background 0.2s;
}
.value-tile:hover { background: var(--light-2); }
.value-tile-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--amber);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: block;
}
.value-tile h3 { margin-bottom: 10px; font-size: 1rem; }
.value-tile p  { font-size: 0.87rem; color: var(--muted-light); line-height: 1.7; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--light); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 64px; align-items: start;
}
.contact-lhs h2  { margin-bottom: 14px; }
.contact-lhs > p { color: var(--muted-light); margin-bottom: 40px; font-size: 0.95rem; line-height: 1.8; }
.contact-meta { display: flex; flex-direction: column; gap: 0; }
.contact-meta-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-border);
}
.contact-meta-item:first-child { border-top: 1px solid var(--light-border); }
.cmi-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--amber-subtle);
  border: 1px solid rgba(43,211,251,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.cmi-icon svg { width: 16px; height: 16px; stroke: var(--amber); fill: none; stroke-width: 2; }
.cmi-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--muted-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.cmi-value { font-size: 0.9rem; font-weight: 500; color: var(--text-light); }

.contact-form-wrap {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form-wrap > p { font-size: 0.87rem; color: var(--muted-dark); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border-2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.15s, background 0.15s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-dark); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(43,211,251,0.04);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6a60' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.form-group select option { background: var(--dark-2); color: var(--text-dark); }
.form-submit { width: 100%; justify-content: center; }
.form-success {
  display: none; text-align: center; padding: 28px;
  background: rgba(43,211,251,0.06);
  border: 1px solid rgba(43,211,251,0.2);
  border-radius: var(--radius-md);
  margin-top: 12px;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--amber-bright); font-size: 1rem; margin-bottom: 6px; }
.form-success p  { color: var(--muted-dark); font-size: 0.87rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  padding: 64px 0 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-mark { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-mark .nav-mark { background: transparent; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.03em;
}
.footer-tagline { font-size: 0.87rem; color: var(--muted-dark); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(237,233,224,0.5); transition: color 0.15s; }
.footer-links a:hover { color: var(--text-dark); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted-dark); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--muted-dark); transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--text-dark); }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--amber);
  z-index: 9999;
  box-shadow: 0 0 8px rgba(43,211,251,0.7);
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ============================================
   CURSOR SPOTLIGHT (dark sections)
   ============================================ */
.cursor-spotlight {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,211,251,0.055) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ============================================
   FADE-UP ANIMATION
   ============================================ */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   SEO DEMO SECTION
   ============================================ */

.seo-demo-section { background: var(--light); }

.seo-demo-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 40px;
}
.seo-demo-lead {
  font-size: 1.05rem;
  color: var(--muted-light);
  margin-top: 12px;
}

.seo-demo-wrap { max-width: 800px; margin: 0 auto; }

/* Rank-climb list */
.rk-wrap {
  position: relative;
  overflow: hidden;
}
.rk-list {
  position: relative;
  /* height set by JS after measuring rows */
}
.rk-row {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #f1f3f4;
  transition: top 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s ease,
              box-shadow 0.4s ease;
  height: 72px;
  box-sizing: border-box;
}
.rk-row:last-child { border-bottom: none; }

.rk-pos {
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.rk-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: #9aa0a6;
  transition: color 0.4s;
}

.rk-pin {
  width: 14px;
  height: 20px;
  flex-shrink: 0;
  transition: filter 0.4s;
}

.rk-info { flex: 1; min-width: 0; }
.rk-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a0dab;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  transition: color 0.4s;
}
.rk-stars { font-size: 0.72rem; margin-bottom: 2px; }
.rk-rc    { color: #70757a; }
.rk-meta  { font-size: 0.7rem; color: #70757a; }

/* Scoops row — amber pin, subtle left accent */
.rk-scoops {
  border-left: 3px solid var(--amber);
}
.rk-scoops-name { color: var(--amber) !important; }
.rk-scoops .rk-num { color: var(--amber); }

/* Winner state */
.rk-scoops.rk-won {
  background: linear-gradient(90deg, #fffbf0 0%, #fff 100%);
  box-shadow: 0 2px 16px rgba(43,211,251,0.15);
  border-left-color: var(--amber);
}
.rk-scoops.rk-won .rk-num { color: var(--amber); font-size: 1rem; }
.rk-scoops.rk-won .rk-name { color: var(--amber); }

/* Winner badge — hidden until #1 */
.rk-winner-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--amber);
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.rk-winner-badge.rk-badge-in {
  opacity: 1;
  transform: scale(1);
}

/* Moving row highlight — class added/removed on each swap */
.rk-moving {
  box-shadow: 0 4px 20px rgba(43,211,251,0.25);
  z-index: 2;
}


/* Mac window shell */
.mac-window {
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(0,0,0,0.06),
    0 8px 24px rgba(0,0,0,0.10),
    0 32px 72px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.10);
}
.mac-titlebar {
  background: #2c2c2e;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 0;
}
.mac-dots { display: flex; gap: 7px; flex-shrink: 0; }
.mac-dot  { width: 13px; height: 13px; border-radius: 50%; display: block; }
.mac-red    { background: #ff5f57; }
.mac-yellow { background: #febc2e; }
.mac-green  { background: #28c840; }

.mac-urlbar {
  flex: 1;
  background: #3a3a3c;
  border-radius: 7px;
  height: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  font-size: 0.68rem;
  color: #9a9a9e;
  margin: 0 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mac-urlbar-spacer { width: 60px; flex-shrink: 0; }

.mac-body { background: #fff; }

/* Google top bar */
.g-topbar {
  padding: 14px 20px 0;
  border-bottom: 1px solid #e8eaed;
}
.g-logo {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  display: inline-block;
  font-family: Arial, sans-serif;
}
.gB { color: #4285f4; }
.gR { color: #ea4335; }
.gY { color: #fbbc05; }
.gG { color: #34a853; }

.g-searchbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #dfe1e5;
  border-radius: 24px;
  padding: 7px 16px;
  max-width: 500px;
  margin-bottom: 10px;
}
.g-q { font-size: 0.82rem; color: #202124; }
.g-navrow { display: flex; gap: 0; }
.g-navlink {
  padding: 7px 14px;
  font-size: 0.78rem;
  color: #5f6368;
  cursor: default;
}
.g-navlink-active {
  color: #1a73e8;
  border-bottom: 3px solid #1a73e8;
}
.g-meta {
  font-size: 0.7rem;
  color: #70757a;
  padding: 7px 20px 4px;
}
.g-meta-dim { color: #9aa0a6; }

/* Local pack */
.g-pack {
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid #dfe1e5;
  border-radius: 8px;
  overflow: hidden;
  margin: 6px 20px 14px;
}
.g-pack-map { border-right: 1px solid #dfe1e5; }
.g-pack-map svg { width: 100%; height: 100%; display: block; }

.g-listing {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 12px;
  border-bottom: 1px solid #f1f3f4;
  transition: background 0.12s;
}
.g-listing:hover { background: #f8f9fa; }
.g-listing-last { border-bottom: none; }
.g-listing-top { background: #fffbf2; }
.g-listing-top:hover { background: #fff7e6; }

.g-listing-n {
  font-size: 0.72rem;
  font-weight: 700;
  color: #9aa0a6;
  min-width: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.g-n-top { color: var(--amber); font-size: 0.8rem; }

.g-biz-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a0dab;
  margin-bottom: 2px;
}
.g-biz-top { color: var(--amber); }

.g-verified {
  display: inline-block;
  background: #e6f4ea;
  color: #34a853;
  border-radius: 3px;
  padding: 1px 4px;
  font-size: 0.65rem;
  font-weight: 700;
  vertical-align: middle;
}

.g-stars { font-size: 0.74rem; margin-bottom: 2px; }
.g-star-fill  { color: #fbbc04; }
.g-star-empty { color: #ddd; }
.g-rcount { font-size: 0.7rem; color: #70757a; }

.g-biz-meta { font-size: 0.7rem; color: #70757a; }
.g-open   { color: #34a853; font-weight: 600; }
.g-closed { color: #ea4335; }

/* Organic results */
.g-organic { padding: 0 20px 16px; }
.g-organic-faded { opacity: 0.55; }

.g-oresult { margin-bottom: 12px; }
.g-oresult-top { /* not faded */ }

.g-ourl      { font-size: 0.7rem; color: #202124; margin-bottom: 2px; }
.g-otitle    { font-size: 0.82rem; color: #1a0dab; font-weight: 500; margin-bottom: 2px; }
.g-otitle-top { color: var(--amber); }
.g-osnippet  { font-size: 0.72rem; color: #4d5156; line-height: 1.5; }

/* Rank pill */
.g-rank-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 500;
  margin-top: 4px;
  flex-wrap: wrap;
}
.g-rank-before {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.g-rank-after {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.g-rank-arrow { font-size: 1rem; font-weight: 800; color: #34a853; }
.g-rank-name { font-weight: 700; }
.g-rank-pos strong { font-weight: 800; }

/* Panel visibility */
.seo-panel { display: block; }
.seo-panel-hidden { display: none; }

/* CTA note below window */
.seo-demo-cta {
  text-align: center;
  color: var(--muted-light);
  font-size: 0.9rem;
  margin-top: 22px;
}
.seo-demo-cta a {
  color: var(--amber);
  font-weight: 600;
  text-decoration: none;
}
.seo-demo-cta a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
  .g-pack { grid-template-columns: 1fr; }
  .g-pack-map { display: none; }
  .mac-urlbar { font-size: 0.58rem; }
}

/* ============================================
   EMAIL & DOMAIN DEMO (standalone)
   ============================================ */
.ed-demo-section { background: var(--light-2); }
.ed-demo-intro { text-align: center; margin-bottom: 48px; }
.ed-demo-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.ed-demo-wrap { max-width: 800px; margin: 0 auto; }

.ed-mac-body { display: flex; min-height: 210px; }
.ed-domain-col { flex: 1; padding: 14px 16px; display: flex; flex-direction: column; }
.ed-email-col  { flex: 1; padding: 14px 14px 14px 16px; display: flex; flex-direction: column; gap: 0; }
.ed-divider    { width: 1px; background: #f0f2f4; flex-shrink: 0; }
.ed-col-title  { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px; }

/* Domain panels */
.ed-panels-wrap { position: relative; flex: 1; }
.ed-panel-before,
.ed-panel-after {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; flex-direction: column; gap: 6px;
  transition: opacity 0.45s ease;
}
.ed-panel-before { opacity: 1; }
.ed-panel-after  { opacity: 0; pointer-events: none; }

.ed-search-bar {
  display: flex; align-items: center; gap: 6px;
  background: #f0f2f5; border-radius: 6px; padding: 7px 10px;
  font-size: 0.74rem;
}
.ed-query-wrap { display: inline-flex; align-items: center; }
.ed-search-query { color: #1a1815; font-weight: 500; }
.ed-type-cursor {
  display: inline-block; width: 1px; height: 0.85em;
  background: #1a1815; vertical-align: middle;
  margin-left: 2px;
  animation: ed-blink 0.75s step-end infinite;
  transition: opacity 0.15s ease;
}
@keyframes ed-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.ed-type-cursor.is-typing { animation-play-state: paused; opacity: 1; }
.ed-type-cursor.is-hidden { opacity: 0; animation-play-state: paused; }
.ed-avail-row { display: flex; align-items: center; gap: 7px; opacity: 0; transition: opacity 0.4s ease; }
.ed-avail-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.ed-avail-name { font-size: 0.76rem; font-weight: 600; color: #1a1815; flex: 1; }
.ed-avail-tag  { font-size: 0.63rem; font-weight: 700; color: var(--amber); background: rgba(43,211,251,0.1); padding: 2px 7px; border-radius: 10px; }
.ed-register-btn {
  align-self: flex-start; margin-top: 2px;
  background: #1a1815; color: #fff;
  font-size: 0.71rem; font-weight: 600;
  padding: 6px 14px; border-radius: 6px;
  opacity: 0;
  transition: background 0.3s ease, opacity 0.3s ease;
}
.ed-register-btn.ed-busy { background: #6b7280; opacity: 0.75; }
.ed-register-btn.ed-done { background: var(--amber); opacity: 1; }

.ed-active-row { display: flex; align-items: flex-start; gap: 9px; }
.ed-ck-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(43,211,251,0.12); color: var(--amber);
  border-radius: 50%; font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ed-active-name { font-size: 0.76rem; font-weight: 600; color: #1a1815; }
.ed-active-sub  { font-size: 0.67rem; color: var(--text-muted); margin-top: 1px; }

/* Email column */
.ed-field {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; border-bottom: 1px solid #f0f2f4; font-size: 0.76rem;
}
.ed-fk { color: var(--text-muted); font-weight: 500; flex-shrink: 0; width: 44px; }
.ed-fv { color: #1a1815; }
.ed-from-inner { display: flex; align-items: center; gap: 6px; }
.ed-avatar {
  width: 20px; height: 20px; background: #ccc; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: #fff; flex-shrink: 0;
  transition: background 0.5s ease;
}
.ed-from-addr { color: #1a1815; font-size: 0.76rem; transition: opacity 0.3s ease, color 0.4s ease; }
.ed-msg-area { padding: 8px 0 0; }
.ed-msg-line   { height: 6px; background: #e8eaed; border-radius: 3px; margin-bottom: 5px; width: 82%; }
.ed-msg-line-s { width: 55%; }
.ed-sig { position: relative; margin-top: 10px; min-height: 36px; }
.ed-sig-before,
.ed-sig-after { transition: opacity 0.4s ease; }
.ed-sig-before { opacity: 1; }
.ed-sig-after  { opacity: 0; pointer-events: none; position: absolute; top: 0; left: 0; right: 0; display: flex; align-items: flex-start; gap: 7px; }
.ed-sig-logo   { width: 28px; height: 28px; background: var(--amber); border-radius: 5px; flex-shrink: 0; }
.ed-sig-lines  { display: flex; flex-direction: column; gap: 3px; }
.ed-sig-bar    { height: 6px; border-radius: 3px; }
.ed-sig-plain   { background: #b0b4bc; width: 96px; }
.ed-sig-name    { background: #0d2e38; width: 72px; }
.ed-sig-company { background: #6b7280; width: 106px; }
.ed-sig-email   { background: var(--amber); width: 122px; opacity: 0.75; }

.ed-demo-cta { text-align: center; margin-top: 20px; font-size: 0.93rem; color: var(--text-muted); }
.ed-demo-cta a { color: var(--amber); font-weight: 600; text-decoration: none; }
.ed-demo-cta a:hover { text-decoration: underline; }

@media (max-width: 580px) {
  .ed-mac-body { flex-direction: column; }
  .ed-divider  { width: 100%; height: 1px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .pitch-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-actions { align-items: flex-start; flex-direction: row; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .section { padding: 72px 0; }
  .nav-links, .nav-actions .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: flex; }
  .service-item { grid-template-columns: 32px 1fr; gap: 16px; }
  .service-name  { grid-column: 2; }
  .service-desc  { grid-column: 2; }
  .pricing-grid { grid-template-columns: 1fr; gap: 2px; background: var(--light-border); }
  .service-block { grid-template-columns: 1fr; gap: 36px; }
  .about-mission-inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-banner-inner { gap: 32px; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .cta-banner-actions .btn { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
