:root {
  --teal: #3dd0f5;
  --teal-dark: #1fb0e0;
  --teal-deep: #0f8dc2;
  --ink: #0c2436;
  --ink-soft: #4f6572;
  --bg: #fafcfc;
  --white: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.noise-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 200;
  opacity: 0.035;
  mix-blend-mode: overlay;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --heading-font: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  padding: 12px 40px;
  box-shadow: 0 4px 30px rgba(18, 32, 58, 0.06);
}

.site-header .logo { font-family: var(--heading-font);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.site-header.scrolled .logo { color: var(--ink); }
.site-header .logo img { width: 34px; height: 34px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s var(--ease);
}
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }
.site-header.scrolled .site-nav a { color: var(--ink-soft); }
.site-header.scrolled .site-nav a.active,
.site-header.scrolled .site-nav a:hover { color: var(--ink); }
.header-right { display: flex; align-items: center; gap: 40px; }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .site-nav { display: none; }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(61, 208, 245, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: none;
  cursor: pointer;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(61, 208, 245, 0.5); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0a2436;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 2.2s ease, transform 9s linear;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.26);
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(100deg, rgba(6, 18, 28, 0.92) 0%, rgba(8, 24, 36, 0.7) 45%, rgba(8, 24, 36, 0.4) 100%);
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, -3%) scale(1.08); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
}

.hero-content { position: relative; z-index: 3; color: var(--white); }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--teal);
  font-weight: 700;
  opacity: 0;
}

.hero h1 { font-family: var(--heading-font);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 22px 0 10px;
  letter-spacing: 0.01em;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
}

.hero h1 .line:nth-child(2) span { color: var(--teal); }

.hero p.sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 18px auto 40px;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
}
.cta-outline:hover { border-color: var(--teal); background: rgba(61, 208, 245, 0.1); }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  z-index: 2;
}

.scroll-cue .dot-track {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-cue .dot-track::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--teal);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -20px; }
  60% { top: 44px; }
  100% { top: 44px; }
}

/* ---------- Section generic ---------- */
section { padding: 140px 0; position: relative; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--teal-deep);
  margin-bottom: 18px;
}
.section-title { font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.section-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 560px;
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.12s; }
.reveal-delay-2.in-view { transition-delay: 0.24s; }
.reveal-delay-3.in-view { transition-delay: 0.36s; }
.reveal-delay-4.in-view { transition-delay: 0.48s; }

/* ---------- Stats ---------- */
.stats {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num { font-family: var(--heading-font);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-label {
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* ---------- Founder ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
  justify-self: center;
}
.founder-photo-wrap img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(18, 32, 58, 0.18);
  position: relative;
  z-index: 2;
}
.founder-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  z-index: 1;
  animation: spin 24s linear infinite;
  border-style: dashed;
  opacity: 0.6;
}
@keyframes spin { to { transform: rotate(360deg); } }

.founder-quote { font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0;
  line-height: 1.9;
}
.founder-quote .teal { color: var(--teal-deep); }
.founder-name {
  margin-top: 28px;
  font-weight: 700;
  font-size: 1rem;
}
.founder-role { color: var(--ink-soft); font-size: 0.88rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 26px;
  box-shadow: 0 2px 24px rgba(18, 32, 58, 0.05);
  border: 1px solid rgba(18, 32, 58, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(61, 208, 245, 0.18);
  border-color: var(--teal);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-family: var(--heading-font); font-size: 1.02rem; margin-bottom: 10px; font-weight: 700; }
.service-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Before/After ---------- */
.before-after {
  background: #0a1f2e;
  color: white;
  text-align: center;
}
.before-after .section-tag { color: var(--teal); }
.before-after .section-title { color: white; }
.before-after .section-lead { color: rgba(255,255,255,0.65); margin: 0 auto; }

.ba-gallery {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 60px;
}
.ba-pair {
  max-width: 760px;
  margin: 0 auto;
  transform: scale(0.94);
  opacity: 0;
  transition: transform 1.1s var(--ease), opacity 1.1s var(--ease);
}
.ba-pair.in-view { transform: scale(1); opacity: 1; }
.ba-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.ba-half { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ba-half img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ba-half:hover img { transform: scale(1.05); }
.ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 16px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: white;
  z-index: 2;
}
.ba-label.before { background: rgba(214, 48, 49, 0.92); }
.ba-label.after { background: rgba(0, 179, 107, 0.92); }
.ba-caption { margin-top: 18px; font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.ba-caption strong { color: white; }

/* ---------- CTA ---------- */
.cta-section {
  background: var(--teal-deep);
  color: white;
  text-align: center;
  padding: 120px 0;
}
.cta-section .section-title { color: white; }
.cta-section .section-lead { color: rgba(255,255,255,0.85); margin: 0 auto 40px; }
.cta-phone { font-family: var(--heading-font);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-block;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
}
.cta-phone-label { font-size: 0.85rem; letter-spacing: 0.15em; opacity: 0.85; margin-bottom: 6px; }
.cta-buttons { display: flex; gap: 18px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.cta-button.light { background: white; color: var(--teal-deep); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.cta-button.light:hover { box-shadow: 0 16px 36px rgba(0,0,0,0.22); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a2436;
  padding: 160px 0 70px;
  color: white;
}
.page-hero .hero-bg { display: none; }
.page-hero .hero-grid-lines { display: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .hero-eyebrow { color: var(--teal); }
.page-hero h1 { font-family: var(--heading-font); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; margin: 16px 0 14px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; font-size: 1rem; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }

/* ---------- Reasons ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.reason-card {
  text-align: left;
  padding: 8px;
}
.reason-num {
  font-size: 0.85rem;
  color: var(--teal-deep);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.reason-card h3 { font-family: var(--heading-font); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.reason-card p { font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- Flow steps ---------- */
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1 1 200px;
  position: relative;
  padding: 0 24px 0 0;
  text-align: left;
}
.flow-step .flow-index {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
}
.flow-step h3 { font-family: var(--heading-font); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.flow-step p { font-size: 0.85rem; color: var(--ink-soft); }
.flow-arrow {
  align-self: center;
  color: var(--teal);
  font-size: 1.4rem;
  margin: 0 4px;
  opacity: 0.5;
}
@media (max-width: 860px) {
  .flow-steps { flex-direction: column; gap: 32px; }
  .flow-arrow { display: none; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Quote / testimonial ---------- */
.quote-section {
  background: var(--ink);
  color: white;
  text-align: center;
}
.quote-mark { font-size: 3.5rem; color: var(--teal); font-weight: 800; line-height: 1; margin-bottom: 10px; font-family: Georgia, serif; }
.quote-text { font-family: var(--heading-font);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 700;
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.quote-attribution { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ---------- Simple table (pricing) ---------- */
.price-table {
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(18,32,58,0.06);
  border: 1px solid rgba(18,32,58,0.07);
}
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(18,32,58,0.06);
  align-items: center;
}
.price-row:last-child { border-bottom: none; }
.price-row.head { background: var(--ink); color: white; font-weight: 700; font-size: 0.9rem; }
.price-row div:first-child { font-weight: 700; }
.price-row .price-val { color: var(--teal-deep); font-weight: 800; }
.price-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 20px; }

/* ---------- Works grid (portfolio) ---------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.work-card {
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 20px rgba(18,32,58,0.05);
  border: 1px solid rgba(18,32,58,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.work-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(18,32,58,0.12); }
.work-card .work-img { aspect-ratio: 4/3; overflow: hidden; }
.work-card .work-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-img img { transform: scale(1.08); }
.work-img.icon-only {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  opacity: 0.85;
}
.work-img.icon-only svg { width: 30%; height: 30%; }
.work-card .work-body { padding: 20px 22px; }
.work-tag { font-size: 0.72rem; color: var(--teal-deep); font-weight: 700; letter-spacing: 0.08em; }
.work-card h3 { font-family: var(--heading-font); font-size: 0.98rem; margin: 8px 0 6px; }
.work-card p { font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 860px) { .works-grid { grid-template-columns: 1fr; } }

/* ---------- Contact form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact-info-card {
  background: var(--ink);
  color: white;
  border-radius: 24px;
  padding: 44px 36px;
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 20px; }
.contact-info-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row span:first-child { color: rgba(255,255,255,0.55); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid rgba(18,32,58,0.12);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.3s var(--ease);
  background: white;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-submit {
  align-self: flex-start;
  margin-top: 10px;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: white;
  border: 1px solid rgba(18,32,58,0.08);
  border-radius: 14px;
  padding: 26px 30px;
  margin-bottom: 14px;
}
.faq-q {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.faq-q .q-mark {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.faq-a {
  margin-top: 14px;
  padding-left: 42px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ---------- Gallery carousel ---------- */
.gallery-section { padding-bottom: 60px; }
.gallery-swiper {
  margin-top: 50px;
  padding: 10px 32px 40px;
}
.gallery-swiper .swiper-slide {
  width: 320px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: 0 10px 30px rgba(18,32,58,0.1);
}
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
}
@media (max-width: 640px) {
  .gallery-swiper .swiper-slide { width: 240px; }
}

/* ---------- Testimonials grid ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 30px 26px;
}
.testimonial-card .quote-mark { font-size: 2rem; margin-bottom: 6px; }
.testimonial-card p.t-text { color: rgba(255,255,255,0.85); font-size: 0.92rem; line-height: 1.8; margin-bottom: 18px; }
.testimonial-card p.t-attr { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer nav ---------- */
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; text-align: left; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; }
.footer-nav a:hover { color: var(--teal); }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 40px 0;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .founder { grid-template-columns: 1fr; text-align: center; }
  .founder-quote { text-align: left; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats .container { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 90px 0; }
  .site-header { padding: 16px 20px; }
}
