/* ===========================================================
   Spark Advisory — 2026 Design System
   Shared across all pages. Fonts: Marcellus (headings) + Noto Sans (body)
   =========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background: #000;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; color: #fff; }
.btn-cyan { background: #59d0fb; }
.btn-orange { background: #ff4800; }
.btn-outline {
  background: transparent;
  color: #000;
  border: 1px solid rgba(0,0,0,0.2);
}
.btn-outline:hover { border-color: #59d0fb; color: #000; }

/* ── Fullscreen Mobile Menu ── */
.fullscreen-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0f0f0f;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.fullscreen-menu.is-none-transform { transform: translateX(0); }
.fullscreen-menu__wrapper { text-align: center; }
.fullscreen-menu__menu { display: flex; gap: 60px; margin-bottom: 40px; }
.fullscreen-menu__menu p { margin-bottom: 16px; }
.fullscreen-menu__menu a {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.3;
  transition: color 0.2s;
}
.fullscreen-menu__menu a:hover { color: #59d0fb; }
.fullscreen-menu__copyright { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 32px; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 24px 203px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.header-logo img { width: 147px; height: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-size: 16px;
  color: #000;
  white-space: nowrap;
  padding: 2px 4px;
  transition: color 0.2s;
}
.header-nav a:hover { color: #59d0fb; }
.header-nav a.nav-active { font-weight: 600; }
.header-cta { flex-shrink: 0; }
.header-burger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  flex-shrink: 0;
}
.header-burger span { display: block; height: 2px; background: #000; border-radius: 2px; transition: all 0.3s; }

/* ── Hero (home) ── */
.hero-section {
  background: #f8f8f8;
  min-height: 601px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-content { padding: 80px 0 80px 315px; flex-shrink: 0; z-index: 1; max-width: 560px; }
.hero-headline {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.1;
  color: #000;
  margin-bottom: 40px;
}
.hero-headline .accent { color: #59d0fb; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: #f8f8f8;
  padding: 120px 0 100px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: #000;
  margin-bottom: 24px;
}
.page-hero h1 .accent { color: #59d0fb; }
.page-hero p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(0,0,0,0.6);
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ── Logos Bar ── */
.logos-section { padding: 44px 0; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); }
.logos-section .label {
  text-align: center;
  font-size: 16px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 28px;
  font-weight: 300;
}
.logos-track {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 12px 41px;
  height: 84px;
}
.clients-track { gap: 12px 9px; height: auto; }
.logos-track .logo-slot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
}
.logos-track img { display: block; object-fit: contain; }

/* ── Section Base ── */
.section-pad { padding: 80px 0; }
.section-pad-lg { padding: 120px 0; }
.bg-light { background: #f8f8f8; }

.section-heading {
  font-family: 'Marcellus', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.2;
  color: #000;
  font-weight: 400;
}
.section-subtext {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0,0,0,0.55);
  line-height: 1.6;
}

/* ── Centered header (reused) ── */
.centered-head { text-align: center; }
.centered-head .section-heading { margin-bottom: 24px; }
.centered-head .section-subtext { max-width: 586px; margin: 0 auto; }

/* ── Service Cards ── */
.cards-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0px 4px 8px rgba(0,0,0,0.02), 0px 12px 32px rgba(0,0,0,0.04);
}
.service-card__icon {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.service-card__icon svg { width: 27px; height: 27px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-blue { background: #004AAD; }
.icon-teal { background: #1CD3AE; }
.icon-cyan { background: #59D0FB; }
.service-card__title {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
}
.service-card__desc { font-size: 16px; line-height: 22px; color: #000; font-weight: 300; }

/* ── Tagline ── */
.tagline-section { text-align: center; padding: 70px 0; background: #fff; }
.tagline-section h2 {
  font-family: 'Marcellus', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 26px;
}
.tagline-section p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 27px;
  color: rgba(0,0,0,0.55);
}

/* ── Split (image + text) Section ── */
.split-section { background: #fff; }
.split-inner { display: flex; align-items: center; gap: 80px; }
.split-inner.reverse { flex-direction: row-reverse; }
.split-content { flex: 1; }
.split-content .section-heading { margin-bottom: 24px; }
.split-content p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0,0,0,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}
.split-content p:last-of-type { margin-bottom: 32px; }
.split-image { flex: 1; border-radius: 16px; overflow: hidden; max-height: 420px; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Feature/Use-case cards ── */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.use-case-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  font-family: 'Marcellus', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  color: #000;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0px 4px 8px rgba(0,0,0,0.02), 0px 12px 32px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 124px;
}

/* ── CTA band ── */
.cta-band { background: #f8f8f8; text-align: center; }
.cta-band .section-heading { max-width: 700px; margin: 0 auto 32px; }

/* ── Purple CTA band (rounded) ── */
.cta-purple-wrap { padding: 60px 0; }
.cta-purple {
  background: rgba(77, 73, 252, 0.14);
  border-radius: 12px;
  padding: 88px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.cta-purple .cta-text { display: flex; flex-direction: column; align-items: center; gap: 24px; max-width: 740px; }
.cta-purple h2 { font-family: 'Marcellus', serif; font-weight: 400; font-size: 40px; line-height: 1.1; color: #000; }
.cta-purple p { font-size: 24px; font-weight: 400; line-height: 1.35; color: #000; max-width: 634px; }

/* ── Split Hero (inner page, left text + faint image) ── */
.split-hero { background: #f8f8f8; }
.split-hero .split-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 128px;
  padding: 40px 0;
}
.split-hero-content { max-width: 460px; }
.split-hero-content h1 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: #000;
  margin-bottom: 49px;
}
.split-hero-content h1 .accent { color: #59d0fb; }
.split-hero-image { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.split-hero-image.faint { mix-blend-mode: hard-light; opacity: 0.25; }
.split-hero-image video { max-width: 100%; height: auto; display: block; mix-blend-mode: hard-light; opacity: 0.25; }

/* ── Centered statement card ── */
.statement-card-wrap { padding: 48px 0; display: flex; justify-content: center; }
.statement-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0px 4px 8px rgba(0,0,0,0.02), 0px 6px 12px rgba(0,0,0,0.03);
  border-radius: 16px;
  padding: 32px;
  max-width: 640px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* ── Centered band heading ── */
.band-heading { background: #f8f8f8; text-align: center; }
.band-heading h2 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 40px);
  line-height: 1.2;
  color: #000;
  max-width: 700px;
  margin: 0 auto;
}
.band-heading p { font-size: 16px; font-weight: 400; line-height: 1.4; color: #000; max-width: 560px; margin: 20px auto 0; }

/* ── Feature Rows (content + colored list card) ── */
.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: 1030px;
  margin: 0 auto;
  padding: 40px 0;
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-content { flex: 1; max-width: 419px; display: flex; flex-direction: column; gap: 32px; }
.feature-content h2 { font-family: 'Marcellus', serif; font-weight: 400; font-size: clamp(32px, 3.5vw, 40px); line-height: 1.05; color: #000; }
.feature-help { font-size: 16px; font-weight: 400; line-height: 1.2; color: #000; }
.feature-help .help-label { display: block; }
.feature-list {
  flex: 1;
  max-width: 419px;
  background: rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 24px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-list ul { list-style: disc; padding-left: 30px; }
.feature-list li { font-size: 20px; font-weight: 400; line-height: 1.7; color: #000; }
.accent-orange { border: 1px solid #FF4800; }
.accent-cyan { border: 1px solid #59D0FB; }
.help-label.orange { color: #FF4800; }
.help-label.cyan { color: #59D0FB; }

/* ── Role Pills grid ── */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px 62px;
  max-width: 1018px;
  margin: 0 auto;
}
.pill {
  flex: 0 0 290px;
  max-width: 290px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: transform 0.15s, opacity 0.15s;
}
.pill:hover { transform: translateY(-2px); }
.pill-purple { background: #4D49FC; color: #fff; }
.pill-gray { background: #D9D9D9; color: #000; }
.pill-black { background: #000; color: #fff; }

/* ── Process Steps ── */
.process-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  height: 24px;
  background: #FF4800;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0px 4px 8px rgba(0,0,0,0.02), 0px 6px 12px rgba(0,0,0,0.03);
  font-family: 'Marcellus', serif;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  border-radius: 2px;
}
.process-intro { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 38px; }
.process-intro p { font-size: 16px; color: #000; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step { display: flex; align-items: flex-start; gap: 10px; }
.process-step .num {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  color: #59D0FB;
  flex-shrink: 0;
}
.process-step h3 { font-family: 'Marcellus', serif; font-weight: 400; font-size: 24px; line-height: 1.3; color: #000; margin-bottom: 3px; }
.process-step p { font-size: 16px; line-height: 1.4; color: #000; }

@media (max-width: 900px) {
  .split-hero .split-hero-inner { flex-direction: column; gap: 40px; padding: 20px 0; }
  .feature-row, .feature-row.reverse { flex-direction: column; gap: 32px; }
  .feature-content, .feature-list { max-width: 100%; width: 100%; }
  .cta-purple { padding: 48px 24px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
  .pill { flex-basis: 100%; max-width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ── Stats row ── */
.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
  padding: 0 50px 120px;
}
.stat { text-align: center; display: flex; flex-direction: column; gap: 8px; }
.stat .stat-num {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
}
.stat .stat-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
}

/* ── Case study tag (orange) ── */
.case-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 46px;
  background: #FF4800;
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 24px;
}
.split-content .case-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.35;
  color: #000;
  margin-bottom: 24px;
}
.split-content .case-sub {
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 24px;
}

/* ── Testimonial cards grid ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.testi-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0px 4px 8px rgba(0,0,0,0.02), 0px 12px 32px rgba(0,0,0,0.04);
  border-radius: 16px;
  padding: 0 32px 32px;
  display: flex;
  flex-direction: column;
}
.testi-card .testi-mark {
  font-family: 'Marcellus', serif;
  font-size: 96px;
  line-height: 1.2;
  height: 56px;
  color: #000;
}
.testi-card .testi-body {
  font-family: 'Noto Sans', sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: #000;
  flex-grow: 1;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-author .testi-avatar {
  width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0;
  background: rgba(0,0,0,0.08);
  object-fit: cover;
}
.testi-author .testi-name {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: #000;
}

@media (max-width: 1100px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .stats-row { gap: 48px 60px; padding-bottom: 60px; }
}
@media (max-width: 620px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ── "What we automate" cyan cards ── */
.automate-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.automate-card {
  flex: 0 0 auto;
  min-width: 240px;
  background: #59D0FB;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0px 4px 8px rgba(0,0,0,0.02), 0px 12px 32px rgba(0,0,0,0.04);
  border-radius: 16px;
  padding: 24px 32px;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}

/* ── Tools we work with (orange-bordered heading + intro list) ── */
.tools-heading-box {
  border: 1px solid #FF4800;
  border-radius: 12px;
  padding: 24px 48px;
  max-width: 746px;
  margin: 0 auto;
  text-align: center;
}
.tools-heading-box h2 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: #000;
}
.tools-intro {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.tools-intro .tools-lead {
  max-width: 379px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  line-height: 27px;
  color: #000;
}
.tools-list-box {
  width: 324px;
  background: rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 24px;
}
.tools-list-box ul { list-style: none; }
.tools-list-box li {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* ── Example Use Cases split (intro + orange-top cards) ── */
.usecase-split { display: flex; gap: 44px; align-items: flex-start; }
.usecase-intro { flex: 0 0 300px; }
.usecase-intro h2 { font-family: 'Marcellus', serif; font-weight: 400; font-size: 40px; line-height: 1.2; margin-bottom: 32px; }
.usecase-intro p { font-size: 16px; line-height: 1.4; color: #000; margin-bottom: 32px; }
.usecase-cards {
  flex: 0 0 711px;
  max-width: 711px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.usecase-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.usecase-col-offset { margin-top: 90px; }
.usecase-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.02), 0px 12px 32px rgba(0,0,0,0.04);
  padding: 32px;
}
.usecase-card h4 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #FF4800;
}
.usecase-card p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.5; color: rgba(0,0,0,0.5); margin: 0; }

@media (max-width: 1100px) {
  .usecase-cards { flex: 1 1 auto; max-width: 100%; }
}
@media (max-width: 900px) {
  .tools-list-box { width: 100%; max-width: 379px; }
  .usecase-split { flex-direction: column; }
  .usecase-intro { flex: 1 1 auto; width: 100%; }
}
@media (max-width: 560px) {
  .usecase-cards { flex-direction: column; }
  .usecase-col-offset { margin-top: 0; }
}

/* ── Talent / Video ── */
.talent-section { background: #fff; text-align: center; }
.talent-section .section-heading { margin-bottom: 40px; }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.1);
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ── Partner Logos label ── */
.partner-logos { background: #f8f8f8; }
.partner-logos .label {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0,0,0,0.5);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── CEO Quote ── */
.ceo-quote { background: #f8f8f8; text-align: center; }
.ceo-photo { width: 219px; height: 219px; border-radius: 50%; object-fit: cover; margin: 0 auto 32px; mix-blend-mode: multiply; }
.ceo-quote blockquote {
  font-family: 'Marcellus', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  max-width: 517px;
  margin: 0 auto 24px;
}
.ceo-quote cite { font-size: 24px; font-weight: 400; letter-spacing: -0.02em; color: #59D0FB; font-style: normal; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: 'Marcellus', serif; font-weight: 400; font-size: 32px; margin-bottom: 24px; }
.contact-info p, .contact-info a { font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(0,0,0,0.7); }
.contact-info a:hover { color: #59d0fb; }
.contact-detail { margin-bottom: 24px; }
.contact-detail .label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(0,0,0,0.4); font-weight: 600; margin-bottom: 6px; }
.contact-form-box { background: #f8f8f8; border-radius: 16px; padding: 40px; }
.contact-form-box .form-row { margin-bottom: 20px; }
.contact-form-box label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: #000; }
.contact-form-box input, .contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 12px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  background: #fff;
  transition: border-color 0.2s;
}
.contact-form-box input:focus, .contact-form-box textarea:focus { outline: none; border-color: #59d0fb; }
.contact-form-box textarea { resize: vertical; min-height: 120px; }

/* ── Contact channel cards (Call / Chat / Demo) ── */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-card {
  flex: 1 1 278px;
  max-width: 320px;
  min-height: 462px;
  background: #f8f8f8;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
.contact-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 32px;
  text-align: center;
}
.contact-card-text h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.35;
  color: #000;
}
.contact-card-text .contact-phone {
  font-size: 16px;
  line-height: 1.4;
  color: #000;
}
.contact-card-img {
  width: 240px;
  height: 234px;
  margin-top: auto;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: 0px 0px 4.4px rgba(0,0,0,0.06), 0px 5px 19px rgba(0,0,0,0.08);
  border-radius: 32px;
}
@media (max-width: 720px) {
  .contact-card { max-width: 340px; }
}

/* ── Footer ── */
.site-footer { background: #fff; border-top: 1px solid rgba(0,0,0,0.08); padding: 60px 0 40px; }
.footer-inner { display: flex; gap: 80px; margin-bottom: 48px; }
.footer-brand { flex-shrink: 0; }
.footer-brand img { width: 147px; margin-bottom: 32px; }
.footer-social { display: flex; gap: 24px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: color 0.2s;
}
.footer-social a:hover { color: #59d0fb; }
.footer-social svg { width: 24px; height: 24px; fill: currentColor; }
.footer-nav { flex: 1; display: flex; gap: 40px; justify-content: flex-end; }
.footer-nav-col { width: 130px; }
.footer-nav-col h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #000;
  margin-bottom: 16px;
}
.footer-nav-col a { display: block; font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 500; line-height: 1.45; letter-spacing: -0.005em; color: rgba(0,0,0,0.55); margin-bottom: 8px; transition: color 0.2s; }
.footer-nav-col a:hover { color: #59d0fb; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 24px; text-align: center; font-size: 14px; font-weight: 300; color: rgba(0,0,0,0.4); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .header-inner { padding: 20px 40px; }
  .hero-content { padding: 60px 40px; }
  .cards-scroll { grid-template-columns: repeat(2, 1fr); }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .header-burger { display: flex; }
  .header-inner { padding: 20px 24px; }
  .hero-content { padding: 60px 24px; max-width: 100%; }
  .container, .container-narrow { padding: 0 24px; }
  .section-pad { padding: 60px 0; }
  .section-pad-lg { padding: 80px 0; }
  .page-hero { padding: 80px 0 60px; }
  .cards-scroll { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .split-inner, .split-inner.reverse { flex-direction: column; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-nav { flex-direction: column; gap: 32px; justify-content: flex-start; }
  .logos-track { padding: 0 24px; gap: 24px; }
}
