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

:root {
  --ivory: #F8F5ED;
  --cream: #EFEAE0;
  --ink: #101010;
  --jet: #090909;
  --orange: #FFB000;
  --orange-soft: #FFD27A;
  --muted-foreground: #5a5a5a;
  --border: #E5E0D3;
  --font-sans: "Manrope", "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.icon {
  width: 1em;
  height: 1em;
  flex: none;
}
svg.icon { display: inline-block; vertical-align: middle; }

/* icon size helpers (match Tailwind h-*/w-* used in the React version) */
.icon-3\.5 { width: 0.875rem; height: 0.875rem; }
.icon-4 { width: 1rem; height: 1rem; }
.icon-5 { width: 1.25rem; height: 1.25rem; }
.icon-6 { width: 1.5rem; height: 1.5rem; }

.container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.accent { color: var(--orange); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-dark {
  background: var(--ink);
  color: var(--ivory);
}
.btn-dark:hover { background: var(--jet); }
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(16,16,16,0.15);
}
.btn-outline:hover { background: var(--cream); }
.btn-orange {
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
}
.btn-orange:hover { background: var(--orange-soft); }
.btn-ghost-light {
  border: 1px solid rgba(248,245,237,0.25);
  color: var(--ivory);
}
.btn-ghost-light:hover { background: rgba(248,245,237,0.1); }

.btn-sm { padding: 0.625rem 1rem; font-size: 0.8125rem; }
.btn-md { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 1.5rem; font-size: 0.875rem; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: rgba(248,245,237,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand img { height: 2.25rem; width: 2.25rem; object-fit: contain; }
.brand-text { line-height: 1.2; display: none; }
.brand-name { font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.01em; }
.brand-sub {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-foreground);
}
.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
}
.main-nav a {
  color: rgba(16,16,16,0.7);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--ink); }

/* ---------------- Hero ---------------- */
.hero { position: relative; overflow: hidden; }
.hero .container {
  display: grid;
  gap: 3.5rem;
  padding-block: 3.5rem 4rem;
}
.hero-copy { position: relative; z-index: 10; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.6);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(16,16,16,0.7);
}
.badge-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background: var(--orange);
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero-lead {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(16,16,16,0.7);
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}
.hero-blob {
  position: absolute;
  right: 1rem; top: 1rem;
  height: 18rem; width: 18rem;
  border-radius: 9999px;
  background: var(--orange);
}
.hero-ring {
  position: absolute;
  right: 3.5rem; top: 3.5rem;
  height: 14rem; width: 14rem;
  border-radius: 9999px;
  border: 1px solid rgba(16,16,16,0.1);
}
.hero-card {
  position: absolute;
  right: 1.5rem; top: 2.5rem;
  display: flex;
  height: 340px; width: 240px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.hero-card img {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 10rem; width: 10rem;
  object-fit: contain;
  opacity: 0.9;
}
.hero-card-caption {
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.8);
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(16,16,16,0.7);
  backdrop-filter: blur(6px);
}
.hero-bubble {
  position: absolute;
  right: 0.5rem; top: 0.5rem;
  display: none;
  height: 6rem; width: 6rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--ink);
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ivory);
}
.hero-bubble .icon { margin: 0.25rem auto 0; display: block; }
.hero-stat {
  position: absolute;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}
.hero-stat-1 {
  bottom: -0.5rem; left: 0;
  width: 190px;
  transform: rotate(-4deg);
  background: var(--orange);
}
.hero-stat-2 {
  bottom: 4rem; left: 10rem;
  display: none;
  width: 180px;
  transform: rotate(3deg);
  background: var(--ink);
  color: var(--ivory);
}
.hero-stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(16,16,16,0.7);
}
.hero-stat-2 .hero-stat-label { color: rgba(248,245,237,0.6); }
.hero-stat-value { margin-top: 0.25rem; font-size: 1.875rem; font-weight: 800; }
.hero-stat-sub { font-size: 0.75rem; font-weight: 500; color: rgba(16,16,16,0.7); }
.hero-stat-2 .hero-stat-sub { color: rgba(248,245,237,0.7); }

/* ---------------- Stat cards ---------------- */
.stats-section .container {
  display: grid;
  gap: 1rem;
  padding-block: 0 4rem;
}
.stat-card {
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.stat-card.tone-orange { background: var(--orange); color: var(--ink); }
.stat-card.tone-ink { background: var(--ink); color: var(--ivory); }
.stat-card-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.tone-orange .stat-card-eyebrow { color: rgba(16,16,16,0.6); }
.tone-ink .stat-card-eyebrow { color: rgba(248,245,237,0.6); }
.stat-card-value { margin-top: 0.5rem; font-size: 3rem; font-weight: 800; letter-spacing: -0.01em; }
.stat-card-label { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500; }
.tone-orange .stat-card-label { color: rgba(16,16,16,0.7); }
.tone-ink .stat-card-label { color: rgba(248,245,237,0.8); }

/* ---------------- Platform strip ---------------- */
.platform-strip {
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: rgba(239,234,224,0.6);
}
.platform-strip .container { padding-block: 2.5rem; }
.platform-heading {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(16,16,16,0.6);
}
.platform-list {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 2.5rem;
  row-gap: 1rem;
}
.platform-list span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(16,16,16,0.7);
}

/* ---------------- Shared section header pattern ---------------- */
.section { padding-block: 6rem; }
.section-header {
  display: grid;
  gap: 1.5rem;
}
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--orange);
}
.section-title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-lead {
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(16,16,16,0.7);
}

/* ---------------- Services grid ---------------- */
.services-section { position: relative; }
.services-cards {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.service-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: left;
  background: #fff;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.service-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.service-card.tone-orange { background: var(--orange); }
.service-card-icon {
  display: flex;
  height: 3rem; width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--cream);
  color: var(--ink);
}
.service-card.tone-orange .service-card-icon { background: var(--ink); color: var(--ivory); }
.service-card-title { margin-top: 1.5rem; font-size: 1.125rem; font-weight: 700; line-height: 1.3; }
.service-card-body { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: rgba(16,16,16,0.65); }
.service-card.tone-orange .service-card-body { color: rgba(16,16,16,0.75); }
.service-card-arrow {
  position: absolute;
  right: 1.25rem; top: 1.25rem;
  color: rgba(16,16,16,0.4);
  transition: color 0.2s ease;
}
.service-card:hover .service-card-arrow { color: var(--ink); }

/* ---------------- Value section ---------------- */
.value-section { background: rgba(239,234,224,0.7); }
.value-section .container {
  display: grid;
  gap: 3rem;
}
.value-title { margin-top: 0.75rem; font-size: 2.25rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
.value-cta { margin-top: 2rem; }
.value-copy {
  display: grid;
  gap: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(16,16,16,0.75);
}

/* ---------------- Process ---------------- */
.process-header { max-width: 48rem; }
.process-grid {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  display: grid;
}
.process-step {
  padding: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.process-step:first-child { border-top: none; }
.process-step-n { font-size: 0.875rem; font-weight: 700; color: var(--orange); }
.process-step-title { margin-top: 1rem; font-size: 1.125rem; font-weight: 700; line-height: 1.3; }
.process-step-body { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: rgba(16,16,16,0.65); }

/* ---------------- Case studies ---------------- */
.cases-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
}
.case-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}
.case-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.case-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.case-card-media img {
  height: 100%; width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card:hover .case-card-media img { transform: scale(1.02); }
.case-card-body { display: flex; flex: 1; flex-direction: column; gap: 1rem; padding: 2rem; }
.case-card-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; }
.case-card-rows { display: grid; gap: 0.75rem; font-size: 0.875rem; }
.case-card-row { display: grid; grid-template-columns: 90px 1fr; gap: 0.75rem; }
.case-card-row dt {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(16,16,16,0.5);
}
.case-card-row dd { font-size: 0.875rem; line-height: 1.6; color: rgba(16,16,16,0.8); }

/* ---------------- Founder ---------------- */
.founder-section { background: rgba(239,234,224,0.7); }
.founder-section .container {
  display: grid;
  gap: 3.5rem;
}
.founder-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 32px;
  background: var(--ivory);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.05);
}
.founder-portrait-img-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.founder-portrait-img-wrap img { height: 12rem; width: 12rem; object-fit: contain; opacity: 0.9; }
.founder-portrait-caption {
  position: absolute;
  inset-inline: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  padding: 1.5rem;
}
.founder-portrait-caption .name { font-size: 1.125rem; font-weight: 700; color: var(--ivory); }
.founder-portrait-caption .role {
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(248,245,237,0.8);
}
.founder-copy { display: flex; flex-direction: column; justify-content: center; }
.founder-title { margin-top: 0.75rem; font-size: 2.25rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
.founder-paragraphs { margin-top: 1.5rem; display: grid; gap: 1rem; font-size: 1rem; line-height: 1.6; color: rgba(16,16,16,0.75); }
.founder-stats { margin-top: 1.5rem; display: grid; gap: 0.75rem; grid-template-columns: repeat(3, 1fr); }
.founder-stat {
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.founder-stat-n { font-size: 1.5rem; font-weight: 800; }
.founder-stat-l {
  margin-top: 0.125rem;
  font-size: 0.6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(16,16,16,0.6);
}
.founder-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------------- Final CTA ---------------- */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: var(--jet);
  color: var(--ivory);
  padding: 4rem 2rem;
}
.cta-decor { position: absolute; pointer-events: none; border-radius: 9999px; }
.cta-decor-1 {
  right: -4rem; top: -4rem;
  height: 18rem; width: 18rem;
  background: rgba(255,176,0,0.9);
  filter: blur(40px);
}
.cta-decor-2 {
  right: -2rem; bottom: 2.5rem;
  display: none;
  height: 6rem; width: 6rem;
  background: rgba(248,245,237,0.9);
}
.cta-decor-3 {
  right: 10rem; bottom: 2rem;
  display: none;
  height: 8rem; width: 8rem;
  border-radius: 24px;
  transform: rotate(12deg);
  background: rgba(255,176,0,0.6);
}
.cta-content { position: relative; z-index: 10; max-width: 42rem; }
.cta-title { margin-top: 1rem; font-size: 2.25rem; font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }
.cta-lead { margin-top: 1.5rem; max-width: 36rem; font-size: 1.125rem; color: rgba(248,245,237,0.75); }
.cta-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--jet); color: rgba(248,245,237,0.7); }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}
.footer-brand-row { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand-row img { height: 2.25rem; width: 2.25rem; object-fit: contain; }
.footer-brand-name { font-size: 0.875rem; font-weight: 700; color: var(--ivory); }
.footer-brand-sub {
  font-size: 0.625rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(248,245,237,0.6);
}
.footer-desc { margin-top: 1rem; max-width: 20rem; font-size: 0.875rem; line-height: 1.6; color: rgba(248,245,237,0.6); }
.footer-col-title {
  font-size: 0.6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(248,245,237,0.5);
}
.footer-col-list { margin-top: 1rem; display: grid; gap: 0.5rem; font-size: 0.875rem; }
.footer-col-list a { color: rgba(248,245,237,0.75); transition: color 0.2s ease; }
.footer-col-list a:hover { color: var(--orange); }
.footer-contact-list { margin-top: 1rem; display: grid; gap: 0.5rem; font-size: 0.875rem; }
.footer-contact-list a { transition: color 0.2s ease; }
.footer-contact-list a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: center; gap: 0.375rem; color: rgba(248,245,237,0.7); }
.footer-bottom { border-top: 1px solid rgba(248,245,237,0.1); }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  font-size: 0.75rem;
  color: rgba(248,245,237,0.5);
}
.footer-bottom-inner a:hover { color: rgba(248,245,237,0.8); }

/* ---------------- Service carousel (modal) ---------------- */
.carousel-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(16,16,16,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1rem;
}
.carousel-overlay.is-open { display: flex; }
body.no-scroll { overflow: hidden; }

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 9999px;
  background: rgba(248,245,237,0.9);
  color: var(--ink);
  padding: 0.75rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease;
}
.carousel-nav-btn:hover { background: var(--orange); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-panel {
  position: relative;
  width: 100%;
  max-width: 64rem;
  overflow: hidden;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  max-height: 90vh;
  overflow-y: auto;
}
.carousel-close {
  position: absolute;
  right: 1rem; top: 1rem;
  z-index: 10;
  border-radius: 9999px;
  background: rgba(16,16,16,0.85);
  color: var(--ivory);
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}
.carousel-close:hover { background: var(--ink); }

.carousel-header { padding: 1.5rem 1.5rem 1rem; }
.carousel-eyebrow {
  font-size: 0.6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--orange);
}
.carousel-title { margin-top: 0.5rem; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.01em; }
.carousel-tagline { margin-top: 0.5rem; max-width: 42rem; font-size: 0.875rem; color: rgba(16,16,16,0.7); }

.carousel-stage-wrap {
  position: relative;
  margin: 0 1.5rem 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--ivory);
}
.carousel-stage { position: relative; aspect-ratio: 16 / 10; }
.carousel-stage img {
  position: absolute; inset: 0;
  height: 100%; width: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel-stage img.is-active { opacity: 1; }

.carousel-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 9999px;
  background: rgba(16,16,16,0.8);
  color: var(--ivory);
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}
.carousel-img-nav:hover { background: var(--ink); }
.carousel-img-prev { left: 0.75rem; }
.carousel-img-next { right: 0.75rem; }

.carousel-dots {
  position: absolute;
  inset-inline: 0; bottom: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 0.375rem;
}
.carousel-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background: rgba(16,16,16,0.3);
  transition: all 0.2s ease;
}
.carousel-dot.is-active { width: 1.5rem; background: var(--orange); }

/* ---------------- Responsive ---------------- */
@media (min-width: 640px) {
  .brand-text { display: block; }
  .hero h1 { font-size: 3.75rem; }
  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .founder-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .container { padding-inline: 1.5rem; }
  .main-nav { display: flex; }
  .hero .container { grid-template-columns: 1.05fr 1fr; padding-block: 5rem 6rem; }
  .hero h1 { font-size: 4.75rem; }
  .hero-lead { font-size: 1.125rem; }
  .hero-visual { min-height: 560px; }
  .hero-card { right: 3.5rem; top: 2.5rem; height: 480px; width: 320px; }
  .hero-bubble { display: flex; }
  .hero-stat-1 { left: 0.5rem; width: 210px; }
  .hero-stat-2 { display: block; }
  .stats-section .container { grid-template-columns: repeat(3, 1fr); }
  .stat-card-value { font-size: 3.75rem; }
  .platform-list span { font-size: 1rem; }
  .section-header { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .section-lead { margin-top: 2.5rem; }
  .section-title { font-size: 3rem; }
  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .value-section .container { grid-template-columns: repeat(2, 1fr); gap: 5rem; }
  .value-title { font-size: 3rem; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-step { border-top: none; border-left: 1px solid rgba(0,0,0,0.05); }
  .process-step:first-child { border-left: none; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-section .container { grid-template-columns: 0.9fr 1.1fr; }
  .founder-title { font-size: 3rem; }
  .cta-panel { padding: 6rem 4rem; }
  .cta-decor-2 { display: block; }
  .cta-decor-3 { display: block; }
  .cta-title { font-size: 3.75rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .carousel-overlay { padding: 2rem; }
  .carousel-prev { left: 2rem; }
  .carousel-next { right: 2rem; }
  .carousel-header { padding: 2.5rem 2.5rem 1.5rem; }
  .carousel-title { font-size: 2.25rem; }
  .carousel-tagline { font-size: 1rem; }
  .carousel-stage-wrap { margin-inline: 2.5rem; margin-bottom: 2.5rem; }
}

@media (min-width: 1024px) {
  .services-cards { grid-template-columns: repeat(4, 1fr); }
}
