:root {
  --ink: #172235;
  --muted: #647084;
  --soft: #eef4f8;
  --paper: #f8fbfd;
  --white: #ffffff;
  --line: #dce6ee;
  --blue: #1d5fd6;
  --blue-dark: #153f92;
  --teal: #067c89;
  --green: #31815f;
  --gold: #bd8424;
  --shadow: 0 24px 70px rgba(22, 34, 53, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(6, 124, 137, 0.09), transparent 26rem),
    radial-gradient(circle at 88% 4%, rgba(29, 95, 214, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(23, 34, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 34, 53, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 230, 238, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(23, 34, 53, 0.11);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--soft);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(29, 95, 214, 0.24);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100vh - 74px);
  padding: clamp(58px, 8vw, 110px) 0;
  margin: 0 auto;
}

.hero::before {
  position: absolute;
  inset: 9% -6% auto auto;
  width: 360px;
  height: 360px;
  content: "";
  border-radius: 50%;
  background: rgba(6, 124, 137, 0.09);
  filter: blur(2px);
  animation: ambientShift 7s ease-in-out infinite;
}

.hero-mark {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  order: 2;
}

.hero-mark::before {
  position: absolute;
  width: min(430px, 86vw);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(6, 124, 137, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 34%, rgba(238, 244, 248, 0.82) 35% 100%);
  box-shadow: var(--shadow);
}

.hero-mark::after {
  position: absolute;
  right: 8%;
  bottom: 16%;
  width: 44%;
  height: 30%;
  content: "";
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(29, 95, 214, 0.12), rgba(6, 124, 137, 0.1));
  transform: rotate(-5deg);
  animation: cardFloat 5s ease-in-out infinite;
}

.hero-mark img {
  position: relative;
  z-index: 3;
  width: min(250px, 62vw);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(23, 34, 53, 0.16);
  animation: logoFloat 5.5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(29, 95, 214, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: min(500px, 92vw);
  aspect-ratio: 1;
  animation: slowSpin 34s linear infinite;
}

.orbit-two {
  width: min(330px, 70vw);
  aspect-ratio: 1;
  border-color: rgba(6, 124, 137, 0.22);
  animation: slowSpin 28s linear infinite reverse;
}

.orbit-dot {
  position: absolute;
  z-index: 4;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 22px rgba(6, 124, 137, 0.48);
}

.dot-one {
  top: 18%;
  right: 24%;
}

.dot-two {
  bottom: 23%;
  left: 19%;
  background: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  order: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(50px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 34, 53, 0.16);
}

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

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section > * {
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--white);
}

.intro-copy {
  display: grid;
  gap: 14px;
}

.intro-copy p,
.section-heading > p:last-child,
.split-copy > p,
.service-card p,
.deliverable-grid p,
.value-grid p,
.faq-grid p,
.timeline p,
.legal p {
  color: var(--muted);
}

.intro-copy p {
  font-size: 19px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading > p:last-child {
  font-size: 18px;
}

.service-band,
.faq,
.contact-layout {
  background: linear-gradient(180deg, var(--paper), #ffffff);
}

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

.service-card,
.deliverable-grid article,
.value-grid article,
.faq-grid article,
.timeline article,
.contact-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(23, 34, 53, 0.07);
}

.service-card {
  min-height: 320px;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.deliverable-grid article:hover,
.value-grid article:hover,
.faq-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 95, 214, 0.25);
  box-shadow: 0 24px 54px rgba(23, 34, 53, 0.12);
}

.service-card span,
.deliverable-grid strong {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--teal);
}

.deliverables,
.values,
.process {
  background: var(--white);
}

.deliverable-grid,
.value-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.deliverable-grid article,
.value-grid article,
.faq-grid article {
  min-height: 220px;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

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

.split-copy > p {
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(23, 34, 53, 0.05);
  transition: transform 180ms ease, border-color 180ms ease;
}

.check-list li:hover {
  transform: translateX(6px);
  border-left-color: var(--blue);
}

.stat-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-panel div {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(29, 95, 214, 0.09), rgba(6, 124, 137, 0.11));
}

.stat-panel strong {
  display: block;
  color: var(--blue-dark);
  font-size: 42px;
  line-height: 1;
}

.stat-panel span {
  color: var(--muted);
  font-weight: 900;
}

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

.timeline article {
  padding: 28px;
}

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

.faq-grid article {
  min-height: 180px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(58px, 8vw, 88px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(6, 124, 137, 0.28), transparent 18rem),
    linear-gradient(135deg, #102033 0%, #173b6f 62%, #0f1d31 100%);
}

.cta-section > * {
  width: min(var(--max), 100%);
  max-width: var(--max);
}

.cta-section .eyebrow {
  color: #9fe2ea;
}

.cta-section h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.page-hero {
  padding: clamp(76px, 11vw, 132px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 24%, rgba(6, 124, 137, 0.22), transparent 18rem),
    linear-gradient(135deg, #11223a 0%, #173b6f 68%, #0f1d31 100%);
}

.page-hero > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.page-hero .eyebrow {
  color: #9fe2ea;
}

.page-hero p:last-child {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 22%, rgba(159, 226, 234, 0.2), transparent 18rem),
    linear-gradient(135deg, #11223a 0%, #173b6f 62%, #0f1d31 100%);
}

.about-hero-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 16%, rgba(6, 124, 137, 0.12), transparent 19rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.about-hero > * {
  width: min(var(--max), 100%);
}

.about-hero-copy {
  justify-self: end;
  max-width: 760px;
}

.about-hero .eyebrow {
  color: var(--teal);
}

.about-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

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

.profile-card {
  display: grid;
  gap: 22px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.profile-logo {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(29, 95, 214, 0.08), rgba(6, 124, 137, 0.09)),
    var(--white);
}

.profile-logo img {
  width: 132px;
}

.profile-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-card strong {
  max-width: 320px;
  font-size: 30px;
  line-height: 1.12;
}

.profile-card dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.profile-card dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  background: var(--white);
}

.profile-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--white);
}

.about-story-clean {
  background: var(--white);
}

.story-heading-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f5f9fc);
  box-shadow: 0 14px 38px rgba(23, 34, 53, 0.07);
}

.story-heading-card span {
  display: block;
  max-width: 440px;
  color: var(--muted);
  font-weight: 800;
}

.story-copy {
  display: grid;
  gap: 14px;
}

.story-copy p {
  color: var(--muted);
  font-size: 18px;
}

.audience-section,
.capability-section {
  background: linear-gradient(180deg, var(--paper), #ffffff);
}

.audience-section-clean {
  background:
    linear-gradient(180deg, #f6fafc 0%, #ffffff 100%);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-feature-grid article,
.capability-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(23, 34, 53, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-feature-grid article:hover,
.capability-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 95, 214, 0.25);
  box-shadow: 0 22px 48px rgba(23, 34, 53, 0.12);
}

.about-feature-grid span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.about-feature-grid p,
.capability-list p,
.method-list p {
  color: var(--muted);
}

.about-method {
  background: var(--white);
}

.about-method-clean {
  background: var(--white);
}

.method-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.method-rail article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 34, 53, 0.06);
}

.method-rail span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.about-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 30%, rgba(159, 226, 234, 0.18), transparent 18rem),
    linear-gradient(135deg, #11223a 0%, #173b6f 70%, #0f1d31 100%);
}

.about-cta-strip > * {
  width: min(var(--max), 100%);
}

.about-cta-strip .button {
  flex: 0 0 auto;
  width: auto;
}

.about-cta-strip .eyebrow {
  color: #9fe2ea;
}

.about-cta-strip h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.capability-section-clean {
  background: linear-gradient(180deg, #ffffff, #f6fafc);
}

.brand-panel {
  min-height: 410px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 36px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #eef6fb);
  box-shadow: var(--shadow);
}

.brand-panel img {
  width: min(210px, 68vw);
}

.brand-panel strong {
  display: block;
  max-width: 360px;
  font-size: 30px;
  line-height: 1.08;
}

.brand-panel span {
  max-width: 360px;
  color: var(--muted);
  font-weight: 800;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pill-list span:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 95, 214, 0.35);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 24px;
}

.contact-form,
.contact-card {
  padding: clamp(22px, 4vw, 36px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(29, 95, 214, 0.16);
  border-color: var(--blue);
}

.contact-form .button {
  justify-self: start;
  font: inherit;
}

.form-status {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-card {
  align-self: start;
  display: grid;
  gap: 14px;
}

.contact-card a {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.legal {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
}

.legal h2 {
  margin-top: 34px;
  font-size: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: var(--paper);
}

.not-found img {
  width: 86px;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(40px, 8vw, 76px);
}

.reveal.is-visible {
  animation: revealIn 620ms ease both;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

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

  .hero-mark {
    min-height: 300px;
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .intro,
  .split,
  .contact-layout,
  .about-hero,
  .about-story {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .deliverable-grid,
  .value-grid,
  .faq-grid,
  .timeline,
  .about-feature-grid,
  .capability-list,
  .method-rail {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  body::before {
    display: none;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand span {
    font-size: 15px;
  }

.hero {
    width: min(calc(100% - 28px), var(--max));
    min-height: auto;
    padding: 34px 0 64px;
  }

  .hero-mark {
    overflow: hidden;
    min-height: 260px;
  }

  .hero > * {
    min-width: 0;
  }

  .orbit-one {
    width: min(360px, 86vw);
  }

  .orbit-two {
    width: min(260px, 66vw);
  }

  .hero-mark img {
    width: min(190px, 62vw);
  }

  h1 {
    font-size: clamp(46px, 16vw, 70px);
  }

  .hero-actions,
  .hero-badges {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-block: 62px;
  }

  .about-hero {
    padding-block: 64px 88px;
  }

  .about-metrics {
    grid-template-columns: 1fr;
    margin-top: -34px;
  }

  .service-grid,
  .deliverable-grid,
  .value-grid,
  .faq-grid,
  .timeline,
  .about-feature-grid,
  .capability-list,
  .method-rail {
    grid-template-columns: 1fr;
  }

  .about-hero-actions,
  .about-cta-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .service-card {
    min-height: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-9px) rotate(-3deg);
  }
}

@keyframes ambientShift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-16px, 14px) scale(1.05);
  }
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Compact About page redesign */
.about-page {
  background: #fbfcfd;
}

.about-page .site-header {
  background: rgba(255, 255, 255, 0.94);
}

.about-main {
  color: #1f2937;
}

.about-cover,
.about-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.about-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
  padding: 72px 0 54px;
}

.about-kicker {
  margin: 0 0 12px;
  color: #087c89;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-cover h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #1f2937;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.about-cover p {
  max-width: 700px;
  color: #5f6b7a;
  font-size: 18px;
}

.about-summary {
  padding: 22px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(31, 41, 55, 0.08);
}

.about-summary img {
  width: 112px;
  margin-bottom: 22px;
}

.about-summary dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e5edf3;
  border-radius: 8px;
  background: #e5edf3;
}

.about-summary dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 13px;
  background: #ffffff;
}

.about-summary dt {
  color: #7a8594;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-summary dd {
  margin: 0;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
}

.about-section {
  padding: 54px 0;
  border-top: 1px solid #e5edf3;
}

.about-section h2 {
  max-width: 680px;
  margin-bottom: 16px;
  color: #1f2937;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.14;
}

.about-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 48px;
}

.about-prose {
  display: grid;
  gap: 14px;
}

.about-prose p,
.about-service-list p,
.workflow-table p,
.about-note p {
  color: #667384;
  font-size: 16px;
}

.about-services h2,
.about-workflow h2 {
  margin-bottom: 28px;
}

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

.about-service-list article,
.workflow-table article {
  padding: 20px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.05);
}

.about-service-list h3,
.workflow-table h3 {
  color: #1f2937;
  font-size: 18px;
}

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

.workflow-table span {
  display: inline-flex;
  margin-bottom: 22px;
  color: #1d5fd6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.about-note {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
  padding: 34px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #eef7f8);
}

.about-note h2 {
  margin-bottom: 0;
}

.about-note p {
  margin-bottom: 0;
}

.about-note .button {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .about-cover,
  .about-two-column,
  .about-note {
    grid-template-columns: 1fr;
  }

  .about-summary {
    max-width: 520px;
  }

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

@media (max-width: 640px) {
  .about-cover,
  .about-section {
    width: min(calc(100% - 28px), 1120px);
  }

  .about-cover {
    padding: 42px 0 34px;
  }

  .about-cover h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .about-cover p {
    font-size: 16px;
  }

  .about-section {
    padding: 40px 0;
  }

  .about-section h2 {
    font-size: 27px;
  }

  .about-service-list,
  .workflow-table {
    grid-template-columns: 1fr;
  }

  .about-note {
    padding: 22px;
  }
}


.head {
  font-size: 56px;
}

.bt-color{
  background-color: #1d5fd6;
  color: white;
}
