:root {
  --ink: #121625;
  --navy: #10131f;
  --navy-2: #171b2b;
  --muted: #626b7c;
  --soft: #f4f6fa;
  --card: #ffffff;
  --line: #e2e6ee;
  --pink: #e6007e;
  --green: #8cc63f;
  --teal: #00a7b5;
  --gold: #d8b36a;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(16, 19, 31, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo {
  width: auto;
  height: 58px;
  max-height: 58px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.primary-nav a {
  text-decoration: none;
  color: #dce2ee;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: white;
  background: rgba(230, 0, 126, 0.18);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: #b7eb63;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(230, 0, 126, 0.24);
  cursor: pointer;
}

.btn.secondary { background: #242b3d; box-shadow: none; }
.btn.light { background: white; color: var(--navy); box-shadow: none; }
.btn.ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.22); box-shadow: none; }
.btn.meeting-cta,
.meeting-cta {
  background: #b7eb63;
  color: #10131f;
  box-shadow: 0 16px 28px rgba(183, 235, 99, 0.18);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b7eb63;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(183,235,99,0.55);
  padding-bottom: 4px;
}
.text-link::after { content: "->"; }

.section { padding: 84px 0; }
.section.white { background: white; }
.section.dark { background: var(--navy); color: white; }
.section.tight { padding: 56px 0; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(230,0,126,0.16), transparent 32%),
    linear-gradient(110deg, rgba(16,19,31,0.98) 0%, rgba(16,19,31,0.93) 52%, rgba(16,19,31,0.86) 100%);
}

.mock-hero {
  background:
    radial-gradient(circle at 72% 38%, rgba(0,167,181,0.18), transparent 30%),
    linear-gradient(115deg, #070b14 0%, #101625 48%, #07101a 100%);
}

.mock-hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 50px;
  align-items: center;
  padding: 70px 0 48px;
}

.mock-copy h1 span,
.section-head h2 span,
.process-layout h2 span,
.app-showcase h2 span {
  color: #63d66e;
}

.mock-visual {
  position: relative;
}

.mock-visual img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 36px 90px rgba(0,0,0,0.44);
}

.mock-visual::after {
  content: "iOS / Android / Flutter / React Native / .NET MAUI / UI/UX / Support";
  position: absolute;
  right: 18px;
  top: 18px;
  max-width: 330px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: #82e6ef;
  background: rgba(7,11,20,0.68);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.mock-metrics {
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
}

.mock-metrics .metric {
  border-width: 0 1px 0 0;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
}

.mock-metrics .metric strong { color: #8fdb50; font-size: 23px; }

.logo-strip {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 28px 0 24px;
  text-align: center;
}

.logo-strip p {
  margin: 0 0 18px;
  color: #8590a3;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-strip .proof-list {
  justify-content: center;
}

.logo-strip .proof-list span {
  background: transparent;
  color: #778296;
  font-size: 22px;
  min-width: 116px;
  justify-content: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.logo-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #657185;
  font-size: 15px;
  font-weight: 900;
  padding: 10px 12px;
}

.logo-grid img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
}

.portfolio-logos {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  margin-top: 26px;
}

.portfolio-logos span {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: white;
}

.section-head {
  margin-bottom: 34px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: end;
}

.split-head p {
  color: var(--muted);
  margin-bottom: 10px;
}

.mock-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.mock-service-grid article {
  min-height: 225px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mock-service-grid article:nth-child(5n) { border-right: 0; }
.mock-service-grid article:nth-child(n+6) { border-bottom: 0; }
.mock-service-grid h3 { font-size: 18px; }
.mock-service-grid p { font-size: 14px; }

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: white;
  font-weight: 950;
  margin-bottom: 24px;
}
.service-icon.green { background: #77c948; }
.service-icon.pink { background: #e6007e; }
.service-icon.blue { background: #3977f6; }
.service-icon.violet { background: #8463f6; }
.service-icon.teal { background: #22bfae; }
.service-icon.orange { background: #ff7048; }

.app-showcase {
  background: #07101a;
  padding: 52px 0 58px;
}

.app-showcase .section-head {
  align-items: end;
  margin-bottom: 18px;
}

.app-showcase .kicker {
  color: #63d66e;
  font-size: 10px;
}

.app-showcase h2 {
  max-width: 410px;
  color: white;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 0.98;
  margin-top: 8px;
}

.app-showcase .text-link {
  justify-self: end;
  color: #b7eb63;
  border-bottom-color: rgba(183,235,99,0.45);
  font-size: 14px;
}

.app-rail {
  display: grid;
  grid-template-columns: repeat(9, minmax(82px, 1fr));
  gap: 14px;
  align-items: start;
}

.app-card {
  min-width: 0;
}

.app-card a,
.project-note a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.app-card a:hover,
.app-card a:focus,
.project-note a:hover,
.project-note a:focus {
  text-decoration: none;
}

.app-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  border-radius: 8px;
  background: transparent;
  padding: 0;
}

.app-card a:hover img {
  border-color: rgba(183,235,99,0.8);
}

.project-logo-tile {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 0.52 / 1;
  min-height: 0;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 13px;
  background: #0b1420;
  margin-bottom: 11px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.26);
}

.project-logo-tile strong {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 8px;
  background: white;
  color: var(--pink);
  font-size: 24px;
}

.app-card h3 {
  color: white;
  margin: 0 0 3px;
  font-size: 13px;
  line-height: 1.1;
}

.app-card p {
  color: #aab6c6;
  font-size: 10px;
  line-height: 1.2;
}

.project-visit {
  display: inline-flex;
  margin-top: 8px;
  color: #b7eb63;
  font-size: 12px;
  font-weight: 900;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 48px;
  align-items: center;
}

.mock-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: start;
}

.mock-process article {
  position: relative;
}

.mock-process article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 58px;
  right: -12px;
  height: 1px;
  background: #cdd5df;
}

.mock-process span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--pink);
  border: 1px solid #f3abc9;
  background: white;
  font-weight: 950;
  margin-bottom: 14px;
}

.mock-process h3 { font-size: 15px; }
.mock-process p { font-size: 13px; }

.stats-band {
  background: #07101a;
  color: white;
  padding: 34px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.6fr;
  gap: 28px;
  align-items: center;
}

.stats-grid strong {
  display: block;
  color: #8fdb50;
  font-size: 40px;
  line-height: 1;
}
.stats-grid span,
.stats-grid p { color: #d7deea; margin: 0; }

.testimonial-band {
  position: relative;
  background:
    radial-gradient(circle at 84% 18%, rgba(230,0,126,0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  padding: 76px 0 96px;
  border-bottom: 1px solid #dde3ee;
}

.testimonial-head {
  margin-bottom: 26px;
}

.review-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.review-track {
  display: flex;
  gap: 18px;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 18px;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  display: grid;
  grid-template-columns: auto auto minmax(0, 680px);
  gap: 24px;
  align-items: center;
  flex: 0 0 calc(100% - 2px);
  min-width: calc(100% - 2px);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,250,252,0.94));
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.08);
}

.review-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  color: var(--pink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
}

.quote-mark {
  color: var(--pink);
  font-size: 76px;
  line-height: 1;
  font-weight: 950;
  align-self: start;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.14);
}

.rating {
  color: #f5a300;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.rating span {
  color: var(--ink);
  letter-spacing: 0;
  margin-left: 8px;
}

.testimonial p {
  color: #303849;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.55;
}
.testimonial > div > span {
  color: var(--muted);
  font-weight: 850;
}

.home-inquiry {
  position: relative;
  background:
    radial-gradient(circle at 12% 12%, rgba(99,214,110,0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-top: 96px;
}

.home-inquiry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(230,0,126,0.42), rgba(140,198,63,0.42), transparent);
}

.home-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.home-inquiry .contact-panel {
  border-color: #d9e1ee;
  box-shadow: 0 26px 76px rgba(16, 24, 40, 0.1);
}

.home-inquiry-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-inquiry-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: #344054;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
}

.short-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mock-cta {
  background: linear-gradient(100deg, #ee145f 0%, #bd168e 45%, #4620c6 100%);
  color: white;
  padding: 34px 0;
}

.mock-cta .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.mock-cta h2 {
  font-size: 30px;
  margin: 0 0 4px;
}

.mock-cta p { color: #ffe8f5; margin: 0; }

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--green), transparent);
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 52px;
  align-items: center;
  padding: 72px 0;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #aeea65;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--pink);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 870px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.18;
}

.lead {
  max-width: 700px;
  color: #d8dfec;
  font-size: clamp(18px, 2vw, 23px);
}

.copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.dark .copy,
.dark p { color: #cdd5e5; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 780px;
}

.metric {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  padding: 16px;
}
.metric strong { display: block; font-size: 28px; line-height: 1; }
.metric span { color: #c7cedb; font-size: 13px; font-weight: 800; }

.proof-strip {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
}
.proof-strip p { margin: 0; color: #cdd5e5; font-weight: 850; }
.proof-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.proof-list span,
.tag,
.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 7px 12px;
  background: #eef2f7;
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}
.section.dark .proof-list span { background: rgba(255,255,255,0.09); color: white; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.media-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}
.media-frame img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.service-grid,
.portfolio-grid,
.article-grid,
.values-grid,
.industry-grid {
  display: grid;
  gap: 22px;
}

.service-grid { grid-template-columns: repeat(3, 1fr); }
.portfolio-grid { grid-template-columns: repeat(2, 1fr); }
.article-grid { grid-template-columns: repeat(3, 1fr); }
.values-grid { grid-template-columns: repeat(4, 1fr); }
.industry-grid { grid-template-columns: repeat(4, 1fr); }

.service-card,
.project-card,
.article-card,
.value-card,
.panel,
.industry-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: 24px;
}

.service-card.featured {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.service-card.featured p { color: #cdd5e5; }

.card-image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 18px;
  background: #f5f7fb;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-weight: 950;
  margin-bottom: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline .panel { min-height: 210px; }

.project-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 22px;
  align-items: center;
}
.project-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.project-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.project-card-media img {
  border-radius: 0;
}

.project-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,19,31,0.08), rgba(16,19,31,0.78));
}

.project-card-media span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: white;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.08;
}

.project-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 22px;
}

.project-note img {
  width: 100%;
  aspect-ratio: 1.46 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f7fb;
  padding: 0;
  margin-bottom: 18px;
}

.project-note-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #f5f7fb;
  color: var(--pink);
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 16px;
}

.project-note h3 {
  font-size: 19px;
}

.project-note p {
  font-size: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.list li {
  position: relative;
  padding-left: 24px;
  color: #475467;
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.dark .list li { color: #d8dfec; }

.cta-band {
  background: linear-gradient(110deg, var(--pink), #a0198d 46%, var(--navy));
  color: white;
}
.cta-band .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.email-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--pink);
  padding: 18px;
  text-decoration: none;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.email-card.compact {
  font-size: 18px;
  padding: 13px 14px;
  margin-top: 10px;
}

.phone-card {
  color: var(--teal);
}

.meeting-card {
  color: #4d8f16;
}

.map-section {
  background: #f7f9fc;
  padding-top: 68px;
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.08);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  border: 0;
}

.map-button {
  position: absolute;
  left: 22px;
  bottom: 22px;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.16);
}

form {
  display: grid;
  gap: 14px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid #d1d7e2;
  border-radius: 8px;
  background: white;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }

.form-alert {
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 850;
}

.form-alert.success {
  background: #ecfdf3;
  color: #05603a;
  border: 1px solid #abefc6;
}

.form-alert.error {
  background: #fff1f3;
  color: #b42318;
  border: 1px solid #fecdca;
}

.article-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: #cdd5df;
  box-shadow: 0 20px 42px rgba(16, 19, 31, 0.1);
}

.read-more {
  display: inline-flex;
  margin-top: 12px;
  color: var(--pink);
  font-weight: 950;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: start;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-top: 36px;
}

.article-body p {
  color: #384152;
  font-size: 18px;
}

.article-intro {
  color: var(--ink);
  font-size: 22px;
  font-weight: 750;
}

.article-sidebar,
.article-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 24px;
}

.article-sidebar {
  position: sticky;
  top: 104px;
}

.article-sidebar a {
  display: block;
  padding: 10px 0;
  color: #344054;
  font-weight: 850;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.article-sidebar a:last-child {
  border-bottom: 0;
}

.article-cta {
  margin-top: 40px;
  background: var(--navy);
  color: white;
}

.article-cta p {
  color: #d7deea;
}

.footer-phone {
  display: inline-flex;
  margin: 0 0 14px;
  color: #b7eb63 !important;
  font-weight: 950;
}

.footer-meeting {
  color: white !important;
}

.site-footer {
  background: #0d101a;
  color: white;
  padding: 58px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) 0.7fr 0.95fr 0.7fr minmax(190px, 0.9fr);
  gap: 34px;
}
.footer-brand img {
  width: auto;
  height: 104px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 18px;
}
.site-footer h3 { font-size: 17px; color: #f5f7fb; }
.site-footer p,
.site-footer a,
.footer-bottom {
  color: #b8c1d1;
}
.site-footer a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
}
.site-footer a:hover { color: white; }

.footer-map {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  aspect-ratio: 1.55 / 1;
  margin-top: 12px;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.8);
}

.footer-map-link {
  color: #b7eb63 !important;
  font-weight: 900;
}

.footer-map-link::after {
  content: " ->";
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-badges span { background: rgba(255,255,255,0.09); color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 38px;
  padding-top: 18px;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .menu-toggle { display: inline-block; justify-self: end; }
  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    padding: 10px 0 18px;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { border-radius: 8px; padding: 12px; }
  .nav-actions { display: none; }
  .hero-grid,
  .mock-hero-grid,
  .split,
  .contact-grid,
  .home-inquiry-grid,
  .split-head,
  .article-layout,
  .process-layout,
  .cta-band .wrap {
    grid-template-columns: 1fr;
  }
  .article-sidebar { position: static; }
  .service-grid,
  .article-grid,
  .values-grid,
  .industry-grid,
  .timeline,
  .project-note-grid,
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid { grid-template-columns: 1fr; }
  .mock-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mock-service-grid article,
  .mock-service-grid article:nth-child(5n),
  .mock-service-grid article:nth-child(n+6) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .mock-service-grid article:nth-child(2n) { border-right: 0; }
  .app-rail {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
  .mock-process {
    grid-template-columns: repeat(3, 1fr);
  }
  .mock-process article::after { display: none; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-grid,
  .portfolio-logos {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 30px, 1200px); }
  .brand-logo { width: auto; height: 52px; }
  .hero-grid { min-height: auto; padding: 54px 0; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-metrics,
  .mock-metrics,
  .proof-strip,
  .service-grid,
  .article-grid,
  .values-grid,
  .industry-grid,
  .timeline,
  .footer-top,
  .footer-bottom,
  .project-card,
  .project-note-grid,
  .mock-service-grid,
  .mock-process,
  .stats-grid,
  .logo-grid,
  .portfolio-logos,
  .testimonial,
  .mock-cta .wrap,
  .short-form-row,
  .mock-cta .wrap > div {
    grid-template-columns: 1fr;
  }
  .mock-service-grid article,
  .mock-service-grid article:nth-child(2n) {
    border-right: 0;
  }
  .logo-strip .proof-list span {
    min-width: auto;
    font-size: 16px;
  }
  .app-rail {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
  .testimonial {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }
  .quote-mark {
    font-size: 54px;
  }
  .avatar {
    width: 82px;
    height: 82px;
  }
  .mock-visual::after { display: none; }
  .cta-actions { justify-content: stretch; }
  .cta-actions .btn { width: 100%; }
  .section { padding: 58px 0; }
  .btn { width: 100%; }
}
