﻿:root {
  --blue: #1a69fd;
  --white: #ffffff;
  --black: #000000;
  --footer: #030303;
  --body: #ffffff;
  --muted-blue: #3b5068;
  --border-light: #eaecf4;
  --equip: "EquipExtended-Medium", "Poppins", Arial, sans-serif;
  --clash: "Clash Display", "Poppins", Arial, sans-serif;
  --container: 1340px;
  --page-pad: 60px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--body);
  color: var(--black);
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header,
.hero-slide,
.credibility-strip,
.impact,
.services-section,
.stories,
.industries,
.appreciation,
.insights,
.footer {
  padding-left: max(var(--page-pad), calc((100vw - var(--container)) / 2));
  padding-right: max(var(--page-pad), calc((100vw - var(--container)) / 2));
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 20;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: max(var(--page-pad), calc((100vw - var(--container)) / 2));
  padding-right: max(var(--page-pad), calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: var(--white);
}
.site-logo img {
  width: 183px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--equip);
  font-size: 16px;
  line-height: 1;
  color: var(--white);
}
.site-nav > a:not(.blue-button) { white-space: nowrap; font-size: 16px;}
.site-nav > a:not(.blue-button):hover { opacity: .8; }
.nav-toggle { display: none; }

.blue-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 52px;
  padding: 16px 20px;
  border: 0;
  border-radius: 50px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--equip);
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.blue-button img {
  transition: transform .25s var(--ease);
}
.blue-button:hover,
.blue-button:focus-visible {
  background: #0f5be8;
  box-shadow: 0 14px 30px rgba(26, 105, 253, .28);
  transform: translateY(-2px);
}
.blue-button:hover img,
.blue-button:focus-visible img {
  transform: translateX(3px);
}
.blue-button:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 8px 18px rgba(26, 105, 253, .22);
}
.blue-button:focus-visible,
.hero-tab:focus-visible,
.person:focus-visible,
.arrows span:focus-visible,
.arrows button:focus-visible,
.industry-dots button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.header-button { height: 45px; }


.about-company-intro {
  padding-top: 110px;
  padding-bottom: 95px;
  background: #fff;
}
.about-company-intro-inner,
.about-company-media-inner,
.about-company-values-inner,
.about-company-why,
.about-company-location-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.about-company-intro-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px 80px;
}
.about-company-eyebrow {
  color: var(--blue);
  font-family: var(--equip);
  font-size: 18px;
  line-height: 1;
}
.about-company-intro h2,
.about-company-panel h2,
.about-company-section-head h2,
.about-company-location h2 {
  margin: 0;
  color: #101010;
  font-family: var(--clash);
  font-size: 58px;
  line-height: 1.05;
  font-weight: 500;
}
.about-company-intro p,
.about-company-panel p,
.about-company-section-head p,
.about-company-value-grid p,
.about-company-why-grid p,
.about-company-location p {
  margin: 18px 0 0;
  color: #101010;
  font-size: 18px;
  line-height: 1.78;
}
.about-company-stats {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
.about-company-stats article {
  min-height: 148px;
  padding: 26px 30px;
  border-right: 1px solid #e7e7e7;
}
.about-company-stats article:last-child {
  border-right: 0;
}
.about-company-stats strong {
  display: block;
  color: var(--blue);
  font-family: var(--clash);
  font-size: 46px;
  line-height: 1;
  font-weight: 600;
}
.about-company-stats span {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.5;
}
.about-company-media {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #f7f7f7;
}
.about-company-media-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 490px;
  gap: 68px;
  align-items: center;
}
.about-company-image {
  overflow: hidden;
  background: #ddd;
}
.about-company-image-large {
  height: 560px;
  border-radius: 0 0 0 110px;
}
.about-company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-company-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-company-panel .blue-button {
  margin-top: 24px;
}
.about-company-values {
  padding-top: 100px;
  padding-bottom: 110px;
  background: #050505;
  color: #fff;
}
.about-company-values .about-company-section-head {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}
.about-company-values .about-company-section-head h2,
.about-company-values .about-company-section-head p {
  color: #fff;
}
.about-company-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.about-company-value-grid article {
  min-height: 310px;
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,.16);
}
.about-company-value-grid article:last-child {
  border-right: 0;
}
.about-company-value-grid span {
  display: block;
  margin-bottom: 84px;
  color: var(--blue);
  font-family: var(--equip);
  font-size: 16px;
}
.about-company-value-grid h3,
.about-company-why-grid h3 {
  margin: 0;
  font-family: var(--clash);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
}
.about-company-value-grid p {
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.65;
}
.about-company-why {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}
.about-company-why > .about-company-section-head {
  max-width: var(--container);
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto 34px;
}
.about-company-why > .about-company-section-head p {
  max-width: 520px;
  margin-top: 0;
}
.about-company-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.about-company-why-grid article {
  min-height: 520px;
  border: 1px solid var(--border-light);
  background: #fff;
}
.about-company-why-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}
.about-company-why-grid h3 {
  padding: 26px 26px 0;
}
.about-company-why-grid p {
  padding: 0 26px 28px;
  font-size: 15px;
  line-height: 1.65;
}
.about-company-location {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #f7f7f7;
}
.about-company-location-image {
  position: relative;
  height: 430px;
  margin-top: 28px;
  overflow: hidden;
  background: #0b1620;
}
.about-company-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-company-location-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}
.about-company-location-image strong {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: var(--clash);
  font-size: clamp(64px, 12vw, 170px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}
.about-company-location p {
  margin-top: 22px;
  color: var(--blue);
  font-family: var(--equip);
  font-size: 18px;
  line-height: 1.2;
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: var(--black);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-family: "Clash Display", "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.08em;
  font-size: 2.05rem;
  line-height: 1;
}

.brand-word { display: inline-block; }
.brand-mark {
  display: inline-block;
  color: #2f8cff;
  margin: 0 2px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-nav a {
  color: rgba(255,255,255,0.92);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.arrow {
  display: inline-block;
  font-size: 0.84rem;
  transform: translateY(-1px);
}

.main-content {
  padding: 60px 0px;
  background: #fff;
}

.contact-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  border-radius: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
  padding: 24px 30px 0;
}

.contact-copy {
  padding-left: 2px;
}

.contact-copy h1 {
  margin: 0;
  font-family: "Clash Display", "Poppins", sans-serif;
  font-size: 4.1rem;
  line-height: 0.9;
  letter-spacing: -2px;
  font-weight: 600;
  color: var(--text);
}

.subhead {
  margin: 18px 0 14px;
  font-size: 1.05rem;
  color: rgba(17,17,17,0.82);
}

.intro {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(17,17,17,0.8);
}

.contact-list {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 0.92;
}

.icon-pin {
  border: 2px solid #111;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-pin::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
  left: 4px;
  top: 5px;
}

.icon-mail {
  border: 2px solid #111;
  border-radius: 4px;
}

.icon-mail::before,
.icon-mail::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 2px;
  background: #111;
  top: 7px;
  transform: skewY(-15deg);
}

.icon-mail::after {
  transform: skewY(15deg);
  top: 9px;
}

.contact-item h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.9);
}

.contact-item p {
  margin: 4px 0 0;
  color: rgba(17,17,17,0.8);
  font-size: 0.84rem;
  line-height: 1.5;
}

.desk-image-wrap {
  margin-top: 26px;
  width: min(100%, 480px);
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none;
}

.desk-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-panel {
  padding-right: 8px;
}

.contact-form {
  width: 100%;
  background: rgba(245,246,247,0.92);
  border-radius: 14px;
  padding: 20px 18px 16px;
}

.field-group {
  margin-bottom: 16px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.72);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--field-border);
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
  color: #1b1b1b;
  font-size: 0.95rem;
  padding: 12px 14px;
  outline: none;
}

.field-group input {
  height: 44px;
}

.phone-field {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: center;
}

.country-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  border: 1px solid var(--field-border);
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
  padding: 0 12px;
  color: rgba(17,17,17,0.8);
}

.country-code {
  font-size: 0.92rem;
}

.select-caret {
  font-size: 0.9rem;
  color: rgba(17,17,17,0.8);
}

.help-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option {
  border: 1px solid rgba(17,17,17,0.18);
  background: rgba(255,255,255,0.18);
  color: rgba(17,17,17,0.78);
  border-radius: 999px;
  min-height: 30px;
  padding: 6px 14px;
  font-size: .9rem;
  cursor: pointer;
}

.option.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  color: rgba(17,17,17,0.72);
  background: rgba(255,255,255,0.6);
}

.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(17,17,17,0.7);
  font-size: 1rem;
  pointer-events: none;
}

textarea {
  min-height: 112px;
  resize: vertical;
  padding-top: 12px;
}

.button-row {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.submit-btn,
.clear-btn {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn {
  background: var(--blue);
  color: var(--white);
}

.clear-btn {
  background: rgba(255,255,255,0.3);
  border-color: rgba(17,17,17,0.14);
  color: rgba(17,17,17,0.85);
}

.site-footer {
  background: var(--footer-black);
  color: var(--white);
  padding-top: 30px;
  padding-bottom: 20px;
}

.footer-wrap {
  padding-top: 10px;
}

.footer-brand {
  font-family: "Clash Display", "Poppins", sans-serif;
  font-size: clamp(5rem, 11vw, 14rem);
  line-height: 0.75;
  letter-spacing: -0.08em;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col h4 {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.96);
}

.footer-col a {
  color: rgba(255,255,255,0.74);
  font-size: 0.75rem;
  line-height: 1.72;
}

.contact-col {
  justify-self: end;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 18px;
}

.socials span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.64rem;
  color: rgba(255,255,255,0.9);
}

.footer-btn {
  width: fit-content;
  padding-inline: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

.footer-bottom p,
.legal-links a {
  margin: 0;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.7);
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}




.about-page .hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 560px;
  padding: 88px clamp(18px, 4vw, 56px) 32px;
  overflow: hidden;
}


.about-page .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(30px, 8vw, 120px);
  align-items: center;
}

.about-page .hero-copy {
  padding-right: 20px;
}

.about-page .hero-copy h1 {
  margin: 0 0 18px;
  font-family: "Clash Display", "Poppins", sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-weight: 600;
  color: #0b0b0b;
}

.about-page .hero-copy p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.5;
  color: rgba(0,0,0,0.65);
}

.about-page .hero-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.36);
}

.about-page .hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.about-page .section {
  padding: clamp(70px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.about-page .about-grid,
.about-page .partnership-grid,
.about-page .culture-row,
.about-page .values-row,
.about-page .locations-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
  gap: clamp(30px, 8vw, 120px);
  align-items: center;
}

.about-page .about-copy h3,
.about-page .partnership-copy h3,
.about-page .culture-copy h3,
.about-page .values-intro h3,
.about-page .location-heading {
  margin: 0 0 16px;
  font-family: "Clash Display", "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 400;
}
.about-page .about-copy h3, 
.about-page .partnership-copy h3, 
.about-page .mini-copy p, 
.about-page .partnership-copy p{
  color: #fff;
}

.about-page .mini-copy p,
.about-page .partnership-copy p,
.about-page .culture-copy p,
.about-page .values-intro p,
.about-page .value-item p,
.about-page .location-meta {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.about-page .stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 38px;
}

.about-page .stat-block {
  display: grid;
  gap: 8px;
}

.about-page .stat-block strong {
  font-family: "Clash Display", "Poppins", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: #fff;
  font-weight: 500;
}
.about-page .values-row {
    padding-top: 100px;
    align-items: center;
}
.about-page .stat-block span {
  color: rgba(17,17,17,0.68);
  font-size: 0.8rem;
  line-height: 1.4;
}

.about-page .about-photo,
.about-page .partnership-photo,
.about-page .culture-photo,
.about-page .values-photo,
.about-page .card-image,
.about-page .location-photo-wrap {
  overflow: hidden;
  border-radius: 18px;
  background: #d9d9d5;
}

.about-page .about-photo img,
.about-page .partnership-photo img,
.about-page .culture-photo img,
.about-page .values-photo img,
.about-page .card-image img,
.about-page .location-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .about-photo img,
.about-page .culture-photo img,
.about-page .values-photo img {
  aspect-ratio: 1.16;
}

.about-page .partnership-photo img {
  aspect-ratio: 1.08;
}

.about-page .partnership-grid {
  align-items: center;
  padding-top: clamp(72px, 10vw, 138px);
}

.about-page .big-title {
  margin: 0 0 28px;
  font-family: "Clash Display", "Poppins", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  color: #fff;
}

.about-page .big-title.light {
  color: #111111;
}

.about-page .culture {
  background: #ffffff;
  padding-top: 96px;
}

.about-page .outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid rgba(17,17,17,0.18);
  border-radius: 999px;
  font-weight: 600;
  color: #111111;
}

.about-page .values-list {
  display: grid;
  gap: 30px;
}

.about-page .value-item {
  padding-top: 23px;
  border-top: 1px solid rgba(17,17,17,0.12);
}

.about-page .value-item h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
  color: #111111;
}

.about-page .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
}

.about-page .feature-card {
  display: grid;
  gap: 14px;
}

.about-page .feature-card h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
  margin-top: 20px;
}

.about-page .card-image img {
  aspect-ratio: 1.03;
}

.about-page .location-section {
  padding-top: 72px;
  padding-bottom: 0;
}

.about-page .location-heading {
  margin-bottom: 22px;
}

.about-page .location-photo-wrap {
  position: relative;
  overflow: hidden;
}

.about-page .location-photo-wrap img {
  aspect-ratio: 2.1;
}

.about-page .location-label {
  position: absolute;
  right: 18px;
  bottom: 28px;
  color: #ffffff;
  font-family: "Clash Display", "Poppins", sans-serif;
  font-size: clamp(1rem, 2vw, 1.65rem);
  letter-spacing: -0.04em;
}

.about-page .location-meta {
  margin-top: 14px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.7);
}

.about-page .site-footer {
  background: #020204;
  color: #ffffff;
  padding-top: 30px;
  padding-bottom: 20px;
}


.about-us, 
.why-us {
    background: #000;
    padding: 100px 0px;
}
.why-us {
  margin-top: 100px;
}
.about-page .feature-card p {
  color: #fff;
  margin-top: 0px;
}


.footer {
  padding-bottom: 80px;
  padding-top: 100px;
  background: var(--footer);
  color: var(--white);
}
.footer-word {
  margin: 0 auto 80px;
  max-width: var(--container);
  width: 100%;
  text-align: center;
  font-family: var(--clash);
  font-size: 200px;
  line-height: 1;
  font-weight: 600;
  color: rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
}
.footer h3 {
  margin: 0 0 10px;
  font-family: var(--equip);
  font-size: 20px;
  line-height: 1.1;
}
.footer a {
  padding: 15px 0;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  line-height: 1.1;
}
.social-links {
  display: flex;
  gap: 16px;
  margin: 10px 0 20px;
}
.social-links a {
  padding: 0;
  width: 22px;
  height: 22px;
  overflow: hidden;
}
.footer-button {
  width: 169px;
  padding: 16px 20px !important;
  color: var(--white) !important;
}
.footer-bottom {
  max-width: var(--container);
  margin: 80px auto 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.1;
}
.footer-bottom p {
  flex: 1 1 0;
  margin: 0;
}
.footer-bottom a {
  padding: 0;
  color: var(--white);
}

.service-detail-talk {
  position: relative;
  padding: 88px max(75px, calc((100vw - var(--container)) / 2));
  overflow: hidden;
  background: #fff;
}
.service-detail-talk::before {
  content: "";
  position: absolute;
  inset: auto -10% -26% auto;
  width: 760px;
  height: 460px;
  background: repeating-radial-gradient(ellipse at center, rgba(26,105,253,.18) 0 1px, transparent 1px 13px);
  pointer-events: none;
}
.service-detail-talk-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.service-detail-talk h2 {
  margin: 0;
  color: #101010;
  font-family: var(--clash);
  font-size: 50px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}
.service-detail-talk p {
  margin: 18px 0 0;
  color: #20242a;
  font-size: 16px;
  line-height: 1.78;
}
.service-detail-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-detail-form input,
.service-detail-form select,
.service-detail-form textarea {
  width: 100%;
  min-height: 45px;
  padding: 12px 14px;
  border: 1px solid #aeb5c2;
  border-radius: 4px;
  background: #fff;
  color: #101010;
  font: 14px/1.4 "Poppins", Arial, sans-serif;
}
.service-detail-form textarea,
.service-detail-form .service-detail-consent,
.service-detail-form .service-detail-captcha,
.service-detail-form button {
  grid-column: 1 / -1;
}
.service-detail-form textarea {
  min-height: 138px;
  resize: vertical;
}
.service-detail-form button {
  width: fit-content;
  min-width: 132px;
  height: 42px;
  border: 0;
  border-radius: 4px;
  background: #061225;
  color: #fff;
  font-family: var(--equip);
  cursor: pointer;
}

.mobile-app-page {
  background: #fff;
  color: #101010;
}
.mobile-app-hero,
.mobile-intro,
.mobile-tabs-section,
.mobile-success,
.mobile-vision,
.mobile-growth,
.mobile-industries {
  padding-left: max(var(--page-pad), calc((100vw - var(--container)) / 2));
  padding-right: max(var(--page-pad), calc((100vw - var(--container)) / 2));
}
.mobile-app-hero {
  position: relative;
  min-height: 720px;
  padding-top: 132px;
  padding-bottom: 88px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 78% 22%, rgba(26,105,253,.22), transparent 34%), #061225;
  color: #fff;
}
.mobile-app-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,18,37,.95), rgba(6,18,37,.78) 52%, rgba(6,18,37,.42));
}
.mobile-app-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 80px;
  align-items: center;
}
.mobile-app-kicker {
  margin: 0 0 18px;
  color: rgba(255,255,255,.76);
  font-family: var(--equip);
  font-size: 14px;
}
.mobile-app-hero h1,
.mobile-section-head h2,
.mobile-tab-panel h3,
.mobile-success h2,
.mobile-vision h2,
.mobile-growth h2,
.mobile-industries h2 {
  margin: 0;
  font-family: var(--clash);
  font-weight: 500;
  letter-spacing: 0;
}
.mobile-app-hero h1 {
  max-width: 730px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: .98;
}
.mobile-app-hero p {
  max-width: 640px;
  margin: 22px 0 30px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.7;
}
.mobile-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.mobile-app-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 15px 20px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50px;
  color: #fff;
  font-family: var(--equip);
}
.mobile-app-phone {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.mobile-app-phone::before,
.mobile-app-phone::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(26,105,253,.28);
  filter: blur(24px);
}
.mobile-app-phone::before {
  width: 300px;
  height: 300px;
}
.mobile-app-phone::after {
  width: 210px;
  height: 210px;
  right: 16px;
  bottom: 28px;
  background: rgba(64,144,112,.28);
}
 
.mobile-intro {
  padding-top: 90px;
  padding-bottom: 80px;
  text-align: center;
}
.mobile-section-head {
  max-width: 900px;
  margin: 0 auto;
}
.mobile-section-head h2,
.mobile-success h2,
.mobile-vision h2,
.mobile-growth h2,
.mobile-industries h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
}
/* .mobile-section-head h2 {
  color: #fff;
} */
.mobile-section-head p {
  margin: 20px auto 0;
  max-width: 780px;
  color: #3d4653;
  font-size: 17px;
  line-height: 1.75;
}
.mobile-tabs-section,
.mobile-growth {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #000;
}
.mobile-tabs-layout {
  max-width: var(--container);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 44px;
}
.mobile-tab-list {
  display: grid;
  gap: 10px;
}
.mobile-tab-button,
.industry-tab-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 62px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #201F1F;
  border: 0px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .24s var(--ease), background-color .24s var(--ease), transform .24s var(--ease);
}
.mobile-tab-button span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
}
.mobile-tab-button.is-active,
.industry-tab-button.is-active {
  background: var(--blue);
  color: #fff;
}
.mobile-tab-button:hover,
.industry-tab-button:hover {
  transform: translateY(-2px);
}
.mobile-tab-panel {
  min-height: 500px;
  padding: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e9f2;
}
.mobile-tab-panel h3 {
  font-size: 42px;
  line-height: 1.1;
}
.mobile-tab-panel p {
  margin: 18px 0 28px;
  color: #344052;
  font-size: 16px;
  line-height: 1.75;
}
.mobile-subservices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.mobile-subservices a {
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid #e5e9f2;
  border-radius: 6px;
  color: #101010;
  font-weight: 500;
  transition: border-color .2s ease, color .2s ease;
}
.mobile-subservices a:hover,
.mobile-subservices a:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}
.mobile-success,
.mobile-vision,
.mobile-industries {
  padding-top: 90px;
  padding-bottom: 90px;
}
.mobile-vision {
  background: #000;
}
.mobile-vision .mobile-section-head h2 {
  color: #fff;
}
.mobile-vision .mobile-section-head p {
  margin: 0;
  color: #fff;
}
.success-slider {
  max-width: var(--container);
  margin: 42px auto 0;
}
.success-viewport {
  overflow: hidden;
}
.success-track {
  display: flex;
  transition: transform .38s var(--ease);
  will-change: transform;
}
.success-slide {
  flex: 0 0 100%;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}
.success-content {
  display: grid;
  gap: 24px;
  padding: 30px;
  background: #000;
}
.success-content h3,
.vision-card h3,
.growth-card h3,
.industry-panel h3 {
  margin: 0;
  font-family: var(--clash);
  font-size: 28px;
  line-height: 1.15;
  color: #fff;
  font-weight: 500;
}
.success-content dl {
  display: grid;
  gap: 16px;
  margin: 0;
}
.success-content dt {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
}
.success-content dd {
  margin: 6px 0 0;
  color: var(--white);
  font-weight: 400;
  line-height: 1.65;
  opacity: .60;
}
.success-visual {
  min-height: 520px;
}
.success-visual>figure {
  margin: 0;
}
.success-brand {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: radial-gradient(circle, rgba(26,105,253,.38), rgba(255,255,255,.05));
  font-family: var(--clash);
  font-size: 54px;
  line-height: 1;
}
.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}
.slider-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid #dce2ed;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.vision-grid,
.growth-grid {
  max-width: var(--container);
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #e5e9f2;
  border-left: 1px solid #e5e9f2;
}
.vision-card,
.growth-card {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid #e5e9f2;
  border-bottom: 1px solid #e5e9f2;
  background: #fff;
}
.vision-card p,
.growth-card p,
.industry-panel p,
.industry-panel li {
  color: #344052;
  font-size: 15px;
  line-height: 1.65;
}
.growth-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: var(--clash);
  font-size: 48px;
  line-height: 1;
}
.industry-tabs {
  max-width: var(--container);
  margin: 38px auto 0;
}
.industry-tab-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.industry-tab-button {
  width: auto;
  flex: 0 0 auto;
  min-height: 48px;
  padding-inline: 22px;
}
.industry-panel {
  margin-top: 22px;
  padding: 34px;
  border: 1px solid #e5e9f2;
  border-radius: 8px;
  background: #fff;
}
.industry-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 24px 0 0;
  padding-left: 18px;
}

.mobile-company {
  padding-top: 136px;
  padding-bottom: 112px;
  text-align: left;
  background: #fff;
}
.mobile-company-inner,
.vision-inner,
.growth-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.mobile-company h2 {
  max-width: 820px;
  margin: 0 0 58px;
  color: #020202;
  font-family: var(--clash);
  font-size: clamp(42px, 5.35vw, 68px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: 0;
}
.mobile-company-grid {
  display: grid;
  grid-template-columns: minmax(360px, .98fr) minmax(360px, .9fr);
  gap: 34px;
  align-items: center;
}
.mobile-company-grid figure {
  min-height: 356px;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}
.mobile-company-grid img {
  width: 100%;
  height: 100%;
  min-height: 356px;
  object-fit: cover;
}
.mobile-company-grid p {
  margin: 0;
  color: #93979f;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
  text-align: justify;
}

.mobile-success {
  padding-top: 54px;
  padding-bottom: 86px;
}
.success-head {
  max-width: 1180px;
  text-align: center;
}
.success-head h2 {
  color: #030303;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.05;
}
.success-head h2 strong,
.success-head h2 span {
  display: block;
}
.success-head h2 strong {
  font-weight: 600;
}
.success-head h2 span {
  font-weight: 400;
}
.success-head p {
  max-width: 1190px;
  margin-top: 42px;
  color: #9a9da3;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.58;
}
.mobile-success .success-slider {
  max-width: 1250px;
  margin-top: 38px;
}
.mobile-success .success-slide {
  gap: 14px;
  grid-template-columns: minmax(350px, 516px) minmax(0, 1fr);
}
.mobile-success .success-content {
  min-height: 514px;
  padding: 30px 30px 28px;
  gap: 20px;
  background: #ff6a00;
  color: #fff;
}
.mobile-success .success-content h3 {
  position: relative;
  padding-bottom: 14px;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}
.mobile-success .success-content h3::after {
  content: "";
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.88);
}
.mobile-success .success-content dl {
  gap: 17px;
}
.mobile-success .success-content dt {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}
.mobile-success .success-content dd {
  margin-top: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.32;
  opacity: 1;
}
.mobile-success .success-visual {
  min-height: 514px;
  padding: 0;
}
.mobile-success .success-visual figure,
.mobile-success .success-visual img {
  width: 100%;
  height: 100%;
}
.mobile-success .success-visual img {
  object-fit: cover;
}
.mobile-success .slider-controls {
  justify-content: center;
  gap: 18px;
  margin-top: 54px;
}
.mobile-success .slider-controls button {
  width: 70px;
  height: 70px;
  border: 0;
  background: #061225;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}

.mobile-vision {
  padding-top: 94px;
  padding-bottom: 112px;
  background: #151515;
}
.vision-copy {
  position: relative;
  max-width: 760px;
  padding-left: 24px;
  margin-bottom: 60px;
}
.vision-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 78px;
  background: #f5aaa6;
}
.vision-copy h2 {
  color: #dedede;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 400;
  line-height: 1;
}
.vision-copy p {
  max-width: 670px;
  margin: 18px 0 0;
  color: #f0b4b2;
  font-size: 17px;
  line-height: 1.48;
}
.vision-grid {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  border: 0;
}
.vision-column h3 {
  margin: 0 0 24px;
  color: #ddd;
  font-family: var(--clash);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}
.vision-column ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vision-column li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: #242323;
  color: #c7c4c4;
  font-size: 14px;
  font-weight: 700;
}
.vision-column li span {
  width: 22px;
  color: #f1a9a5;
  font-size: 22px;
  line-height: 1;
}

.mobile-growth {
  padding: 0;
  background: #fff;
}
.business-impact-title {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 0 70px;
  color: #E0E1E3;
  font-family: var(--clash);
  font-size: clamp(72px, 10.4vw, 148px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: 0;
}
.growth-inner {
  max-width: none;
  min-height: 770px;
  display: grid;
  grid-template-columns: minmax(280px, 405px) minmax(0, 630px);
  justify-content: center;
  gap: 58px;
  align-items: center;
  padding: 115px max(var(--page-pad), calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(90deg, rgba(18,18,18,.96), rgba(18,18,18,.88)),
    url("../assets/growth-network-background.png") center / cover no-repeat;
  color: #fff;
}
.growth-copy h2 {
  margin: 0;
  color: #e7e7e7;
  font-family: var(--clash);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}
.growth-copy h2 span {
  color: #f1aaa5;
}
.growth-copy h2::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 22px;
  background: #f1aaa5;
}
.growth-copy p {
  margin: 42px 0 42px;
  color: #e6e6e6;
  font-size: 17px;
  line-height: 1.6;
}
.growth-copy a {
  width: 255px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid #e6e6e6;
  color: #e6e6e6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.growth-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.growth-card {
  min-height: 205px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(26,26,26,.72);
}
.growth-card-wide {
  min-height: 165px;
  grid-column: 1 / -1;
  margin-left: 0;
}
.growth-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(255,255,255,.06);
  color: #f1aaa5;
  font-size: 24px;
}
.growth-card h3 {
  color: #e5e5e5;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.06;
}
.growth-card p {
  margin: 12px 0 0;
  color: #f1aaa5;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.38;
}
.growth-card-wide h3 {
  font-size: 28px;
}
.growth-card-wide p {
  max-width: 520px;
}

.mobile-industries {
  padding-top: 98px;
  padding-bottom: 118px;
  background: #fff;
}
.mobile-industries .mobile-section-head {
  max-width: 930px;
  text-align: center;
}
.mobile-industries .mobile-section-head h2 {
  color: #030303;
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 600;
  line-height: 1.12;
}
.mobile-industries .mobile-section-head p {
  max-width: 900px;
  margin-top: 28px;
  color: #9b9ea5;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}
.mobile-industries .industry-tabs {
  max-width: 1230px;
  margin-top: 58px;
}
.mobile-industries .industry-tab-list {
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 16px;
}
.mobile-industries .industry-tab-button {
  width: 140px;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px;
  border-radius: 7px;
  background: #f5f5f5;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.mobile-industries .industry-tab-button span {
  color: inherit;
  font-size: 24px;
  line-height: 1;
  width: 24px;
  height: 24px;
}
.mobile-industries .industry-tab-button.is-active {
  background: #030303;
  color: #fff;
}
.mobile-industries .industry-panel {
  margin-top: 0;
  padding: 54px 44px;
  border: 1px solid #f5f5f5;
  border-radius: 20px;
}
.industry-panel-inner {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
}
.industry-panel-copy h3 {
  color: #111;
  font-size: 31px;
  font-weight: 700;
}
.industry-panel-copy p {
  max-width: 530px;
  margin: 28px 0 36px;
  color: #9b9ea5;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}
.industry-panel-copy ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.industry-panel-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8f9298;
  font-size: 15px;
  font-weight: 500;
}
.industry-panel-copy li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.industry-panel-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #eee;
}
.industry-panel-visual img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  filter: saturate(.8);
}
.is-draggable {
  cursor: grab;
  user-select: none;
}
.is-draggable.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}



@media (max-width: 1024px) {
  .service-detail-talk {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }
  .service-detail-talk-inner,
  .mobile-app-hero-inner,
  .mobile-tabs-layout,
  .success-slide {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mobile-app-page .site-header {
    position: fixed;
    height: 80px;
    background: rgba(5,37,54,.95);
  }
  .mobile-app-hero {
    min-height: auto;
    padding-top: 128px;
  }
  .mobile-app-phone {
    min-height: 420px;
  }
  .mobile-tab-list {
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .vision-grid,
  .growth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industry-panel ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-page .hero-grid,
  .about-page .about-grid,
  .about-page .partnership-grid,
  .about-page .culture-row,
  .about-page .values-row,
  .about-page .locations-grid,
  .about-page .footer-grid,
  .about-page .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-page .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-detail-talk {
    padding: 60px var(--page-pad);
  }
  .service-detail-talk h2 {
    font-size: 36px;
  }
  .service-detail-form,
  .mobile-subservices,
  .vision-grid,
  .growth-grid,
  .industry-panel ul {
    grid-template-columns: 1fr;
  }
  .mobile-app-hero,
  .mobile-intro,
  .mobile-tabs-section,
  .mobile-success,
  .mobile-vision,
  .mobile-growth,
  .mobile-industries {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }
  .mobile-app-hero {
    padding-top: 118px;
    padding-bottom: 56px;
  }
  .mobile-app-hero h1 {
    font-size: 42px;
  }
  .mobile-app-hero p,
  .mobile-section-head p {
    font-size: 15px;
  }
  .mobile-app-actions {
    display: grid;
  }
  .mobile-app-phone {
    min-height: 360px;
  }
  .phone-frame {
    width: min(250px, 76vw);
    border-width: 8px;
  }
  .mobile-intro,
  .mobile-tabs-section,
  .mobile-success,
  .mobile-vision,
  .mobile-growth,
  .mobile-industries {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mobile-tab-panel {
    padding: 24px;
  }
  .mobile-tab-panel h3 {
    font-size: 32px;
  }
  .success-content,
  .success-visual,
  .industry-panel {
    padding: 24px;
  }
  .success-visual {
    min-height: 320px;
  }
  .success-brand {
    font-size: 38px;
  }
  .slider-controls {
    justify-content: flex-start;
  }
  .about-page .site-header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 18px;
  }

  .about-page .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .about-page .hero {
    padding-top: 48px;
  }

  .about-page .hero-copy h1 {
    font-size: clamp(3rem, 17vw, 5.6rem);
  }

  .about-page .stats,
  .about-page .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-page .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.service-page {
  background: #f5f5f2;
}

.services-main {
  background: #f5f5f2;
  color: var(--text);
}

.services-hero {
  padding: 62px 0 18px;
  background: #f5f5f2;
}

.services-hero-inner {
  padding: 0 12px;
}

.eyebrow-row {
  margin-bottom: 22px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.7);
}

.eyebrow-light {
  color: rgba(255,255,255,0.8);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: end;
}

.services-copy h1 {
  margin: 0;
  font-family: "Clash Display", "Poppins", sans-serif;
  font-size: clamp(3.25rem, 5vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-weight: 600;
  color: #111111;
}

.services-intro {
  max-width: 470px;
  justify-self: end;
}

.services-intro p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(17,17,17,0.8);
}

.accordion-section {
  padding: 18px 0 18px;
}

.service-accordion-wrap {
  padding: 0 12px;
}

.accordion-list {
  display: grid;
  gap: 18px;
}

.accordion-item {
  background: #eeefed;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,0.08);
}

.accordion-item.active {
  background: #111318;
  border-color: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 22px 26px;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.accordion-item:not(.active) .accordion-trigger {
  color: #151515;
}

.accordion-item.active .accordion-trigger {
  color: #f3f5f7;
}

.acc-number {
  min-width: 38px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  opacity: 0.72;
}

.acc-label {
  flex: 1;
  font-family: "Clash Display", "Poppins", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.acc-plus {
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
  opacity: 0.8;
  transition: transform 0.22s ease;
}

.accordion-item.active .acc-plus {
  transform: rotate(45deg);
}

.accordion-item:not(.active) .acc-label {
  color: #151515;
}

.accordion-item.active .acc-label {
  color: #f4f5f7;
}

.accordion-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 20px;
  padding: 0 26px 24px;
}

.accordion-content {
  padding: 4px 0 0;
  color: rgba(255,255,255,0.82);
}

.accordion-item:not(.active) .accordion-content {
  color: rgba(17,17,17,0.8);
}

.accordion-content p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.75;
}

.accordion-content ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  display: grid;
  gap: 7px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-visual {
  min-height: 290px;
  border-radius: 20px;
  overflow: hidden;
  background: #dfe6ed;
}

.accordion-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-cta-wrap {
  padding: 34px 0 48px;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #0b69ff 0%, #0d4ec8 100%);
  border-radius: 28px;
  padding: 34px 38px;
  color: #ffffff;
}

.service-cta h2 {
  margin: 12px 0 0;
  font-family: "Clash Display", "Poppins", sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  font-weight: 600;
  max-width: 660px;
}

.btn-large {
  min-height: 48px;
  padding-inline: 22px;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .contact-grid,
  .footer-grid,
  .hero-layout,
  .accordion-panel {
    grid-template-columns: 1fr;
  }

  .contact-col {
    justify-self: start;
  }

  .services-intro {
    justify-self: start;
  }

  .service-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1320px);
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .accordion-trigger {
    padding: 18px 18px;
  }

  .accordion-panel {
    padding: 0 18px 18px;
  }

  .service-cta {
    padding: 24px 20px;
  }

  .button-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .site-header {
    position: fixed;
    height: 80px;
    background: rgba(0,0,0,.88);
  }
  .site-logo {
    width: 150px;
    height: 36px;
  }
  .site-logo img {
    width: 150px;
    transform: translateY(-24px);
  }
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
  }
  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: currentColor;
  }
  .site-header .site-nav {
    display: none;
    position: fixed;
    inset: 80px 16px auto;
    padding: 18px;
    background: #000;
    border: 1px solid rgba(255,255,255,.15);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .site-header .site-nav.is-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }
  .site-header .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .mobile-company-grid,
  .mobile-success .success-slide,
  .growth-inner,
  .industry-panel-inner {
    grid-template-columns: 1fr;
  }
  .mobile-company {
    padding-top: 90px;
    padding-bottom: 76px;
  }
  .mobile-company h2 {
    margin-bottom: 32px;
  }
  .mobile-success .success-slide {
    gap: 0;
  }
  .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .business-impact-title {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }
  .growth-inner {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .growth-cards {
    grid-template-columns: 1fr;
  }
  .growth-card-wide {
    grid-column: auto;
  }
  .mobile-industries .industry-tab-list {
    gap: 16px;
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .mobile-company {
    padding-top: 60px;
    padding-bottom: 56px;
  }
  .mobile-company h2,
  .success-head h2,
  .vision-copy h2,
  .growth-copy h2,
  .mobile-industries .mobile-section-head h2 {
    font-size: 36px;
  }
  .mobile-company-grid figure,
  .mobile-company-grid img {
    min-height: 240px;
  }
  .mobile-company-grid p,
  .success-head p,
  .vision-copy p,
  .growth-copy p,
  .mobile-industries .mobile-section-head p,
  .industry-panel-copy p {
    font-size: 14px;
  }
  .mobile-success {
    padding-top: 48px;
    padding-bottom: 58px;
  }
  .success-head p {
    margin-top: 24px;
  }
  .mobile-success .success-content {
    min-height: auto;
    padding: 26px 22px;
  }
  .mobile-success .success-content dd {
    font-size: 12px;
  }
  .mobile-success .success-visual {
    min-height: 260px;
  }
  .mobile-success .slider-controls {
    margin-top: 28px;
  }
  .mobile-success .slider-controls button {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .mobile-vision {
    padding-top: 60px;
    padding-bottom: 66px;
  }
  .vision-copy {
    margin-bottom: 36px;
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .vision-column h3 {
    font-size: 26px;
  }
  .business-impact-title {
    padding-top: 48px;
    padding-bottom: 46px;
    font-size: 52px;
  }
  .growth-inner {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .growth-copy a {
    width: 100%;
  }
  .growth-card {
    min-height: auto;
    padding: 24px 22px;
  }
  .growth-card h3,
  .growth-card-wide h3 {
    font-size: 26px;
  }
  .mobile-industries {
    padding-top: 58px;
    padding-bottom: 70px;
  }
  .mobile-industries .industry-tabs {
    margin-top: 34px;
  }
  .mobile-industries .industry-panel {
    padding: 26px 22px;
  }
  .industry-panel-copy h3 {
    font-size: 26px;
  }
  .industry-panel-visual img {
    height: 230px;
  }
}
