/* ═══════════════════════════════════════
   SCAFFLD — Stylesheet
   Design: Minimal editorial, Augen.pro-inspired
════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark:    #111C28;
  --blue:    #22577A;
  --green:   #439775;
  --gray:    #D3D5D4;
  --light:   #F4F5F5;
  --white:   #FFFFFF;
  --font:    'Inter', system-ui, sans-serif;
  --outer:   clamp(24px, 5.5vw, 88px);
  --vpad:    clamp(80px, 10vw, 140px);
  --nav-h:   72px;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

body {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }
input { font-family: var(--font); outline: none; border: none; }


/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--outer);
}


/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* Sequential reveal for process steps */
.reveal-seq-1       { transition-delay: 0s; }
.reveal-seq-arrow-1 { transition-delay: 0.3s; }
.reveal-seq-2       { transition-delay: 0.55s; }
.reveal-seq-arrow-2 { transition-delay: 0.85s; }
.reveal-seq-3       { transition-delay: 1.1s; }


/* ── Typography ── */
.display-heading {
  font-size: clamp(4rem, 6.5vw, 8.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.display-heading-light { color: var(--white); }

.body-copy {
  font-size: clamp(1.4rem, 1.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(17,28,40,0.65);
  margin-bottom: 2.4rem;
}
.body-copy-light { color: rgba(255,255,255,0.75); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(24px, 4vw, 48px);
}
.section-label span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(17,28,40,0.4);
}
.section-label-light span { color: rgba(255,255,255,0.35); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--blue);
  transition: gap 0.2s ease;
}
.arrow-link:hover { gap: 16px; }
.arrow-link svg { flex-shrink: 0; }


/* ═══════════════════════════════════════
   NAV
════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--outer);
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: var(--dark);
  border-color: rgba(255,255,255,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark { flex-shrink: 0; }
.nav-wordmark {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-dot { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav-links a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}
.nav-cta-arrow { font-size: 1.2rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: var(--outer);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav ul { width: 100%; }
.mobile-nav li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav li span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
}
.mobile-nav li a {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}


/* ═══════════════════════════════════════
   HERO / AI CHAT
════════════════════════════════════════ */
.section-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) var(--outer) 60px;
}

.hero-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-heading {
  font-size: clamp(5rem, 9vw, 12rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  text-align: center;
}

.hero-sub {
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 480px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Chat Window */
.chat-window {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.chat-header-avatar {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.chat-header-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.chat-header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.35);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.chat-messages {
  min-height: 280px;
  max-height: 340px;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: none;
}
.chat-messages::-webkit-scrollbar { display: none; }

/* Message bubbles */
.chat-msg {
  display: flex;
  gap: 10px;
  max-width: 85%;
  animation: msgIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }

.chat-msg-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
}
.bot .chat-msg-bubble {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border-bottom-left-radius: 4px;
}
.user .chat-msg-bubble {
  background: var(--blue);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

/* Section link inside bot message */
.chat-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  transition: gap 0.2s ease;
}
.chat-section-link:hover { gap: 10px; }

/* Typing indicator */
.chat-typing {
  display: flex;
  gap: 10px;
  align-self: flex-start;
  animation: msgIn 0.35s ease;
}
.chat-typing-bubble {
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-typing-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: typing 1.2s ease-in-out infinite;
}
.chat-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.chat-typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

/* Chat Input */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 4px 4px 4px 16px;
}
.chat-input-row input {
  flex: 1;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 12px 0;
}
.chat-input-row input::placeholder { color: rgba(255,255,255,0.25); }

#chatSend {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
#chatSend:hover  { background: #3a8565; }
#chatSend:active { transform: scale(0.93); }

/* Hero scroll hint */
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}


/* ═══════════════════════════════════════
   SECTION BACKGROUNDS
════════════════════════════════════════ */
.section-light { background: var(--light); padding: var(--vpad) 0; }
.section-dark  { background: var(--dark);  padding: var(--vpad) 0; }
.section-brand { background: var(--blue);  padding: var(--vpad) 0; }


/* ═══════════════════════════════════════
   INTRO / PROBLEM
════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  margin-top: clamp(32px, 5vw, 56px);
}
@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; }
}
.intro-right { padding-top: 8px; }


/* ═══════════════════════════════════════
   COMPANY DETAILS
════════════════════════════════════════ */
.company-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
}

.company-heading-center {
  text-align: center;
  max-width: 900px;
}

.company-items {
  width: 100%;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.company-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.company-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.company-item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.company-item-num {
  color: var(--green);
  font-weight: 700;
}
.company-item-title {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.company-bottom { margin-top: clamp(48px, 6vw, 80px); }
.company-bottom-line {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.company-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 600px) {
  .company-meta { grid-template-columns: 1fr; gap: 16px; }
}
.company-meta-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 6px;
}
.company-meta-value {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}


/* ═══════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: clamp(48px, 6vw, 80px);
}
.process-steps .process-step-divider {
  align-self: start;
  padding-top: 85px; /* aligns arrow with center of 200px image */
}
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-step-divider { display: none; }
}

.process-step-divider {
  font-size: 6rem;
  font-weight: 300;
  color: rgba(17,28,40,0.25);
  padding: 0 24px;
  align-self: center;
  display: flex;
  align-items: center;
}

.process-step-num {
  font-size: clamp(6rem, 8vw, 10rem);
  font-weight: 900;
  color: rgba(17,28,40,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-step-icon {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  background: rgba(17,28,40,0.05);
}
.process-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step-tag {
  display: block;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.process-step-title {
  font-size: clamp(1.3rem, 1.6vw, 1.7rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--green);
  margin-bottom: 14px;
}

.process-step-copy {
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(17,28,40,0.55);
  margin-bottom: 16px;
}

.process-step-price {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  padding: 6px 14px;
  background: rgba(34,87,122,0.08);
  border-radius: 100px;
  border: 1px solid rgba(34,87,122,0.15);
}


/* Intro bullet list */
.intro-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 2.4rem;
}
.intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(1.4rem, 1.5vw, 1.65rem);
  line-height: 1.6;
  color: rgba(17,28,40,0.65);
}
.intro-list li::before {
  content: '→';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Intro feature image */
.intro-feature-image {
  margin-top: clamp(48px, 6vw, 80px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17,28,40,0.08);
  position: relative;
}
.intro-feature-img {
  width: 100%;
  height: auto;
  display: block;
}
.intro-feature-logo {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background: rgba(17,28,40,0.55);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.intro-feature-logo span {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: white;
}

/* ═══════════════════════════════════════
   CASE STUDIES
════════════════════════════════════════ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(48px, 6vw, 80px);
}
@media (max-width: 900px) {
  .cases-grid { grid-template-columns: 1fr; }
}

.case-card {
  background: rgba(67,151,117,0.05);
  border: 1px solid rgba(67,151,117,0.2);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.case-card:hover {
  background: rgba(67,151,117,0.11);
  border-color: rgba(67,151,117,0.45);
}

.case-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  padding: 5px 12px;
  background: rgba(67,151,117,0.12);
  border: 1px solid rgba(67,151,117,0.25);
  border-radius: 100px;
}

.case-headline {
  font-size: clamp(1.9rem, 2.3vw, 2.7rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Before box */
.case-before {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 16px 18px;
}

.case-box-label {
  font-size: 1.0rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}
.case-box-label-after { color: var(--green); }

.case-before-note {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-bottom: 12px;
}

.case-before-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-before-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4);
}
.case-before-list li::before {
  content: '×';
  color: rgba(255,100,100,0.65);
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Transform arrow */
.case-transform-arrow {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.55;
}

/* After box */
.case-after {
  background: rgba(67,151,117,0.1);
  border: 1px solid rgba(67,151,117,0.28);
  border-radius: 10px;
  padding: 16px 18px;
  flex: 1;
}

.case-after-text {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}

.case-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: 4px;
}
.case-cta:hover { gap: 12px; color: #5dc995; }


/* ═══════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-list {
  margin-top: clamp(48px, 6vw, 72px);
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid rgba(17,28,40,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(17,28,40,0.1); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--blue); }
.faq-q[aria-expanded="true"] { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-a.open { max-height: 400px; }
.faq-a p {
  padding-bottom: 28px;
  font-size: clamp(1.4rem, 1.5vw, 1.65rem);
  line-height: 1.75;
  color: rgba(17,28,40,0.62);
}


/* ═══════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-photo {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.about-stat {
  background: rgba(34,87,122,0.06);
  border: 1px solid rgba(34,87,122,0.1);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.about-stat-num {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(17,28,40,0.45);
  line-height: 1.4;
}


/* ═══════════════════════════════════════
   BOOK A CALL
════════════════════════════════════════ */
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 768px) {
  .book-inner { grid-template-columns: 1fr; }
}

.calendly-placeholder {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendly-placeholder-inner {
  text-align: center;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.calendly-placeholder-inner p {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.calendly-sub {
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.35) !important;
}
.calendly-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  transition: background 0.2s ease;
}
.calendly-btn:hover { background: var(--gray); }


/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 600px) {
  .footer-top { flex-direction: column; gap: 24px; align-items: flex-start; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-wordmark {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.2);
}
.footer-tagline { color: rgba(255,255,255,0.15); }
.footer-domain {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.15);
}


/* ═══════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
