/* =============================================
   DREAMTECH CONNECT — Premium Redesign
   Colors: #fd52f4 | #ffacff | #292929 | #545454
   Font: Nunito
   ============================================= */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TOKENS ---- */
:root {
  --pink:         #fd52f4;
  --pink-light:   #ffacff;
  --dark:         #1c1c1c;
  --dark-2:       #292929;
  --text:         #545454;
  --text-light:   #888899;
  --white:        #ffffff;
  --off-white:    #f7f7fb;
  --border:       #e8e8f0;
  --grad:         linear-gradient(135deg, #4a7fda 0%, #9333ea 50%, #fd52f4 100%);

  --font:         'Nunito', 'Helvetica Neue', Arial, sans-serif;
  --radius:       12px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --section:      120px;
  --container:    1200px;
}

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

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- EYEBROW ---- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pink);
  flex-shrink: 0;
}
.eyebrow-dark {
  color: var(--pink);
}

/* ---- HEADINGS ---- */
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(253,82,244,0.35);
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(253,82,244,0.5);
  background: #e040e8;
}

.btn.full-width { width: 100%; }

/* ---- LINK ARROW ---- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--pink);
  transition: gap 0.2s var(--ease);
  gap: 6px;
}
.link-arrow:hover { gap: 12px; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.05s; }
.reveal:nth-child(5) { transition-delay: 0.15s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }


/* ==============================================
   NAVIGATION
   ============================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(28, 28, 28, 0.0);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

/* Logo: white on dark hero, dark once scrolled */
.nav-logo img {
  height: 72px;
  width: auto;
  filter: brightness(1);
  transition: filter 0.3s;
}
.nav.scrolled .nav-logo img {
  filter: brightness(1);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s var(--ease);
}
.nav-links li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Once scrolled, invert link colors */
.nav.scrolled .nav-links li a {
  color: var(--text);
}
.nav.scrolled .nav-links li a:hover {
  color: var(--dark);
  background: var(--off-white);
}

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 16px rgba(253,82,244,0.3);
}
.nav-cta:hover {
  background: #e040e8 !important;
  box-shadow: 0 6px 24px rgba(253,82,244,0.45) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==============================================
   HERO
   ============================================== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient blob behind logo */
.hero-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,82,244,0.1) 0%, rgba(147,51,234,0.06) 40%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-copy {
  flex: 1 1 55%;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.dot { color: var(--pink); }

.headline-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(253,82,244,0.2);
  box-shadow:
    0 0 60px rgba(253,82,244,0.15),
    inset 0 0 60px rgba(253,82,244,0.05);
}

.hero-logo {
  width: 260px;
  height: 260px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 48px rgba(253,82,244,0.3));
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-hint span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}


/* ==============================================
   MARQUEE STRIP
   ============================================== */
.marquee-wrap {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0 28px;
}
.marquee-track .sep {
  color: var(--pink);
  opacity: 0.5;
  padding: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ==============================================
   THE PROBLEM
   ============================================== */
.problem {
  padding: var(--section) 0;
  background: var(--white);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.problem-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 24px;
}
.problem-left h2 em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-statement {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.problem-item:first-child { border-top: 1px solid var(--border); }

.problem-num {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--pink);
  padding-top: 4px;
  flex-shrink: 0;
  width: 24px;
}

.problem-text h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.problem-text p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}


/* ==============================================
   SERVICES
   ============================================== */
.services {
  padding: var(--section) 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.services-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 72px;
}

.services-header h2 { flex-shrink: 0; }

.services-intro {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 480px;
  padding-top: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2px;
}

.service-item {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: background 0.2s var(--ease);
}
.service-item:hover {
  background: #fdf5ff;
}

.service-num {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--pink);
  margin-bottom: 16px;
}

.service-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-item > p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
}

.service-tagline {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  color: var(--pink) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px !important;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(253,82,244,0.08);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(253,82,244,0.2);
}

/* AI Card — featured, full-width, dark */
.ai-service {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.ai-service::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,82,244,0.1) 0%, transparent 65%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.ai-service .service-num {
  color: var(--pink);
  margin-bottom: 12px;
}

.ai-service-left h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ai-service-left > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.ai-service-right ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.ai-service-right li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.ai-service-right li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}


/* ==============================================
   WHY DREAMTECH
   ============================================== */
.why {
  padding: var(--section) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,82,244,0.05) 0%, transparent 65%);
  left: -300px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.why-header {
  margin-bottom: 72px;
  display: flex;
  gap: 100px;
  align-items: flex-end;
}

.why-header h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  flex-shrink: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-item {
  background: var(--dark);
  padding: 44px 36px;
  transition: background 0.2s var(--ease);
}
.why-item:hover {
  background: #242424;
}

.why-icon {
  width: 40px;
  height: 40px;
  color: var(--pink);
  margin-bottom: 20px;
}
.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}


/* ==============================================
   BOOK A CALL
   ============================================== */
.book {
  padding: var(--section) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.book-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.book-copy > p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 36px;
}

.book-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.book-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.book-checklist li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Form */
.book-form {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888899' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(253,82,244,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}


/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding: 80px 40px 72px;
  max-width: var(--container);
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img {
  height: 96px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li,
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }

.footer-cta-col p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-bottom {
  padding: 24px 40px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}


/* ==============================================
   HERO — additional elements
   ============================================== */
.hero-value-prop {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 12px;
}
.hero-value-prop strong {
  color: rgba(255,255,255,0.9);
  font-weight: 800;
}
.hero-outcome {
  font-size: 0.9rem;
  color: var(--pink-light);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-cta-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}


/* ==============================================
   WHO WE SERVE
   ============================================== */
.who {
  padding: var(--section) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.who-header {
  text-align: center;
  margin-bottom: 64px;
}
.who-header .eyebrow { justify-content: center; }
.who-header .eyebrow::before { display: none; }
.who-sub {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 520px;
  margin: 16px auto 0;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.who-card:hover {
  border-color: rgba(253,82,244,0.25);
  box-shadow: 0 8px 40px rgba(253,82,244,0.08);
}

.who-card--featured {
  border-color: rgba(253,82,244,0.3);
  background: #fdf4ff;
}
.who-card--featured:hover {
  border-color: rgba(253,82,244,0.6);
  box-shadow: 0 12px 48px rgba(253,82,244,0.14);
}

.who-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(253,82,244,0.1);
  border: 1px solid rgba(253,82,244,0.25);
  padding: 4px 12px;
  border-radius: 50px;
}

.who-stage {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}

.who-count {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}

.who-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.who-card > p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.who-list li {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
  padding-left: 14px;
  position: relative;
}
.who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}


/* ==============================================
   HOW WE WORK / PROCESS
   ============================================== */
.process {
  padding: var(--section) 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.process-header {
  margin-bottom: 72px;
}
.process-sub {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 16px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(24px + 1px);
  right: 40px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  padding: 0 32px 0 0;
  position: relative;
  z-index: 1;
}
.process-step:last-child { padding-right: 0; }

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--pink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--pink);
  margin-bottom: 24px;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.process-step > p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.process-note {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.02em;
}


/* ==============================================
   TYPICAL ENGAGEMENTS
   ============================================== */
.engagements {
  padding: var(--section) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.engagements-header {
  margin-bottom: 64px;
}
.engagements-sub {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 16px;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.engagement-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.engagement-card:hover {
  border-color: rgba(253,82,244,0.25);
  box-shadow: 0 8px 40px rgba(253,82,244,0.07);
}

.engagement-type {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}

.engagement-time {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.engagement-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.engagement-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.engagement-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.engagement-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}

.engagement-outcome {
  background: var(--off-white);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
}
.outcome-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}


/* ==============================================
   FAQ
   ============================================== */
.faq {
  padding: var(--section) 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.faq-header {
  margin-bottom: 56px;
}
.faq-sub {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 480px;
  margin-top: 16px;
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  gap: 24px;
  transition: color 0.2s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--pink); }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--pink);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item > p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  padding-bottom: 28px;
  max-width: 700px;
}


/* ==============================================
   BOOK — additional elements
   ============================================== */
.book-desc {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 32px;
}

.book-what-to-expect {
  margin-bottom: 28px;
}
.expect-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
}

.book-for {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 4px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}


/* ==============================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================== */
@media (max-width: 960px) {
  :root { --section: 90px; }

  .container { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }

  .hero-inner { gap: 40px; }
  .hero-value-prop, .hero-outcome { max-width: 100%; }
  .hero-glow-ring { width: 260px; height: 260px; }
  .hero-logo { width: 200px; height: 200px; }

  .who-grid { grid-template-columns: 1fr 1fr; }
  .who-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 0 32px; }
  .who-card--featured .who-badge { grid-column: 1 / -1; position: static; display: inline-block; align-self: start; justify-self: end; margin-bottom: -28px; }
  .who-card--featured .who-stage,
  .who-card--featured .who-count { grid-column: 1; }
  .who-card--featured h3 { grid-column: 1; }
  .who-card--featured > p { grid-column: 2; grid-row: 1 / 4; align-self: center; }
  .who-card--featured .who-list { grid-column: 1 / -1; }

  .problem-inner { grid-template-columns: 1fr; gap: 60px; }
  .problem-statement { max-width: 100%; }

  .services-header { flex-direction: column; gap: 16px; }
  .services-intro { padding-top: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .ai-service { grid-template-columns: 1fr; gap: 40px; padding: 44px 36px; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .process-steps::before { display: none; }

  .engagements-grid { grid-template-columns: 1fr; gap: 20px; }
  .engagement-card { display: grid; grid-template-columns: auto 1fr; gap: 0 32px; }
  .engagement-type { grid-column: 1; }
  .engagement-time { grid-column: 1; }
  .engagement-card h3 { grid-column: 2; grid-row: 1 / 3; align-self: center; border-bottom: none; padding-bottom: 0; margin-bottom: 0; border-left: 1px solid var(--border); padding-left: 32px; }
  .engagement-list { grid-column: 1 / -1; }
  .engagement-outcome { grid-column: 1 / -1; }

  .why-header { flex-direction: column; gap: 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .book-inner { grid-template-columns: 1fr; gap: 60px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-brand { grid-column: 1 / -1; }
}


/* ==============================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================== */
@media (max-width: 640px) {
  :root { --section: 72px; }

  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-top: 1px solid var(--border);
    gap: 4px;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { color: var(--text) !important; display: block; padding: 12px 16px; }
  .nav-cta { text-align: center; margin-top: 8px; }

  /* Hero */
  .hero { padding: 100px 20px 60px; }
  .hero-inner { flex-direction: column; gap: 48px; text-align: center; }
  .hero-value-prop, .hero-outcome, .hero-cta-note { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-actions .btn { flex: 1; text-align: center; }
  .hero-glow-ring { width: 200px; height: 200px; }
  .hero-logo { width: 160px; height: 160px; }

  /* Who */
  .who-grid { grid-template-columns: 1fr; }
  .who-card--featured { display: block; }
  .who-card--featured .who-badge { position: absolute; top: 20px; right: 20px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .ai-service { padding: 36px 24px; }
  .ai-service::before { display: none; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 40px; }

  /* Engagements */
  .engagement-card { display: flex; flex-direction: column; }
  .engagement-card h3 { border-left: none; padding-left: 0; border-bottom: 1px solid var(--border); padding-bottom: 20px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-item summary { font-size: 0.92rem; }


  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px 48px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding: 20px; }
}
