@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0a0e0d;
  --surface: #0f1613;
  --surface-2: #131c18;
  --border: rgba(74, 222, 158, 0.14);
  --border-strong: rgba(74, 222, 158, 0.3);
  --emerald: #4ADE9E;
  --emerald-deep: #0F6E56;
  --emerald-dim: #1a3a2f;
  --text: #f5f5f3;
  --text-secondary: #d9d9d9;
  --text-muted: #8a938e;
  --font-display: 'Space Grotesk', sans-serif;
  --font-voice: 'Instrument Serif', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* Ambient glow backgrounds */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-emerald { background: radial-gradient(circle, rgba(74,222,158,0.22) 0%, transparent 70%); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 13, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo span { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--emerald); }
.nav-cta {
  padding: 11px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  color: #06120d;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 24px rgba(74, 222, 158, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 32px rgba(74, 222, 158, 0.4); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

@media (max-width: 880px) {
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; bottom: 0; z-index: 150; background: linear-gradient(180deg, #0d1512, #0a0e0d 40%); flex-direction: column; justify-content: flex-start; padding: 40px 32px; gap: 28px; transform: translateX(100%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; z-index: 160; position: relative; }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  background: rgba(74, 222, 158, 0.06);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--emerald);
  letter-spacing: 0.02em;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); }

/* Hero */
.hero {
  position: relative;
  padding: 100px 0 60px;
  text-align: left;
  overflow: hidden;
}
.hero .glow { width: 700px; height: 700px; top: -200px; left: 50%; transform: translateX(-50%); }
.hero-content { position: relative; z-index: 1; }
h1.hero-headline {
  font-family: var(--font-voice);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 28px 0 22px;
  max-width: 900px;
}
h1.hero-headline b, h1.hero-headline .accent { font-style: italic; background: linear-gradient(135deg, var(--emerald) 0%, #8ff5c5 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0;
  line-height: 1.65;
}

/* Video frame */
.video-frame {
  position: relative;
  max-width: 920px;
  margin: 56px auto 0;
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  padding: 10px;
  box-shadow: 0 0 80px rgba(74, 222, 158, 0.12), 0 40px 80px -20px rgba(0,0,0,0.6);
}
.video-frame video, .video-frame .video-placeholder {
  width: 100%;
  border-radius: 13px;
  display: block;
  aspect-ratio: 16/9;
  background: var(--surface-2);
}
.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  flex-direction: column;
  gap: 12px;
}
.play-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(74,222,158,0.4);
}
.play-icon::after { content: ''; width: 0; height: 0; border-style: solid; border-width: 8px 0 8px 14px; border-color: transparent transparent transparent #06120d; margin-left: 3px; }

/* Sections */
section { position: relative; padding: 48px 0; }
.section-tight { padding: 32px 0; }
.eyebrow { font-family: var(--font-mono); font-size: 12.5px; color: var(--emerald); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
h2.section-title {
  font-family: var(--font-voice);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.18;
  max-width: 720px;
}
.section-desc { font-size: 17px; color: var(--text-secondary); max-width: 620px; margin-top: 18px; line-height: 1.7; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Big idea bridge section */
.bridge { text-align: left; padding: 56px 0 24px; }
.bridge h2 { font-family: var(--font-voice); font-size: clamp(32px, 4.4vw, 50px); font-weight: 400; letter-spacing: -0.01em; max-width: 1000px; margin: 0 0 20px; line-height: 1.22; }
.bridge p { font-size: 18px; color: var(--text-secondary); max-width: 880px; margin: 0; line-height: 1.7; }

/* Stage list (problem framework) */
.stage-list { max-width: 1000px; margin: 56px 0 0; display: flex; flex-direction: column; }
.stage-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.stage-item:last-child { border-bottom: 1px solid var(--border); }
.stage-num { font-family: var(--font-mono); font-size: 13px; color: var(--emerald); }
.stage-text b { font-family: var(--font-display); font-weight: 600; font-size: 17px; display: block; margin-bottom: 4px; }
.stage-text span { color: var(--text-muted); font-size: 15px; }
.stage-final { border-top: 1px solid var(--border-strong) !important; background: rgba(74,222,158,0.04); margin-top: 4px; padding-left: 20px; padding-right: 20px; border-radius: 12px; }

/* Converging components — continuous horizontal marquee */
.converge-wrap { position: relative; margin: 20px 0 0; }
.marquee-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-outer:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.node {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  width: 148px;
  flex-shrink: 0;
  text-align: center;
}
.node-icon {
  width: 40px; height: 40px;
  margin: 0 auto 12px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--emerald-dim), var(--surface-2));
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald);
  font-size: 17px;
}
.node b { font-family: var(--font-display); font-size: 14px; font-weight: 600; display: block; }
.node span { font-size: 11.5px; color: var(--text-muted); display: block; margin-top: 4px; }
.connector { width: 44px; height: 1px; flex-shrink: 0; background: linear-gradient(90deg, var(--border-strong), var(--emerald), var(--border-strong)); position: relative; }
.connector::after { content: ''; position: absolute; top: -2px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); animation: flow 1.8s linear infinite; }
@keyframes flow { 0% { left: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% - 5px); opacity: 0; } }
.converge-label { text-align: center; margin-top: 22px; font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Live demo */
.demo-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.demo-card .glow { width: 500px; height: 500px; top: -150px; left: 50%; transform: translateX(-50%); }
.demo-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px; padding: 14px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: #06120d; font-weight: 600; font-size: 15px;
  box-shadow: 0 0 30px rgba(74,222,158,0.3);
  position: relative; z-index: 1;
}

/* Founder */
.founder { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center; }
.founder-photo { width: 100%; aspect-ratio: 1; border-radius: 20px; background: var(--surface-2); border: 1px solid var(--border); overflow: hidden; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-text p { font-size: 17px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.founder-name { font-family: var(--font-voice); font-weight: 400; font-size: 32px; margin-bottom: 6px; }
.founder-role { font-family: var(--font-mono); font-size: 13px; color: var(--emerald); margin-bottom: 24px; }
@media (max-width: 780px) { .founder { grid-template-columns: 1fr; } .founder-photo { max-width: 220px; margin: 0 auto; } }

/* Quote block */
.quote-block {
  border-left: 2px solid var(--emerald);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  font-family: var(--font-voice);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
}
.quote-cite { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); font-style: normal; }

/* Review marquee, continuous horizontal */
.review-marquee-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.review-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.review-marquee-outer:hover .review-marquee-track { animation-play-state: paused; }
.review-marquee-track .testimonial-card { width: 360px; flex-shrink: 0; }

/* Testimonial cards */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.testimonial-card p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--emerald-dim); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; color: var(--emerald); font-size: 14px; overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: 14.5px; }
.author-role { font-size: 13px; color: var(--text-muted); }

/* Fit lists */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.fit-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.fit-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.fit-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fit-card li { font-size: 15px; color: var(--text-secondary); padding-left: 20px; position: relative; line-height: 1.5; }
.fit-card li::before { content: '•'; position: absolute; left: 0; color: var(--emerald); font-size: 18px; line-height: 1.2; }
@media (max-width: 780px) { .fit-grid { grid-template-columns: 1fr; } }

/* Coaches band */
.coach-band {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.coach-band h3 { font-family: var(--font-voice); font-size: 30px; font-weight: 400; margin-bottom: 20px; max-width: 900px; }
.coach-band-list { list-style: none; display: flex; flex-direction: column; gap: 18px; max-width: 900px; }
.coach-band-list li { color: var(--text-secondary); line-height: 1.65; padding-left: 22px; position: relative; }
.coach-band-list li::before { content: '•'; position: absolute; left: 0; color: var(--emerald); font-size: 18px; line-height: 1.3; }
.coach-band p { color: var(--text-secondary); max-width: 460px; line-height: 1.6; }
.coach-link { display: inline-flex; align-items: center; gap: 6px; color: var(--emerald); font-weight: 600; font-size: 15px; margin-top: 18px; white-space: nowrap; }

/* Guarantee band */
.guarantee-band {
  text-align: left;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background: rgba(74,222,158,0.04);
  padding: 48px 44px;
}
.guarantee-band h3 { font-family: var(--font-voice); font-size: 28px; font-weight: 400; margin-bottom: 16px; }
.guarantee-band p { color: var(--text-secondary); max-width: 900px; margin: 0; line-height: 1.7; }

/* FAQ */
.faq-item { border-top: 1px solid var(--border); padding: 26px 0; max-width: 1000px; margin: 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { font-family: var(--font-display); font-weight: 600; font-size: 17px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-a { color: var(--text-secondary); font-size: 15.5px; line-height: 1.7; margin-top: 14px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-toggle { font-size: 20px; color: var(--emerald); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* Final CTA */
.final-cta { text-align: left; }
.final-cta h2 { max-width: 680px; margin: 0 auto 36px; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 15px 30px; border-radius: 100px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: #06120d; font-weight: 600; font-size: 15.5px;
  box-shadow: 0 0 32px rgba(74,222,158,0.3);
}
.btn-secondary {
  padding: 15px 30px; border-radius: 100px;
  border: 1px solid var(--border-strong);
  color: var(--text); font-weight: 500; font-size: 15.5px;
  background: var(--surface);
}

/* Lead magnets */
.magnet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; max-width: 780px; margin-left: auto; margin-right: auto; }
.magnet-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: left; transition: border-color 0.2s; }
.magnet-card:hover { border-color: var(--border-strong); }
.magnet-card b { font-family: var(--font-display); display: block; font-size: 15.5px; margin-bottom: 6px; }
.magnet-card span { font-size: 13.5px; color: var(--text-muted); }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 56px 0 40px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--text-muted); }
.footer-links a:hover { color: var(--emerald); }
.footer-copy { font-size: 13px; color: var(--text-muted); font-family: var(--font-mono); }

/* Services page specific */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; transition: border-color 0.25s, transform 0.25s; }
.service-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.service-num { font-family: var(--font-mono); font-size: 12px; color: var(--emerald); margin-bottom: 14px; display: block; }
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.65; }
@media (max-width: 780px) { .service-grid { grid-template-columns: 1fr; } }
.aims-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .aims-grid { grid-template-columns: 1fr; } }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.social-row { display: flex; gap: 14px; margin-top: 28px; }
.social-icon { width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface-2); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all 0.2s; }
.social-icon:hover { border-color: var(--emerald); color: var(--emerald); }
.phone-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; padding: 12px 20px; border-radius: 100px; border: 1px solid var(--border); background: var(--surface-2); color: var(--text); font-weight: 500; font-size: 15px; transition: all 0.2s; }
.phone-link:hover { border-color: var(--emerald); color: var(--emerald); }
.phone-icon { font-size: 15px; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }

.calendly-card {
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  padding: 6px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(74,222,158,0.1);
}
.calendly-card iframe { border-radius: 16px; display: block; min-height: 700px; }

.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.project-info .eyebrow { margin-bottom: 8px; }
.project-info h2 { margin-bottom: 16px; }
.project-info .section-desc { margin-top: 0; margin-bottom: 28px; }
.project-contact-line { display: block; font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--text); margin-top: 20px; }
.project-contact-line:hover { color: var(--emerald); }
.project-contact-hours { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.project-form { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--emerald); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
@media (max-width: 780px) { .project-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 780px) {
  .founder { text-align: left; }
  section { padding: 40px 0; }
  .coach-band { text-align: left; justify-content: flex-start; }
}

/* Expandable contact widget */
.contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.contact-fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(74,222,158,0.4), 0 0 0 0 rgba(74,222,158,0.4);
  animation: contact-pulse 2.5s infinite;
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
}
.contact-fab:hover { transform: scale(1.08); }
.contact-fab svg { width: 26px; height: 26px; }
.contact-fab .icon-close { display: none; }
.contact-widget.open .contact-fab { animation: none; }
.contact-widget.open .contact-fab .icon-chat { display: none; }
.contact-widget.open .contact-fab .icon-close { display: block; }
@keyframes contact-pulse {
  0% { box-shadow: 0 4px 20px rgba(74,222,158,0.4), 0 0 0 0 rgba(74,222,158,0.4); }
  70% { box-shadow: 0 4px 20px rgba(74,222,158,0.4), 0 0 0 14px rgba(74,222,158,0); }
  100% { box-shadow: 0 4px 20px rgba(74,222,158,0.4), 0 0 0 0 rgba(74,222,158,0); }
}

.contact-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.contact-widget.open .contact-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.contact-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 10px 18px 10px 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s, border-color 0.2s;
}
.contact-option:hover { transform: translateX(-4px); border-color: var(--emerald); }
.contact-option-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-option-icon svg { width: 18px; height: 18px; }
.contact-option-whatsapp .contact-option-icon { background: #25D366; }
.contact-option-email .contact-option-icon { background: var(--emerald); }
.contact-option span { font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--text); white-space: nowrap; }

@media (max-width: 780px) {
  .contact-widget { bottom: 18px; right: 18px; }
  .contact-fab { width: 52px; height: 52px; }
  .contact-fab svg { width: 22px; height: 22px; }
}

/* Blog listing */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.blog-tag { font-family: var(--font-mono); font-size: 12px; color: var(--emerald); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-family: var(--font-voice); font-size: 22px; font-weight: 400; margin: 14px 0 12px; line-height: 1.3; }
.blog-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.65; }

/* Article page */
.article-meta { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); margin-top: 20px; }
.article-body { max-width: 720px; margin: 0 auto; color: var(--text-secondary); font-size: 17px; line-height: 1.85; }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-family: var(--font-voice); font-weight: 400; font-size: 30px; color: var(--text); margin: 44px 0 18px; line-height: 1.25; }
.article-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--text); margin: 32px 0 12px; }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-callout { background: var(--surface); border: 1px solid var(--border-strong); border-radius: 16px; padding: 28px 32px; margin: 36px 0; }
.article-callout p { margin: 0; color: var(--text); font-size: 17px; }
.article-cta-inline { display: inline-block; margin-top: 8px; color: var(--emerald); font-weight: 600; }

/* Industry cards (Realtors / HVAC) */
.industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.industry-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.industry-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.industry-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.industry-body { padding: 32px; }
.industry-body h3 { font-family: var(--font-voice); font-weight: 400; font-size: 24px; margin-bottom: 18px; }
.industry-body ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.industry-body li { font-size: 15px; color: var(--text-secondary); padding-left: 20px; position: relative; line-height: 1.6; }
.industry-body li::before { content: '•'; position: absolute; left: 0; color: var(--emerald); font-size: 18px; line-height: 1.3; }
@media (max-width: 780px) { .industry-grid { grid-template-columns: 1fr; } }

/* Portfolio / case studies */
.case-study { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 48px; margin-bottom: 40px; }
.case-meta-row { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.case-meta-table { display: grid; grid-template-columns: auto auto; gap: 4px 20px; font-size: 13.5px; }
.case-meta-table .label { color: var(--text-muted); font-family: var(--font-mono); font-size: 12px; }
.case-meta-table .value { color: var(--text); font-weight: 500; }
.case-title { font-family: var(--font-voice); font-weight: 400; font-size: 30px; max-width: 560px; line-height: 1.2; }
.case-title .accent { font-style: italic; background: linear-gradient(135deg, var(--emerald) 0%, #8ff5c5 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.case-stat { background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 24px 16px; text-align: center; }
.case-stat b { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--emerald); display: block; }
.case-stat span { font-size: 12.5px; color: var(--text-muted); display: block; margin-top: 6px; }
.case-section-label { font-family: var(--font-mono); font-size: 12px; color: var(--emerald); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.case-h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 12px; }
.case-p { color: var(--text-secondary); font-size: 15.5px; line-height: 1.75; margin-bottom: 28px; }
.case-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.ba-col { border-radius: 14px; padding: 20px 22px; border: 1px solid var(--border); }
.ba-before { border-color: rgba(217, 119, 87, 0.3); }
.ba-after { border-color: var(--border-strong); }
.ba-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; margin-bottom: 12px; display: block; }
.ba-before .ba-label { color: #d97757; }
.ba-after .ba-label { color: var(--emerald); }
.ba-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ba-col li { font-size: 14px; color: var(--text-secondary); padding-left: 18px; position: relative; line-height: 1.5; }
.ba-before li::before { content: '✗'; position: absolute; left: 0; color: #d97757; font-size: 12px; }
.ba-after li::before { content: '✓'; position: absolute; left: 0; color: var(--emerald); font-size: 12px; }
.case-quote { border-left: 2px solid var(--emerald); padding: 4px 0 4px 24px; margin: 32px 0 20px; font-family: var(--font-voice); font-style: italic; font-size: 19px; line-height: 1.6; color: var(--text); }
.case-signature { font-size: 13.5px; color: var(--text-muted); }
.case-signature b { color: var(--text); font-weight: 600; }
@media (max-width: 780px) {
  .case-study { padding: 28px; }
  .case-stats { grid-template-columns: 1fr; }
  .case-before-after { grid-template-columns: 1fr; }
  .case-meta-table { grid-template-columns: auto 1fr; }
}

/* Final CTA heading — dancing text effect */
.final-cta .section-title { overflow: visible; }
.final-cta .word-dance {
  display: inline-block;
  animation: wordDance 2.8s ease-in-out infinite;
  animation-play-state: paused;
}
.final-cta .section-title.dance-active .word-dance {
  animation-play-state: running;
}
@keyframes wordDance {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(-1.5deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(6px) rotate(1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .final-cta .word-dance { animation: none; }
}

/* Services page — wide content marquee (Seven Parts) */
.service-marquee-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.service-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.service-marquee-outer:hover .service-marquee-track { animation-play-state: paused; }
.service-marquee-reverse { animation-name: marqueeReverse; }
@keyframes marqueeReverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.service-node-featured {
  position: relative;
  background: linear-gradient(135deg, rgba(74,222,158,0.08), var(--surface));
  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: 20px;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 60px rgba(74,222,158,0.18), inset 0 0 40px rgba(74,222,158,0.04);
  overflow: hidden;
}
.service-node-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, var(--emerald), transparent 40%, transparent 60%, var(--emerald));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.service-node-featured .service-node-num { display: inline-block; font-size: 13px; }
.service-node-featured h3 { font-family: var(--font-voice); font-weight: 400; font-size: 26px; margin: 10px 0 14px; background: linear-gradient(135deg, var(--emerald), #8ff5c5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.service-node-featured p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; max-width: 560px; margin: 0 auto; }
.service-node {
  position: relative;
  background: linear-gradient(135deg, rgba(74,222,158,0.06), var(--surface));
  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: 18px;
  padding: 28px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(74,222,158,0.1), inset 0 0 24px rgba(74,222,158,0.03);
  overflow: hidden;
}
.service-node::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, var(--emerald), transparent 45%, transparent 55%, var(--emerald));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.service-node-num { font-family: var(--font-mono); font-size: 12px; color: var(--emerald); display: block; margin-bottom: 12px; }
.service-node h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 10px; background: linear-gradient(135deg, var(--emerald), #8ff5c5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.service-node p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 780px) {
  .service-node { width: 260px; }
}

/* Soft, slow glow animation for all major headlines site-wide */
h1.hero-headline, h2.section-title {
  animation: headlineGlow 3.5s ease-in-out infinite;
}
@keyframes headlineGlow {
  0%, 100% {
    text-shadow: 0 0 0px rgba(74,222,158,0), 0 0 0px rgba(74,222,158,0);
    filter: brightness(1);
  }
  50% {
    text-shadow: 0 0 18px rgba(74,222,158,0.9), 0 0 40px rgba(74,222,158,0.5);
    filter: brightness(1.15);
  }
}
@media (prefers-reduced-motion: reduce) {
  h1.hero-headline, h2.section-title { animation: none; }
}
