/* ===========================
   1. Variables & Fonts
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Orbitron:wght@400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/uncut-sans');

:root {
  --purple: #7B2FF2;
  --purple-light: #9B5FF5;
  --purple-dark: #5B1FD2;
  --green: #2DD4A0;
  --dark: #0B0B0F;
  --dark-card: #131318;
  --dark-surface: #1C1C24;
  --dark-lighter: #2D2D3F;
  --text-primary: #1F2937;
  --text-secondary: #374151;
  --text-muted: #6B7280;
  --text-light: #E5E7EB;
  --text-light-muted: #9CA3AF;
  --white: #FFFFFF;
  --light-bg: #F8F9FB;
  --border: #E5E7EB;
  --faq-closed: #3B4556;
  --faq-open: #111827;

  --font-body: 'Uncut Sans', 'Inter', system-ui, sans-serif;
  --font-heading: 'Sora', sans-serif;
  --font-mono: 'Orbitron', monospace;
  --font-display: 'Sora', sans-serif;

  --h1: clamp(2.5rem, 5vw, 4.1875rem);
  --h2: clamp(2rem, 4vw, 3.25rem);
  --h3: clamp(1.5rem, 2.5vw, 2rem);
  --h4: clamp(1.125rem, 1.8vw, 1.375rem);

  --section-py: clamp(4rem, 8vw, 7rem);
  --container: 1280px;
  --gutter: clamp(1rem, 3vw, 2rem);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: #E2E8F0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; border: none; outline: none; }

/* ===========================
   3. Typography
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

.highlight {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--purple);
  font-weight: 700;
}

.label-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===========================
   4. Layout
   =========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-light {
  background: var(--white);
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--dark);
  padding: var(--section-py) 0;
  color: var(--text-light);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header .label-mono {
  color: var(--purple);
  margin-bottom: 1rem;
  display: block;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 1rem;
}

/* ===========================
   5. CTA Form (reusable)
   =========================== */
.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  flex-wrap: wrap;
}

.cta-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
  flex: 1;
  min-width: 240px;
}

.cta-input-wrap svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--purple);
}

.cta-input-wrap input {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: transparent;
}
.cta-input-wrap input::placeholder { color: var(--text-muted); }

.cta-btn {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: var(--transition);
}
.cta-btn:hover { background: var(--purple); }

/* Dark background variant */
.cta-form--dark .cta-input-wrap {
  background: var(--dark-surface);
  border-color: var(--dark-lighter);
}
.cta-form--dark .cta-input-wrap input { color: var(--white); }
.cta-form--dark .cta-input-wrap input::placeholder { color: var(--text-light-muted); }
.cta-form--dark .cta-btn {
  background: var(--white);
  color: var(--dark);
}
.cta-form--dark .cta-btn:hover { background: var(--purple); color: var(--white); }

/* Stacked variant (footer, schedule) */
.cta-form--stacked {
  flex-direction: column;
  max-width: 400px;
}
.cta-form--stacked .cta-input-wrap { min-width: unset; }
.cta-form--stacked .cta-btn { text-align: center; }

/* ===========================
   6. Header / Navbar
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(11, 11, 15, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  transition: var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--purple-light); }

.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
}
.nav-cta:hover { background: var(--purple-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   7. Hero Section
   =========================== */
.hero {
  position: relative;
  height: clamp(500px, 55vw, 750px);
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
  padding: 0;
  border-radius: 0 0 1.5rem 1.5rem;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center right / cover no-repeat;
  opacity: 0.85;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
}

.hero-content {
  max-width: 750px;
  padding-bottom: 2.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-subtitle {
  color: var(--text-light-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.hero .cta-form {
  max-width: 560px;
}

/* ===========================
   8. Growth Section
   =========================== */
.growth { padding: var(--section-py) 0; background: #E2E8F0; }

.growth .section-header { margin-bottom: 2rem; }

.growth .cta-form {
  margin: 0 auto 3.5rem;
  justify-content: center;
}

.growth-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.growth-card {
  background: linear-gradient(160deg, #131820 0%, #0d1117 50%, #0a1628 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.06);
}

.growth-card--visibility {
  background: radial-gradient(ellipse at 80% 20%, rgba(0,180,160,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0,80,80,0.15) 0%, transparent 50%),
              #0b1a1a;
}
.growth-card--conversions {
  background: radial-gradient(ellipse at 80% 20%, rgba(120,50,180,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(80,30,120,0.12) 0%, transparent 50%),
              #12101e;
}
.growth-card--brand {
  background: radial-gradient(ellipse at 30% 80%, rgba(30,80,200,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(20,50,120,0.15) 0%, transparent 50%),
              #0c1225;
}

.growth-card h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: var(--h4);
}

.growth-card-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

.growth-card-item .plus {
  color: var(--text-light-muted);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.growth-card-img {
  margin-top: auto;
  padding-top: 1.5rem;
  text-align: center;
}

.growth-card-img img {
  max-height: 200px;
  margin: 0 auto;
  object-fit: contain;
}

/* ===========================
   9. Case Studies
   =========================== */
.cases { padding: var(--section-py) 0; background: #F8FAFC; }

.cases .cta-form {
  margin: 0 auto 3.5rem;
  justify-content: center;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.case-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.case-card-img {
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  overflow: hidden;
  position: relative;
}
.case-card-img img { width: 100%; height: 100%; object-fit: cover; }

.case-card-body { padding: 1.5rem; }

.case-card-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.case-card-metrics {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.case-metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.case-metric .arrow {
  color: var(--green);
  font-weight: 700;
}

.case-metric .value {
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}

.case-metric .label {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.case-card-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
  display: none;
}

.case-card-person {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.case-person-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.case-person-avatar .quote-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: var(--white);
  font-weight: 700;
}

.case-person-role {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.case-person-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.case-card-quote {
  display: none;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

/* ===========================
   10. Services Section
   =========================== */
.services { padding: var(--section-py) 0; background: #E2E8F0; }

.services-row {
  position: relative;
  margin-bottom: 3rem;
}

.services-track-wrapper {
  overflow: hidden;
  margin: 0 -0.75rem;
  padding: 0 0.75rem;
}

.services-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.service-card {
  min-width: calc(25% - 1.125rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  flex-shrink: 0;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: #F3EFFE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.service-icon svg { width: 24px; height: 24px; color: var(--purple); }
.service-icon--green { background: #ECFDF5; }
.service-icon--green svg { color: #059669; }
.service-icon--brand { background: #F0F4FF; }

.service-category {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.5rem;
  display: block;
}
.service-category--green { color: #059669; }

.service-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.service-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  align-self: flex-end;
  transition: var(--transition);
}
.service-link svg { width: 18px; height: 18px; color: var(--white); }
.service-link:hover { background: var(--purple-dark); transform: scale(1.05); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.carousel-arrow:hover { background: var(--purple); }
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow--left { left: -20px; }
.carousel-arrow--right { right: -20px; }
.carousel-arrow:disabled { opacity: 0.3; pointer-events: none; }

/* ===========================
   11. Key Components
   =========================== */
.key-components { padding: var(--section-py) 0; background: #E2E8F0; }

.key-components-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.key-comp-left {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.key-comp-left-bg {
  position: absolute;
  inset: 0;
  background: url('../images/core-elements-bg.png') center / cover no-repeat;
}

.key-comp-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.key-comp-left-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.key-comp-left-content h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.key-comp-left-content p {
  color: var(--text-light-muted);
  font-size: 0.9375rem;
}

.key-comp-right {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.key-comp-right-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url('../images/key-components-bg.png') center top / cover no-repeat;
  opacity: 0.08;
}

.key-comp-right h3 {
  margin-bottom: 1.75rem;
  position: relative;
}

.key-comp-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.key-comp-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.key-comp-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--purple);
  margin-top: 0.15rem;
}

/* ===========================
   12. Methodology
   =========================== */
.methodology {
  padding: var(--section-py) 0;
  background: #040406;
  color: var(--white);
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}

.methodology .section-header p { color: var(--text-light-muted); }

.methodology .cta-form {
  margin: 0 auto 3.5rem;
  justify-content: center;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.methodology-grid .methodology-card:last-child {
  grid-column: 2;
}

.methodology-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: left;
  transition: var(--transition);
  overflow: hidden;
}
.methodology-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.methodology-icon {
  width: 100%;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.methodology-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.methodology-card-body {
  padding: 1.5rem 1.75rem 2rem;
}

.step-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-badge--purple { background: rgba(123,47,242,0.15); color: var(--purple-light); }
.step-badge--blue { background: rgba(59,130,246,0.15); color: #60A5FA; }
.step-badge--green { background: rgba(16,185,129,0.15); color: #34D399; }
.step-badge--magenta { background: rgba(217,70,239,0.15); color: #E879F9; }
.step-badge--orange { background: rgba(245,158,11,0.15); color: #FBBF24; }
.step-badge--red { background: rgba(239,68,68,0.15); color: #F87171; }
.step-badge--teal { background: rgba(20,184,166,0.15); color: #2DD4BF; }

.methodology-card-body h3 {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.methodology-card-body p {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===========================
   13. Clients
   =========================== */
.clients {
  padding: var(--section-py) 0;
  padding-top: calc(var(--section-py) + 1.5rem);
  margin-top: -1.5rem;
  background: #F8FAFC;
  position: relative;
  z-index: 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.clients-left h2 { margin-bottom: 1rem; }

.clients-left p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.clients-logos {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-logos img {
  max-width: 100%;
  object-fit: contain;
}

/* ===========================
   14. Testimonials
   =========================== */
.testimonials { padding: var(--section-py) 0; background: #E2E8F0; display: none; }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.testimonial-card {
  width: calc(50% - 0.75rem);
  min-width: calc(50% - 0.75rem);
  max-width: calc(50% - 0.75rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  flex-shrink: 0;
  text-align: center;
}

.testimonial-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.testimonial-metrics {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-metric .arrow { color: var(--green); font-weight: 700; }
.testimonial-metric .value { color: var(--green); font-weight: 700; font-size: 1.125rem; }
.testimonial-metric .label { color: var(--text-muted); font-size: 0.8125rem; }

.testimonial-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar .quote-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  color: var(--white);
  font-weight: 700;
}

.testimonial-role {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0.25rem 0 1rem;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials-nav .carousel-arrow {
  position: static;
  transform: none;
}

/* ===========================
   15. FAQs
   =========================== */
.faqs { padding: var(--section-py) 0; background: #E2E8F0; }

.faqs-list {
  max-width: 700px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item { width: 100%; }

.faq-question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  justify-content: center;
}

.faq-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  border: 2px solid var(--border);
  background: var(--white);
}
.faq-toggle svg { width: 18px; height: 18px; transition: var(--transition); }

.faq-question-text {
  background: var(--faq-closed);
  color: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  transition: var(--transition);
  text-align: left;
}

.faq-item.active .faq-question-text {
  background: var(--faq-open);
}

.faq-item.active .faq-toggle {
  background: var(--faq-open);
  border-color: var(--faq-open);
}
.faq-item.active .faq-toggle svg { color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0 0.5rem;
  padding-left: 56px;
  align-items: flex-start;
}

.faq-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.faq-avatar img { width: 100%; height: 100%; object-fit: cover; }
.faq-avatar::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.faq-answer-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 0.5rem;
}

.faqs-divider {
  height: 1px;
  background: var(--border);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.faqs .cta-form {
  margin: 0 auto;
  justify-content: center;
}

.faqs .cta-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

/* ===========================
   16. Schedule a Meeting
   =========================== */
.schedule {
  padding: var(--section-py) 0;
  background: #040406;
  color: var(--white);
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.schedule-left h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.schedule-left p {
  color: var(--text-light-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.schedule-right {
  background: linear-gradient(135deg, var(--dark-card), var(--dark-surface));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.schedule-right h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.375rem;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.schedule-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

.schedule-item svg {
  width: 20px;
  height: 20px;
  color: #F87171;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ===========================
   17. Latest Posts / Blog
   =========================== */
.blog {
  padding: var(--section-py) 0;
  padding-top: calc(var(--section-py) + 1.5rem);
  padding-bottom: calc(var(--section-py) + 1.5rem);
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
  background: #F8FAFC;
  position: relative;
  z-index: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-link {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.blog-card-link svg { width: 16px; height: 16px; color: var(--white); }
.blog-card-link:hover { background: var(--purple); }

.blog-card-body { padding: 1.5rem; }

.blog-card-body h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   18. Footer
   =========================== */
.footer {
  padding: 4rem 0 2rem;
  background: #040406;
  border-radius: 1.5rem 1.5rem 0 0;
  color: var(--text-light);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo img { height: 28px; }

.footer-tagline {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.footer .cta-form--stacked {
  margin: 0 auto 2.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  color: var(--text-light-muted);
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* ===========================
   19. Responsive
   =========================== */

/* Tablet */
@media (max-width: 1024px) {
  .growth-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cases-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .key-components-grid { grid-template-columns: 1fr; }
  .key-comp-left { min-height: 300px; }
  .methodology-grid { grid-template-columns: repeat(2, 1fr); }
  .methodology-grid .methodology-card:last-child { grid-column: auto; }
  .clients-grid { grid-template-columns: 1fr; }
  .clients-logos { max-width: 600px; }
  .testimonial-card { min-width: calc(100% - 0rem); }
  .schedule-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .service-card { min-width: calc(50% - 0.75rem); }
  .carousel-arrow--left { left: 0; }
  .carousel-arrow--right { right: 0; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11,11,15,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.25rem; }

  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { height: auto; min-height: 400px; padding: 7rem 0 2rem; }
  .hero .container { max-width: 100%; }

  .cta-form { flex-direction: column; }
  .cta-input-wrap { min-width: unset; }

  .methodology-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .service-card { min-width: calc(80% - 0.75rem); }

  .faq-question { justify-content: flex-start; }
  .faq-answer-inner { padding-left: 0; }

  .testimonial-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .section-header h2 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .service-card { min-width: calc(85%); }
  .schedule-right { padding: 1.75rem; }
}

/* ===========================
   20. Animations
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
