:root {
  --bg: #0a0a0a;
  --panel: #1a1a1a;
  --accent: #ff5227;
  --accent-hover: #ff7a52;
  --text-primary: #f2f0ea;
  --text-heading: #c9c9c9;
  --text-body: #9a9a9a;
  --text-label: #7a7a7a;
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.08);
}

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

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

a {
  color: var(--accent);
}
@media (hover: hover) and (pointer: fine) {
  a:hover { color: var(--accent-hover); }
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-label);
  letter-spacing: 0.5px;
}

.h1 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: var(--text-heading);
  line-height: 0.95;
  letter-spacing: 0.5px;
}

.body-text {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
}

/* ---------- Icons (inline SVG, replaces emoji/text glyphs) ---------- */
.icon-arrow, .icon-plus, .icon-check {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

.reg-mark {
  font-size: 0.25em;
  position: relative;
  top: -0.3em;
}
.reg-mark.small { font-size: 10px; top: -8px; }
.reg-mark.large { font-size: 26px; top: -10px; }

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

/* ---------- Page transition overlay ---------- */
#page-transition-overlay {
  position: fixed;
  inset: 0;
  height: 100vh;
  background: #ff5a36;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  pointer-events: none;
  will-change: transform;
}
#page-transition-logo {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 7vw, 90px);
  color: var(--bg);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: scale(0.85);
  will-change: opacity, transform;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 40px;
  background: var(--bg);
  flex-wrap: wrap;
}
.nav-logo {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 2px;
  opacity: 0;
  cursor: pointer;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.availability {
  display: flex;
  align-items: center;
  gap: 8px;
}
.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #39d353;
  display: inline-block;
}
.availability-text { line-height: 1.3; }
.availability-label { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.clock { line-height: 1.3; text-align: right; }
.clock-time { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.clock-tz { font-size: 11px; color: var(--text-label); }

.hover-btn {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  border: none;
}
.subscribe-btn {
  background: var(--panel);
  border: 1px solid #3a3a3a;
  color: #ffffff;
  border-radius: 999px;
  font-size: 13px;
}
.navbar-cta { padding: 12px 22px; min-height: 44px; display: inline-flex; align-items: center; }
.menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-btn-bars { display: flex; flex-direction: column; gap: 4px; }
.menu-btn-bars span { width: 16px; height: 2px; background: var(--text-primary); display: block; }

/* ---------- Mobile menu ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 90vw);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  z-index: 201;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 40px 44px;
  font-family: 'Inter', sans-serif;
  visibility: hidden;
}
.menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}
.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.close-line {
  position: absolute;
  width: 16px;
  height: 2px;
  background: var(--text-primary);
}
.close-line.a { transform: rotate(45deg); }
.close-line.b { transform: rotate(-45deg); }
.menu-items { display: flex; flex-direction: column; }
.menu-item {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(30px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.menu-underline {
  position: absolute;
  left: 0;
  bottom: 14px;
  height: 2px;
  width: 0;
  background: var(--accent);
}
.menu-panel-foot { display: flex; flex-direction: column; gap: 28px; }
.menu-email { color: var(--text-primary); font-size: 18px; font-weight: 600; }
.menu-socials { display: flex; flex-direction: column; gap: 8px; }
.menu-socials a { color: var(--text-label); font-size: 15px; font-weight: 600; text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
  .menu-socials a:hover { color: var(--text-primary); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: min(820px, 100vh);
  min-height: 620px;
  overflow: hidden;
  padding: 56px 5% 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; opacity: 0.5; filter: grayscale(1) contrast(1.05); object-fit: cover; object-position: center 12%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.25) 35%, rgba(10, 10, 10, 0.75) 100%);
}
.hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.hero-logo {
  font-family: 'Anton', sans-serif;
  font-size: clamp(70px, 10vw, 150px);
  color: var(--text-heading);
  line-height: 0.85;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero-tagline {
  text-align: right;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  flex-shrink: 0;
}
.hero-strapline {
  position: absolute;
  left: 5%;
  bottom: 170px;
  z-index: 1;
  max-width: 520px;
  font-size: 22px;
  line-height: 1.4;
}
.hero-strapline .strap-emphasis { color: var(--text-primary); font-weight: 700; }
.hero-strapline .strap-connector { color: #8a8a8a; font-weight: 400; }
.hero-strapline .strap-soft { color: #b8b8b4; font-weight: 700; }
.hero-trusted {
  position: absolute;
  left: 5%;
  bottom: 96px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-trusted .label { font-size: 14px; }
.marquee-mask {
  position: relative;
  width: 520px;
  height: 56px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 18s linear infinite;
}
.trusted-logo {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.hero-cta {
  position: absolute;
  right: 5%;
  bottom: 56px;
  z-index: 1;
  width: auto;
  padding: 20px 40px;
  font-size: 14px;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

/* ---------- About ---------- */
.about-section {
  padding: 220px 8% 240px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}
.about-label { width: 100px; flex-shrink: 0; padding-top: 6px; font-size: 21px; text-align: center; }
.about-text {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  flex: 1 1 0;
  width: 100%;
  max-width: 900px;
  line-height: 1.35;
}
.about-word {
  font-size: 32px;
  text-align: left;
  line-height: 42.5px;
}

/* ---------- Work ---------- */
.work-section { padding: clamp(60px, 10vh, 140px) 8%; }
.section-heading { text-align: center; position: relative; margin-bottom: clamp(30px, 6vh, 70px); }
.section-heading .h1 { font-size: clamp(30px, 4.5vw, 60px); display: inline-block; margin: 0; }
.section-num { position: relative; top: -36px; margin-left: 8px; }
.work-list { border-top: 1px solid var(--border); }
.work-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  position: relative;
}
.work-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #4a4a4a;
  flex-shrink: 0;
  width: 40px;
}
.work-num-dot { color: var(--accent); }
.work-thumb {
  width: 160px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: #141414;
  position: relative;
  flex-shrink: 0;
}
.work-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-info { flex: 1; min-width: 0; }
.work-title { font-size: clamp(17px, 1.6vw, 21px); font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.work-desc { font-size: 14px; line-height: 1.4; }
.work-arrow { color: var(--accent); font-size: 20px; flex-shrink: 0; }
.work-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  z-index: 3;
}
.work-cursor .icon { font-size: 18px; line-height: 1; }
.section-cta { text-align: center; margin-top: clamp(30px, 5vh, 60px); }
.ghost-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--accent);
  border-radius: 999px;
  padding: 14px 34px;
  font-size: 13px;
}

/* ---------- Numbers ---------- */
.numbers-section { padding: 100px 8%; }
.numbers-head { display: flex; justify-content: space-between; gap: 60px; margin-bottom: 70px; }
.numbers-title { font-size: 56px; margin: 0; }
.numbers-desc { font-size: 20px; max-width: 420px; line-height: 1.5; padding-top: 40px; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); }
.numbers-grid .stat { padding: 36px 30px 0; border-right: 1px solid var(--border-soft); }
.stat-value { font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 800; color: var(--text-primary); }
.stat-value .accent { color: var(--accent); }
.stat-label { font-size: 15px; margin-top: 14px; line-height: 1.4; }

/* ---------- Services ---------- */
.services-section { padding: 100px 8%; }
.services-list { border-top: 1px solid var(--border); }
.service-row { border-bottom: 1px solid var(--border); overflow: hidden; cursor: pointer; }
.service-row-head { display: flex; align-items: center; justify-content: space-between; padding: 44px 0; }
.service-num { font-family: 'Inter', sans-serif; font-size: 22px; color: #4a4a4a; font-weight: 600; }
.service-num span { color: var(--accent); }
.service-title { font-family: 'Inter', sans-serif; font-size: 34px; font-weight: 700; color: var(--text-heading); transition: color 0.4s ease; }
.service-arrow { width: 22px; color: var(--accent); font-size: 22px; }
.service-panel { display: flex; gap: 32px; align-items: center; height: 0; opacity: 0; overflow: hidden; }
.service-thumb { width: 220px; height: 150px; border-radius: 12px; overflow: hidden; flex-shrink: 0; background: var(--panel); }
.service-icon { width: 100%; height: 100%; display: block; }
.service-desc { font-size: 17px; line-height: 1.6; max-width: 480px; }

/* ---------- Process ---------- */
.process-section { padding: 100px 8%; }
.process-inner { display: flex; gap: 60px; margin-bottom: 70px; }
.process-heading { width: 320px; flex-shrink: 0; }
.process-heading .h1 { font-size: clamp(30px, 4.5vw, 60px); margin: 0; }
.process-grid { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); }
.process-step {
  padding: 30px 26px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step-n { font-family: 'Inter', sans-serif; font-size: 15px; color: #8a8a8a; letter-spacing: 0.5px; }
.step-n span { color: var(--accent); }
.step-title { font-size: 26px; font-weight: 700; color: var(--text-heading); margin-bottom: 16px; line-height: 1.2; }
.step-desc { font-size: 15px; line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq-section { padding: 100px 8% 140px; }
.faq-inner { display: flex; gap: 80px; }
.faq-side { width: 280px; flex-shrink: 0; }
.faq-title { font-size: 72px; margin: 0 0 30px; }
.faq-list { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; padding: 28px 32px; cursor: pointer; }
.faq-item-head { display: flex; align-items: center; justify-content: space-between; }
.faq-q { font-size: 19px; font-weight: 600; color: var(--text-heading); }
.faq-icon { color: var(--accent); font-size: 20px; flex-shrink: 0; margin-left: 20px; display: inline-flex; transition: transform 0.35s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 0;
  max-width: 760px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.35s ease;
}
.faq-item.open .faq-a { max-height: 240px; opacity: 1; margin-top: 16px; }

/* ---------- Footer ---------- */
.footer-wrap { position: relative; background: var(--bg); }
.footer { position: relative; z-index: 1; background: var(--bg); padding: 120px 8% 100px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; position: relative; z-index: 1; }
.footer-email { font-size: 22px; font-weight: 700; color: var(--accent); margin-bottom: 30px; }
.footer-cols { display: flex; gap: 60px; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { color: var(--text-primary); font-size: 17px; font-weight: 600; text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover { color: var(--accent); }
}
.newsletter-form { display: block; }
.newsletter-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
  font-size: 15px;
  padding: 6px 0;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.newsletter-input:focus { outline: none; border-bottom-color: var(--accent); }
.newsletter-submit { width: 100%; padding: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: var(--text-label); text-decoration: none; font-weight: 600; }
@media (hover: hover) and (pointer: fine) {
  .footer-legal a:hover { color: var(--text-primary); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { height: auto; min-height: 640px; padding-bottom: 320px; }
  .hero-tagline { font-size: clamp(20px, 6vw, 34px); }
  .hero-strapline { bottom: 240px; max-width: 90%; font-size: 18px; }
  .hero-trusted { bottom: 130px; }
  .hero-cta { position: relative; right: auto; bottom: auto; margin: 40px 5% 0; display: inline-block; }
  .about-section { padding: 90px 6% 70px; flex-direction: column; gap: 20px; }
  .about-label { text-align: left; width: auto; }
  .work-section { padding: 60px 6%; }
  .numbers-section { padding: 64px 6%; }
  .numbers-head { flex-direction: column; gap: 24px; margin-bottom: 40px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid .stat:nth-child(2n) { border-right: none; }
  .services-section { padding: 64px 6%; }
  .process-section { padding: 64px 6%; }
  .process-inner { flex-direction: column; gap: 30px; margin-bottom: 40px; }
  .process-heading { width: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-section { padding: 64px 6% 80px; }
  .faq-inner { flex-direction: column; gap: 30px; }
  .faq-side { width: auto; }
  .footer { padding: 70px 6% 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .work-item { gap: 16px; padding: 20px 0; }
  .work-thumb { width: 96px; }
  .work-num { width: 26px; font-size: 15px; }
  .service-row-head { justify-content: flex-start; gap: 16px; }
  .service-title { font-size: 24px; flex: 1; }
  .service-panel { flex-wrap: wrap; }
}

/* ---------- Works page ---------- */
.works-hero { padding: 100px 8% 140px; }
.works-hero-title { font-size: clamp(38px, 7vw, 96px); margin: 0 0 60px; }
.works-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px 40px; }
.works-card { display: block; }
.works-thumb-link {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #141414;
  margin-bottom: 24px;
  position: relative;
  cursor: none;
}
.works-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.works-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}
.works-card-desc { font-size: 16px; line-height: 1.5; }

/* ---------- Contact page ---------- */
.contact-section { padding: 120px 8% 100px; }
.contact-layout { display: flex; gap: 80px; align-items: flex-start; flex-wrap: wrap; margin-bottom: 100px; }
.contact-info { flex: 1; min-width: 340px; }
.contact-title { font-size: clamp(36px, 6vw, 104px); margin: 0 0 30px; overflow-wrap: break-word; }
.contact-desc { font-size: 16px; line-height: 1.55; max-width: 480px; }
.contact-form-panel {
  flex: 1;
  min-width: 340px;
  max-width: 780px;
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}
.contact-form-row { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.contact-field {
  flex: 1;
  min-width: 160px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 17px;
  padding: 20px 22px;
  font-family: 'Inter', sans-serif;
}
.contact-field::placeholder { color: #5a5a5a; }
.contact-field:focus { outline: none; border-color: var(--accent); }
textarea.contact-field { width: 100%; resize: vertical; margin-bottom: 26px; }
.contact-form-actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; flex-wrap: wrap; }
.contact-submit-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  padding: 18px 34px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-faq-section { padding: 0 8% 140px; }

@media (max-width: 900px) {
  .contact-section { padding: 70px 6% 60px; }
  .contact-layout { flex-direction: column; gap: 40px; margin-bottom: 60px; }
  .contact-info { min-width: 0; width: 100%; }
  .contact-form-panel { min-width: 0; width: 100%; max-width: none; padding: 28px; }
  .contact-faq-section { padding: 0 6% 80px; }
}

@media (max-width: 700px) {
  .works-hero { padding: 60px 6% 70px; }
  .works-hero-title { margin-bottom: 36px; }
  .works-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 560px) {
  .navbar { padding: 16px 20px; }
  .navbar-right { gap: 16px; }
  .clock, .availability-text { display: none; }

  /* Hero: same full-bleed photo + scrim as desktop, unchanged — only the
     overlaid text switches from absolute positioning to a normal stacked
     flow here, since the desktop overlay layout overlaps at phone widths. */
  .hero {
    height: auto;
    min-height: 0;
    padding: 24px 6% 40px;
  }
  .hero-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hero-logo { font-size: clamp(44px, 15vw, 64px); }
  .hero-tagline {
    text-align: left;
    font-size: clamp(28px, 9vw, 38px);
  }
  .hero-strapline {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 28px;
    font-size: 16px;
  }
  .hero-trusted {
    position: relative;
    left: auto;
    bottom: auto;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }
  .marquee-mask { width: 180px; }
  .hero-cta {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin-top: 24px;
  }

  .numbers-grid { grid-template-columns: 1fr; }
  .numbers-grid .stat { border-right: none; border-bottom: 1px solid var(--border-soft); padding-bottom: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; min-height: auto; }
}
