:root {
  --ink: #0f172a;
  --muted: #50627d;
  --blue: #2563eb;
  --blue-dark: #1020b8;
  --soft-blue: #eef6ff;
  --line: #d8e2ee;
  --panel: #ffffff;
  --footer: #111a2d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5f8fc;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 22px clamp(16px, 4vw, 64px);
  background: transparent;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.nav-links,
.demo-btn {
  border-radius: 999px;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.brand {
  display: grid;
  place-items: center;
  width: auto;
  min-width: auto;
  height: 40px;
  padding: 0 8px;
  margin-right: 90px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-wordmark {
  color: #1020b8;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  flex: 0 1 auto;
}

.nav-links::before {
  content: "";
  position: absolute;
  left: var(--tab-left, 6px);
  top: 5px;
  width: var(--tab-width, 0px);
  height: calc(100% - 10px);
  border-radius: 999px;
  background: #dedee7;
  box-shadow: none;
  transition: left 900ms cubic-bezier(0.22, 1, 0.36, 1), width 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: 6px 18px;
  color: #151924;
  font-size: 0.84rem;
  font-weight: 400;
  transition: color 180ms ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: #151924;
}

.demo-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  font-weight: 500;
}

.demo-btn {
  position: relative;
  overflow: hidden;
  min-height: 40px;
  padding: 0 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #1020b8, #1d4ed8);
  font-size: 0.84rem;
}

.demo-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.28) 48%, transparent 62%, transparent 100%);
  transform: translateX(-120%);
  animation: scheduleShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.demo-btn span {
  position: relative;
  z-index: 1;
  animation: scheduleArrow 1.6s ease-in-out infinite;
}

.demo-btn {
  isolation: isolate;
}

.demo-btn span {
  font-size: 1.35rem;
  line-height: 0;
}

@keyframes scheduleShine {
  0%, 42% { transform: translateX(-120%); }
  68%, 100% { transform: translateX(120%); }
}

@keyframes scheduleArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.top-background {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 0%, rgba(222, 216, 255, 0.55), transparent 34%),
    linear-gradient(180deg, #f1f1f1 0%, #f5f5f7 44%, #fbfdff 100%);
}

.top-background::before {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(16, 32, 184, 0.16), transparent 32%),
    linear-gradient(245deg, rgba(59, 130, 246, 0.14), transparent 38%);
  opacity: 0.9;
}

.hero-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 580px);
  gap: clamp(30px, 5vw, 70px);
  min-height: 760px;
  padding: clamp(154px, 13vw, 184px) clamp(28px, 6vw, 104px) clamp(66px, 8vw, 106px);
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 4vw, 4.35rem);
  line-height: 1.02;
}

.hero-copy > p:not(.eyebrow):not(.hero-line) {
  max-width: 660px;
  margin-top: 24px;
  color: #243b5a;
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.primary-btn {
  min-height: 40px;
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1020b8);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.22);
  font-size: 0.88rem;
}

.primary-btn.large {
  min-width: 250px;
  min-height: 56px;
  border-radius: 12px;
  font-size: 0.98rem;
}

.secondary-btn {
  min-height: 40px;
  padding: 0 18px;
  color: #ffffff;
  background: #111827;
  font-size: 0.88rem;
}

.hero-line {
  margin-top: 28px;
  color: #1d4ed8;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 900;
}

.hero-form {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3.4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(16px);
}

.hero-form h2 {
  margin-bottom: 24px;
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #1e293b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px 16px;
  color: #182235;
  background: #f6f8fb;
  font-size: 0.88rem;
  font-weight: 500;
  outline: 1px solid transparent;
}

input::placeholder,
textarea::placeholder {
  color: #9aa7b7;
  font-weight: 400;
}

select {
  color: #64748b;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline-color: #93c5fd;
}

.hero-form button {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #111827;
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.hero-proof-panel {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 30px;
  padding: clamp(24px, 3.6vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(37, 99, 235, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.9));
  box-shadow: 0 28px 80px rgba(15, 35, 68, 0.12);
}

.proof-header {
  display: grid;
  gap: 8px;
}

.proof-header span {
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 900;
}

.proof-header strong {
  color: #0f172a;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.proof-metrics article {
  min-height: 118px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.proof-metrics strong {
  display: block;
  color: #0f172a;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
}

.proof-metrics span {
  display: block;
  margin-top: 10px;
  color: #526179;
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 700;
}

.proof-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-services span {
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: #183b73;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: #1d4ed8;
  font-weight: 900;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
}

.form-status {
  min-height: 1.4em;
  margin-top: 14px;
  color: #334155;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-status.success {
  color: #047857;
}

.form-status.error {
  color: #b91c1c;
}

.hero-form button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.trusted-section {
  overflow: hidden;
  padding: 52px clamp(20px, 5vw, 84px) 72px;
  text-align: center;
}

.trusted-section p {
  margin-bottom: 34px;
  font-size: 0.86rem;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: clamp(70px, 10vw, 150px);
  animation: floatLogos 28s linear infinite;
}

.logo-track span {
  color: #64748b;
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  font-weight: 900;
}

.logo-track span:nth-child(3n) {
  color: #6475f0;
}

.logo-track span:nth-child(4n) {
  color: #10b981;
}

.logo-track span:nth-child(5n) {
  color: #ff6b35;
}

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

.build-section,
.roadmap-section,
.testimonial-section,
.discovery-section {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 84px);
}

.build-section {
  background: #f7faff;
}

.roadmap-section {
  background: #ffffff;
}

.technology-section {
  background:
    radial-gradient(circle at 50% 0, rgba(139, 92, 246, 0.18), transparent 35%),
    linear-gradient(180deg, #f7f3ff, #f4f7fb);
}

.technology-section.standalone {
  min-height: 100vh;
  padding-top: clamp(128px, 12vw, 160px);
}

.technology-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
  min-height: 690px;
  padding: clamp(136px, 12vw, 170px) clamp(20px, 6vw, 104px) clamp(60px, 8vw, 96px);
  background:
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.16), transparent 32%),
    radial-gradient(circle at 15% 18%, rgba(222, 216, 255, 0.65), transparent 30%),
    linear-gradient(180deg, #f1f1f1 0%, #f7f9fc 60%, #ffffff 100%);
}

.technology-hero h1 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3.8vw, 4rem);
  line-height: 1.05;
}

.technology-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 22px;
  color: #334155;
  font-size: clamp(0.96rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
  min-height: 690px;
  padding: clamp(136px, 12vw, 170px) clamp(20px, 6vw, 104px) clamp(60px, 8vw, 96px);
  background:
    radial-gradient(circle at 78% 12%, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at 10% 18%, rgba(222, 216, 255, 0.62), transparent 30%),
    linear-gradient(180deg, #f1f1f1 0%, #f7f9fc 60%, #ffffff 100%);
}

.about-hero h1 {
  max-width: 800px;
  font-size: clamp(1.85rem, 3.7vw, 4rem);
  line-height: 1.06;
}

.about-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  color: #334155;
  font-size: clamp(0.96rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.about-snapshot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-snapshot article {
  min-height: 150px;
  border: 1px solid #d5e0ec;
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.about-snapshot strong,
.about-snapshot span {
  display: block;
}

.about-snapshot strong {
  color: #1020b8;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}

.about-snapshot span {
  margin-top: 12px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-story,
.about-method,
.about-capabilities,
.about-process {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 84px);
}

.about-story,
.about-capabilities {
  background: #ffffff;
}

.about-method,
.about-process {
  background: #f7faff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-story-grid article {
  border: 1px solid #d5e0ec;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  background: #f8fbff;
}

.about-story-grid h3 {
  font-size: 1.08rem;
}

.about-story-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.tech-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid #dbe7f5;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.86));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.tech-orbit::before,
.tech-orbit::after {
  content: "";
  position: absolute;
  border: 1px dashed #b8cff0;
  border-radius: 50%;
}

.tech-orbit::before {
  width: 72%;
  aspect-ratio: 1;
}

.tech-orbit::after {
  width: 46%;
  aspect-ratio: 1;
}

.tech-orbit strong {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #1020b8, #2563eb);
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.35;
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.28);
}

.tech-orbit span {
  position: absolute;
  z-index: 2;
  border: 1px solid #dbe7f5;
  border-radius: 999px;
  padding: 10px 16px;
  color: #1020b8;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.tech-orbit span:nth-child(1) { top: 58px; left: 52px; }
.tech-orbit span:nth-child(2) { top: 44px; right: 76px; }
.tech-orbit span:nth-child(3) { right: 36px; bottom: 120px; }
.tech-orbit span:nth-child(4) { left: 50px; bottom: 74px; }
.tech-orbit span:nth-child(5) { bottom: 38px; right: 98px; }

.technology-stack-section,
.technology-principles,
.technology-flow {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 84px);
}

.technology-stack-section,
.technology-flow {
  background: #ffffff;
}

.technology-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.technology-stack-grid article {
  border: 1px solid #d5e0ec;
  border-radius: 18px;
  padding: 26px;
  background: #f8fbff;
}

.technology-stack-grid span {
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 900;
}

.technology-stack-grid h3 {
  margin-top: 14px;
  font-size: 1.08rem;
}

.technology-stack-grid p,
.technology-stack-grid li {
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.6;
}

.technology-stack-grid p {
  margin-top: 12px;
}

.technology-stack-grid ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.technology-principles {
  background: #f7faff;
}

.principle-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.principle-row article {
  border-left: 2px solid #2563eb;
  padding: 8px 18px 8px 20px;
}

.principle-row strong {
  color: #2563eb;
  font-size: 0.78rem;
}

.principle-row h3 {
  margin-top: 10px;
  font-size: 1rem;
}

.principle-row p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.tech-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.tech-flow-grid article {
  position: relative;
  min-height: 160px;
  border: 1px solid #d5e0ec;
  border-radius: 16px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
}

.tech-flow-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 12px;
  height: 2px;
  background: #93c5fd;
}

.tech-flow-grid span {
  color: #1020b8;
  font-weight: 800;
}

.tech-flow-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.services-hero {
  padding: clamp(128px, 12vw, 160px) clamp(20px, 6vw, 104px) clamp(50px, 8vw, 90px);
  background:
    linear-gradient(rgba(219, 234, 254, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 234, 254, 0.5) 1px, transparent 1px),
    linear-gradient(180deg, #dcecff 0%, #fbfdff 100%);
  background-size: 38px 38px, 38px 38px, auto;
}

.services-hero h1,
.services-hero > p {
  max-width: 980px;
}

.services-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

.services-hero > p {
  margin-top: 20px;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.75;
}

.services-hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 980px;
  margin-top: 28px;
}

.services-hero-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  padding: 0 18px;
  color: #173569;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(31, 68, 130, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) clamp(20px, 6vw, 104px);
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 99, 235, 0.08), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.service-detail-block {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.9)),
    #ffffff;
  box-shadow: 0 22px 58px rgba(21, 37, 68, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-detail-block::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
}

.service-detail-block:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 30px 72px rgba(21, 37, 68, 0.12);
}

.service-detail-block.featured-service {
  border-color: rgba(37, 99, 235, 0.34);
  background:
    linear-gradient(140deg, rgba(239, 246, 255, 0.98), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.service-detail-block span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #2563eb;
  background: #eaf2ff;
  font-size: 0.8rem;
  font-weight: 900;
}

.service-detail-block h2 {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
}

.service-detail-block p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-detail-block a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 20px;
  color: #2563eb;
  font-weight: 800;
}

.service-detail-block ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.service-detail-block li {
  position: relative;
  padding-left: 20px;
  color: #27364d;
  font-size: 0.88rem;
  line-height: 1.5;
}

.service-detail-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2563eb;
}

.services-cta {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 84px);
  background: #eef6ff;
  text-align: center;
}

.services-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.services-cta p {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.services-cta .primary-btn {
  margin-top: 34px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding: clamp(136px, 12vw, 168px) clamp(20px, 6vw, 104px) clamp(58px, 8vw, 92px);
  background:
    linear-gradient(rgba(219, 234, 254, 0.48) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 234, 254, 0.48) 1px, transparent 1px),
    linear-gradient(180deg, #dcecff 0%, #f8fbff 100%);
  background-size: 38px 38px, 38px 38px, auto;
}

.contact-copy {
  max-width: 690px;
}

.contact-copy h1 {
  font-size: clamp(1.8rem, 3.3vw, 3.1rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.75;
}

.contact-info-panel {
  display: grid;
  gap: 14px;
}

.contact-summary-panel {
  position: relative;
  align-self: stretch;
  align-content: center;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 30px;
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.9));
  box-shadow: 0 28px 80px rgba(15, 35, 68, 0.11);
}

.contact-summary-panel > span {
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 900;
}

.contact-summary-panel h2 {
  max-width: 460px;
  margin-top: 14px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.contact-summary-panel p {
  max-width: 480px;
  margin-top: 16px;
  color: #526179;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-summary-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-summary-list a {
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 14px;
  padding: 0 16px;
  color: #183b73;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-info-panel article {
  border: 1px solid #d5e0ec;
  border-radius: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.contact-info-panel span {
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 900;
}

.contact-info-panel h2 {
  margin-top: 8px;
  font-size: 1rem;
}

.contact-info-panel p,
.contact-info-panel a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info-panel.contact-summary-panel h2 {
  margin-top: 14px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.contact-info-panel.contact-summary-panel p {
  margin-top: 16px;
  color: #526179;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-info-panel.contact-summary-panel .contact-summary-list a {
  display: flex;
  margin-top: 0;
  color: #183b73;
  font-size: 0.9rem;
  line-height: 1.35;
}

.contact-main-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(58px, 7vw, 92px) clamp(20px, 6vw, 104px);
  background: #f7faff;
}

.expect-panel {
  border: 1px solid #d5e0ec;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: #ffffff;
}

.expect-panel h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.expect-panel ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.expect-panel li {
  position: relative;
  padding-left: 24px;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.55;
}

.expect-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2563eb;
}

.contact-form-panel {
  width: 100%;
  max-width: 760px;
}

.schedule-hero {
  display: block;
  min-height: 100vh;
  padding: clamp(136px, 12vw, 170px) clamp(20px, 6vw, 104px) clamp(64px, 8vw, 104px);
  background:
    radial-gradient(circle at 78% 12%, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at 12% 18%, rgba(222, 216, 255, 0.62), transparent 30%),
    linear-gradient(180deg, #f1f1f1 0%, #f7f9fc 60%, #ffffff 100%);
}

.schedule-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.schedule-copy h1 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(1.85rem, 3.7vw, 4rem);
  line-height: 1.06;
}

.schedule-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  margin-top: 22px;
  color: #334155;
  font-size: clamp(0.96rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.schedule-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 34px auto 0;
}

.schedule-highlights article {
  border: 1px solid #d5e0ec;
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.schedule-highlights strong,
.schedule-highlights span {
  display: block;
}

.schedule-highlights strong {
  color: #1020b8;
  font-size: 1.12rem;
}

.schedule-highlights span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.schedule-form button {
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, #2563eb, #1020b8);
}

.schedule-form {
  width: min(980px, 100%);
  margin: clamp(34px, 5vw, 58px) auto 0;
}

.schedule-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-hero {
  padding: clamp(128px, 12vw, 160px) clamp(20px, 6vw, 104px) clamp(46px, 6vw, 72px);
  background:
    radial-gradient(circle at 82% 0%, rgba(222, 216, 255, 0.55), transparent 34%),
    linear-gradient(180deg, #f1f1f1 0%, #f5f5f7 58%, #ffffff 100%);
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
}

.legal-hero > p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-content {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) 0 clamp(70px, 9vw, 110px);
}

.legal-content section {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid #dbe7f5;
}

.legal-content h2 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.75;
}

.legal-content p {
  margin-top: 14px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-content a:not(.primary-btn) {
  color: #1d4ed8;
  font-weight: 600;
}

.legal-return {
  margin-top: 44px;
}

.service-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(136px, 12vw, 168px) clamp(20px, 6vw, 104px) clamp(58px, 8vw, 92px);
  background:
    linear-gradient(rgba(219, 234, 254, 0.48) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 234, 254, 0.48) 1px, transparent 1px),
    linear-gradient(180deg, #dcecff 0%, #f8fbff 100%);
  background-size: 38px 38px, 38px 38px, auto;
}

.service-hero-copy {
  max-width: 760px;
}

.service-hero-copy h1 {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

.service-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 20px;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.75;
}

.service-stats-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-stats-panel article {
  min-height: 132px;
  border: 1px solid #d5e0ec;
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.service-stats-panel strong,
.service-stats-panel span {
  display: block;
}

.service-stats-panel strong {
  color: #1020b8;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.service-stats-panel span {
  margin-top: 10px;
  color: #334155;
  font-size: 0.86rem;
  font-weight: 800;
}

.service-narrative,
.senior-section,
.stack-section,
.build-process-section {
  padding: clamp(58px, 7vw, 92px) clamp(20px, 6vw, 104px);
}

.service-narrative {
  display: grid;
  gap: 18px;
  background: #ffffff;
}

.service-narrative p {
  width: min(980px, 100%);
  margin: 0 auto;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.78;
}

.senior-section,
.build-process-section {
  background: #f7faff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.comparison-grid article,
.stack-grid article,
.process-timeline article {
  border: 1px solid #d5e0ec;
  border-radius: 16px;
  background: #ffffff;
}

.comparison-grid article {
  padding: clamp(24px, 4vw, 40px);
}

.comparison-grid h3,
.stack-grid h3,
.process-timeline h3 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.comparison-grid ul,
.stack-grid ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li,
.stack-grid li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.55;
}

.comparison-grid li::before,
.stack-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2563eb;
}

.stack-section {
  background: #ffffff;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.stack-grid article {
  padding: 24px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.process-timeline article {
  position: relative;
  padding: 22px;
}

.process-timeline span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: #2563eb;
  font-size: 0.82rem;
  font-weight: 900;
}

.process-timeline p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.proof-section {
  padding: clamp(58px, 7vw, 92px) clamp(20px, 6vw, 104px);
  background: #f7faff;
  text-align: center;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.proof-stats article {
  border: 1px solid #d5e0ec;
  border-radius: 16px;
  padding: 24px 18px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.proof-stats strong,
.proof-stats span {
  display: block;
}

.proof-stats strong {
  color: #1020b8;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1;
}

.proof-stats span {
  margin-top: 10px;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 800;
}

.proof-link {
  margin-top: 28px;
}

.principles-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.comparison-grid article > p,
.stack-grid article > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.devops-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: left;
}

.devops-before-after article {
  border: 1px solid #d5e0ec;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.devops-before-after h3 {
  font-size: 1.08rem;
}

.devops-before-after ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.devops-before-after li {
  position: relative;
  padding-left: 24px;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.55;
}

.devops-before-after li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2563eb;
}

.devops-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devops-stack strong {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.advanced-roadmap {
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid #d5e0ec;
  border-radius: 22px;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 10% 0, rgba(37, 99, 235, 0.1), transparent 30%),
    #ffffff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.06);
}

.phase-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.phase-row::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #93c5fd);
}

.phase-row article {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 150px;
  border: 1px solid #dbe7f5;
  border-radius: 16px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.94);
}

.phase-row span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: #2563eb;
  font-size: 0.74rem;
  font-weight: 900;
}

.phase-row strong {
  font-size: 0.95rem;
}

.phase-row p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.roadmap-matrix {
  display: grid;
  grid-template-columns: 120px repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.lane-label,
.lane-card {
  border-radius: 12px;
  padding: 12px;
  font-size: 0.78rem;
}

.lane-label {
  display: grid;
  place-items: center start;
  color: #1d4ed8;
  background: #eff6ff;
  font-weight: 900;
}

.lane-card {
  position: relative;
  color: #27364d;
  background: #f8fbff;
  border: 1px solid #e1ebf7;
  font-weight: 700;
}

.lane-card::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: #bfdbfe;
}

.section-heading {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.discovery-section h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
}

.section-heading p,
.discovery-section p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.86rem;
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.service-menu,
.service-detail {
  border: 1px solid #d5e0ec;
  border-radius: 16px;
  background: #ffffff;
}

.service-menu {
  overflow: hidden;
}

.service-menu a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 22px;
  color: #111827;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.service-menu a:last-child {
  border-bottom: 0;
}

.service-menu a:hover {
  color: #1d4ed8;
  background: #f3f8ff;
}

.service-menu span {
  color: #3b82f6;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-detail {
  padding: clamp(28px, 4vw, 48px);
}

.service-detail h3 {
  max-width: 620px;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.detail-list p {
  padding-left: 16px;
  border-left: 2px solid #bfdbfe;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.detail-list strong {
  display: block;
  color: #111827;
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 800;
}

.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 44px;
}

.tech-tabs button {
  min-width: 130px;
  border: 0;
  border-radius: 999px;
  padding: 15px 28px;
  color: #0f172a;
  background: #ffffff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.tech-tabs button.active {
  color: #ffffff;
  background: #1726c7;
}

.tech-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  width: min(1180px, 100%);
  min-height: 520px;
  margin: 0 auto;
  border-radius: 34px;
  padding: clamp(34px, 5vw, 64px);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.tech-panel.hidden {
  display: none;
}

.tech-copy h3 {
  max-width: 420px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.tech-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: #778195;
  font-size: 1rem;
  line-height: 1.75;
}

.tech-copy ul {
  display: grid;
  gap: 18px;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.tech-copy li {
  position: relative;
  padding-left: 32px;
  color: #111827;
  font-size: 1rem;
}

.tech-copy li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1726c7;
}

.tech-visual {
  min-height: 420px;
  border-radius: 28px;
  background: #f3f5f3;
  padding: clamp(24px, 4vw, 42px);
}

.learning-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.learning-visual svg {
  grid-column: 1 / -1;
}

.metric {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 18px;
  background: #ffffff;
}

.metric.green {
  background: #ccff40;
}

.metric small {
  text-transform: uppercase;
  font-weight: 900;
}

.metric strong {
  font-size: 3.2rem;
  font-weight: 500;
}

.metric span {
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(15, 23, 42, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.grid-line,
.dash-line {
  stroke: #cfd6df;
  stroke-dasharray: 5 8;
}

.chart-line {
  fill: none;
  stroke: #111827;
  stroke-width: 3;
}

.chart-fill {
  fill: rgba(15, 23, 42, 0.04);
}

.timeline-visual {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.time-head {
  display: flex;
  justify-content: flex-end;
  gap: 64px;
  border-radius: 8px;
  padding: 14px 24px;
  color: #9aa7b7;
  background: #f5f6f7;
}

.timeline-visual strong {
  display: block;
  margin: 52px 0 30px;
  color: #12384a;
  font-size: 2.4rem;
}

.bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 12px;
  height: 190px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.bars i {
  display: block;
  border-radius: 6px;
  background: #21b8d4;
}

.bars i:nth-child(1) { height: 42px; }
.bars i:nth-child(2) { height: 90px; }
.bars i:nth-child(3) { height: 56px; }
.bars i:nth-child(4) { height: 128px; }
.bars i:nth-child(5) { height: 78px; }
.bars i:nth-child(6) { height: 116px; }
.bars i:nth-child(7) { height: 100px; }
.bars i:nth-child(8) { height: 64px; }
.bars i:nth-child(9) { height: 138px; }
.bars i:nth-child(10) { height: 76px; }
.bars i:nth-child(11) { height: 108px; }
.bars i:nth-child(12) { height: 58px; }

.nlp-visual {
  background: #dedff8;
}

.nlp-visual small {
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 900;
}

.nlp-visual strong {
  display: block;
  margin: 8px 0 24px;
  font-size: 3rem;
  font-weight: 500;
}

.cloud-visual {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 28px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.cloud-visual strong,
.cloud-visual span {
  display: block;
}

.cloud-visual strong {
  margin-top: 28px;
  font-size: 2rem;
}

.cloud-visual small {
  color: #9ca3af;
  font-size: 1rem;
}

.cloud-visual span {
  color: #8b96a6;
  font-size: 0.8rem;
}

.ring {
  fill: none;
  stroke-width: 20;
}

.ring.base {
  stroke: #f1f1f1;
}

.ring.yellow {
  stroke: #ffb703;
  stroke-dasharray: 410 604;
  transform: rotate(-90deg);
  transform-origin: center;
}

.ring.pink {
  stroke: #ff006e;
  stroke-dasharray: 300 430;
  transform: rotate(-90deg);
  transform-origin: center;
}

.ring.purple {
  stroke: #8338ec;
  stroke-dasharray: 160 252;
  transform: rotate(-90deg);
  transform-origin: center;
}

.testimonial-section {
  background: #ffffff;
}

.testimonial-card {
  width: min(760px, 100%);
  min-height: 250px;
  margin: 0 auto;
  border: 1px solid #d5e0ec;
  border-radius: 8px;
  padding: 54px clamp(24px, 5vw, 78px);
  background: #f8fbff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.quote-mark {
  color: #60a5fa;
  font-size: 1.8rem;
}

.testimonial-card p {
  margin: 10px auto 24px;
  max-width: 640px;
  font-size: clamp(0.9rem, 1.25vw, 1.08rem);
  line-height: 1.45;
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
}

.testimonial-card small {
  margin-top: 4px;
  color: var(--muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  color: #2563eb;
  background: #ffffff;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 7px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.dots span.active {
  width: 28px;
  background: #3b82f6;
}

.discovery-section {
  background: #eef6ff;
  text-align: center;
}

.discovery-section p {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
}

.discovery-section .primary-btn {
  margin-top: 40px;
}

.check-line {
  display: block;
  margin-top: 26px;
  color: #64748b;
  font-size: 0.95rem;
}

.engagement-section {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 84px);
  background: #eef6ff;
}

.engagement-section > p,
.engagement-section > .primary-btn,
.engagement-section > .check-line {
  display: none;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.engagement-grid article {
  border: 1px solid #d5e0ec;
  border-radius: 18px;
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.engagement-grid span {
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 900;
}

.engagement-grid h3 {
  margin-top: 14px;
  font-size: 1.08rem;
}

.engagement-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.site-footer {
  color: #dbeafe;
  background:
    radial-gradient(circle at 18% 0, rgba(37, 99, 235, 0.22), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(59, 130, 246, 0.14), transparent 28%),
    #0b1222;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(38px, 5vw, 58px) 0;
  border-bottom: 1px solid rgba(219, 234, 254, 0.14);
}

.footer-cta .eyebrow {
  margin-bottom: 12px;
  color: #93c5fd;
}

.footer-cta h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1020b8);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, 0.8fr));
  gap: clamp(34px, 6vw, 86px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 78px) 0;
}

.footer-main p {
  max-width: 430px;
  margin: 22px 0;
  color: #b8c7de;
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.footer-brand .brand-wordmark {
  color: #ffffff;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}

.footer-contact-card {
  width: min(360px, 100%);
  border: 1px solid rgba(219, 234, 254, 0.15);
  border-radius: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-contact-card span {
  display: block;
  margin-bottom: 8px;
  color: #93c5fd;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact-card a {
  margin: 0;
  color: #ffffff;
  font-weight: 600;
}

.footer-main h3 {
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.footer-main a {
  display: block;
  margin-bottom: 14px;
  color: #c9d8ee;
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(219, 234, 254, 0.2);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  color: #9fb9dd;
}

.footer-bottom div {
  display: flex;
  gap: 34px;
}

@media (max-width: 980px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 16px;
  }

  .navbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    width: 100%;
    align-items: center;
  }

  .brand {
    justify-content: start;
    margin-right: 0;
    padding-left: 0;
  }

  .brand-wordmark {
    font-size: clamp(1.45rem, 5vw, 1.85rem);
  }

  .demo-btn {
    grid-column: 2;
    grid-row: 1;
    min-height: 38px;
    padding: 0 14px;
    white-space: nowrap;
    font-size: 0.78rem;
  }

  .hero-section,
  .contact-hero,
  .contact-main-section,
  .schedule-hero,
  .about-hero,
  .technology-hero,
  .service-page-hero,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    gap: 28px;
    padding-top: 170px;
    padding-bottom: 56px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy h1 {
    max-width: 680px;
    font-size: clamp(2rem, 7vw, 3.25rem);
    line-height: 1.08;
  }

  .hero-copy > p:not(.eyebrow):not(.hero-line) {
    max-width: 650px;
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-line {
    margin-top: 20px;
  }

  .hero-proof-panel {
    width: 100%;
    max-width: 720px;
    padding: 24px;
    border-radius: 24px;
  }

  .proof-metrics article {
    min-height: 96px;
    padding: 14px;
  }

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

  .nav-links {
    grid-column: 1 / -1;
    overflow-x: auto;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    gap: 2px;
    padding: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .tech-panel,
  .cloud-visual,
  .phase-row,
  .roadmap-matrix,
  .service-detail-block,
  .comparison-grid,
  .about-story-grid,
  .about-snapshot,
  .schedule-highlights,
  .engagement-grid,
  .technology-stack-grid,
  .principle-row,
  .stack-grid,
  .process-timeline,
  .proof-stats,
  .devops-before-after,
  .devops-stack,
  .tech-flow-grid {
    grid-template-columns: 1fr;
  }

  .tech-flow-grid article:not(:last-child)::after {
    display: none;
  }

  .phase-row::before,
  .lane-card::before {
    display: none;
  }

  .phase-row article {
    min-height: auto;
  }

  .lane-label {
    margin-top: 10px;
  }

  .tech-tabs {
    flex-wrap: wrap;
  }

  .tech-panel {
    min-height: auto;
  }

  .tech-copy ul {
    margin-top: 34px;
  }

  .tech-visual {
    min-height: 320px;
  }

  .tech-orbit {
    min-height: 360px;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .navbar {
    grid-template-columns: minmax(160px, 1fr) auto;
  }

  .brand-wordmark {
    font-size: 1.8rem;
  }

  .nav-links {
    justify-content: center;
    justify-self: center;
    width: fit-content;
    max-width: 100%;
  }

  .nav-links a {
    flex: 0 1 auto;
    padding: 8px 18px;
    font-size: 0.84rem;
  }

  .demo-btn {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.8rem;
  }

  .hero-section {
    padding-inline: clamp(28px, 5vw, 54px);
  }

  .proof-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-page-grid,
  .technology-stack-grid,
  .stack-grid,
  .comparison-grid,
  .about-story-grid,
  .about-snapshot,
  .engagement-grid,
  .principle-row,
  .schedule-highlights,
  .proof-stats,
  .devops-before-after,
  .devops-stack,
  .cloud-services-grid,
  .services-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phase-row,
  .roadmap-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-block,
  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-hero,
  .service-page-hero,
  .technology-hero,
  .about-hero {
    padding-inline: clamp(28px, 5vw, 54px);
  }

  .footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    width: min(860px, calc(100% - 48px));
  }

  .footer-cta h2 {
    max-width: 560px;
    font-size: clamp(1.45rem, 4vw, 2.1rem);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 52px;
    width: min(860px, calc(100% - 48px));
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-main p {
    max-width: 660px;
    margin: 18px 0;
  }

  .footer-contact-card {
    width: min(420px, 100%);
  }

  .footer-bottom {
    width: min(860px, calc(100% - 48px));
  }
}

@media (max-width: 680px) {
  .proof-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .site-header {
    padding: 12px;
  }

  .navbar {
    gap: 8px;
  }

  .brand-wordmark {
    font-size: clamp(1.35rem, 7vw, 1.65rem);
  }

  .demo-btn {
    min-height: 34px;
    padding: 0 9px;
    gap: 6px;
    font-size: 0.68rem;
  }

  .demo-btn span {
    font-size: 1.1rem;
  }

  .nav-links a {
    padding: 8px 6px;
    font-size: 0.68rem;
  }

  .hero-section {
    gap: 22px;
    padding: 148px 16px 44px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-copy h1 {
    font-size: clamp(1.72rem, 9vw, 2.35rem);
    line-height: 1.09;
  }

  .hero-copy > p:not(.eyebrow):not(.hero-line) {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
    min-height: 42px;
  }

  .hero-line {
    margin-top: 16px;
    font-size: 0.9rem;
  }

  .hero-proof-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .proof-header {
    gap: 6px;
  }

  .proof-header span {
    font-size: 0.66rem;
  }

  .proof-header strong {
    font-size: 1.05rem;
  }

  .proof-metrics {
    margin-top: 18px;
  }

  .proof-metrics article {
    min-height: 78px;
    border-radius: 14px;
    padding: 10px 8px;
  }

  .proof-metrics strong {
    font-size: 1.35rem;
  }

  .proof-metrics span {
    margin-top: 6px;
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .proof-services {
    gap: 7px;
    margin-top: 18px;
  }

  .proof-services span {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .proof-link {
    margin-top: 20px;
    font-size: 0.88rem;
  }

  .trusted-section {
    padding: 32px 16px 44px;
  }

  .trusted-section p {
    margin-bottom: 20px;
    font-size: 0.78rem;
  }

  .logo-track {
    gap: 42px;
  }

  .logo-track span {
    font-size: clamp(1rem, 6vw, 1.8rem);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .tech-tabs button {
    min-width: 118px;
    padding: 12px 18px;
  }

  .technology-hero {
    padding: 150px 18px 58px;
  }

  .about-hero {
    padding: 150px 18px 58px;
  }

  .schedule-hero {
    padding: 150px 18px 58px;
  }

  .tech-orbit {
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 26px;
  }

  .tech-orbit::before,
  .tech-orbit::after {
    display: none;
  }

  .tech-orbit strong,
  .tech-orbit span {
    position: static;
  }

  .tech-orbit strong {
    order: -1;
    width: 100%;
    height: auto;
    border-radius: 16px;
    padding: 18px;
  }

  .learning-visual {
    grid-template-columns: 1fr;
  }

  .learning-visual svg {
    grid-column: auto;
  }

  .primary-btn.large {
    min-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-cta-btn {
    width: 100%;
  }
}
