:root {
  --clr-primary: #3d5afe;
  --clr-secondary: #00c6ff;
  --clr-accent: #ff8a65;
  --clr-dark: #0a1128;
  --clr-light: #f5f7fb;
  --font-heading: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-nav: "Lato", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --max-width: 1120px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 60px rgba(3, 11, 38, 0.25);
  --shadow-md: 0 18px 32px rgba(3, 11, 38, 0.18);
  --shadow-sm: 0 6px 16px rgba(3, 11, 38, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: rgba(10, 17, 40, 0.82);
  background: var(--clr-light);
  line-height: 1.7;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--clr-dark);
  font-family: var(--font-heading);
  margin: 0 0 0.6em;
  line-height: 1.2;
}

p {
  margin: 0 0 1.2em;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(245, 247, 251, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 90, 254, 0.14);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--clr-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-logo img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.site-logo__title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-logo__subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-family: var(--font-nav);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 8px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid rgba(61, 90, 254, 0.7);
  box-shadow: none;
}

.btn--outline:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -200px;
  left: -160px;
  background: rgba(61, 90, 254, 0.5);
}

.hero::after {
  width: 440px;
  height: 440px;
  bottom: -180px;
  right: -160px;
  background: rgba(0, 198, 255, 0.4);
}

.hero-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 3.4vw + 1rem, 4rem);
}

.hero-copy p {
  font-size: 1.08rem;
  color: rgba(10, 17, 40, 0.72);
  max-width: 540px;
}

.hero-visual {
  position: relative;
  padding: 36px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(61, 90, 254, 0.18), rgba(0, 198, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-lg);
  z-index: -2;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: var(--radius-lg);
  background: url("../img/quantum-wave.svg") center/cover no-repeat, rgba(10, 17, 40, 0.85);
  z-index: -1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.hero-stat {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5f7fb;
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
  color: #fff;
}

.section {
  padding: 108px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--flush-top {
  padding-top: 48px;
}

.section--flush-bottom {
  padding-bottom: 56px;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(61, 90, 254, 0.1);
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section__title {
  max-width: 680px;
}

.section__lead {
  max-width: 640px;
  color: rgba(10, 17, 40, 0.68);
  font-size: 1.04rem;
}

.feature-grid {
  margin-top: 48px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card {
  display: block;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 17, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(61, 90, 254, 0.08), rgba(0, 198, 255, 0.12));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::after,
.feature-card:focus-visible::after {
  opacity: 1;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.16), rgba(0, 198, 255, 0.16));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 32px;
  height: 32px;
}

.split-section {
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.split-section .glass-card {
  padding: 40px;
  position: relative;
}

.split-section ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 17, 40, 0.06);
}

.split-section ul li:last-child {
  border-bottom: none;
}

.split-section ul strong {
  color: var(--clr-dark);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(61, 90, 254, 0.12);
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-banner {
  margin: 120px 0;
  padding: 60px 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--clr-dark), #001f54);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: -80px;
  background: url("../img/mesh-gradient.svg") center/cover no-repeat;
  opacity: 0.55;
  filter: saturate(120%);
}

.cta-banner .cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonial {
  margin-top: 48px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.testimonial footer {
  margin-top: 24px;
  font-weight: 600;
}

.timeline {
  margin-top: 48px;
  display: grid;
  gap: 36px;
}

.timeline-item {
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr;
  align-items: start;
}

.timeline-item strong {
  color: var(--clr-primary);
  font-size: 1.1rem;
}

.team-grid {
  margin-top: 52px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.2), rgba(0, 198, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-dark);
  font-size: 32px;
  font-weight: 700;
}

.contact-card {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 40px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

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

.contact-info li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.1), rgba(0, 198, 255, 0.12));
}

form {
  display: grid;
  gap: 24px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: var(--clr-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid rgba(10, 17, 40, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: inherit;
  color: inherit;
  background: rgba(255, 255, 255, 0.96);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(61, 90, 254, 0.7);
  outline: none;
  box-shadow: 0 0 0 4px rgba(61, 90, 254, 0.12);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.site-footer {
  margin-top: auto;
  background: #060b1b;
  color: rgba(245, 247, 251, 0.72);
  padding: 60px 0 40px;
}

.site-footer .site-logo {
  color: #fff;
}

.site-footer .site-logo__title,
.site-footer .site-logo__subtitle {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-brand p {
  color: rgba(245, 247, 251, 0.65);
}

.footer-nav ul {
  display: grid;
  gap: 14px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 247, 251, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: rgba(245, 247, 251, 0.7);
}

.tag-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.tag-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(61, 90, 254, 0.12);
  color: var(--clr-primary);
  font-weight: 600;
}

.breadcrumb {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.breadcrumb span {
  opacity: 0.6;
}

.sub-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, rgba(61, 90, 254, 0.1), rgba(0, 198, 255, 0.14));
  position: relative;
  overflow: hidden;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/tech-grid.svg") center/cover no-repeat;
  opacity: 0.28;
}

.sub-hero .container {
  position: relative;
  z-index: 1;
}

.sub-hero h1 {
  font-size: clamp(2.2rem, 2vw + 1rem, 3.2rem);
  max-width: 640px;
}

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

.pill-list span {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(61, 90, 254, 0.18);
  font-weight: 600;
  color: var(--clr-dark);
}

.values-grid {
  margin-top: 48px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.values-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 17, 40, 0.08);
}

.locations {
  margin-top: 40px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.location-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 17, 40, 0.08);
}

.stat-highlight {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 32px;
}

.stat-highlight span {
  display: block;
  font-weight: 700;
  color: var(--clr-dark);
  font-size: 1.8rem;
}

.service-list {
  margin-top: 48px;
  display: grid;
  gap: 36px;
}

.service-item {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 17, 40, 0.08);
  scroll-margin-top: 140px;
}

.service-media {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.2), rgba(0, 198, 255, 0.16));
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  background: url("../img/tech-grid.svg") center/cover no-repeat;
  opacity: 0.16;
  mix-blend-mode: lighten;
}

.service-media img {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
}

.service-item:nth-child(even) .service-copy {
  order: -1;
}

.service-caption {
  margin-top: 18px;
  color: rgba(10, 17, 40, 0.62);
}

.service-meta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: rgba(10, 17, 40, 0.7);
}

.service-meta strong {
  color: var(--clr-dark);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table thead {
  background: rgba(61, 90, 254, 0.08);
}

.table th,
.table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(10, 17, 40, 0.08);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.awards-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.award-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(61, 90, 254, 0.1);
  box-shadow: var(--shadow-sm);
}

.utility-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  background: rgba(61, 90, 254, 0.1);
  margin-top: 64px;
}

.breadcrumb a {
  color: rgba(10, 17, 40, 0.6);
}

.breadcrumb a:hover {
  color: var(--clr-primary);
}

.list-check {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.list-check li {
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.list-check strong {
  display: block;
  color: var(--clr-dark);
}

.list-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.1), rgba(0, 198, 255, 0.16));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.list-icon img {
  width: 24px;
  height: 24px;
}

.quote {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--clr-dark);
}

.page-intro {
  padding: 80px 0 0;
}

.page-intro p {
  font-size: 1.05rem;
  color: rgba(10, 17, 40, 0.68);
}

.careers-banner {
  margin-top: 80px;
  padding: 50px 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.metrics-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 48px;
}

.metric-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.metric-card strong {
  display: block;
  font-size: 2.2rem;
  color: var(--clr-primary);
}

.contact-cta {
  margin-top: 60px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(61, 90, 254, 0.1);
  display: grid;
  gap: 18px;
}

.contact-cta strong {
  font-size: 1.3rem;
  color: var(--clr-dark);
}

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-shape {
  position: absolute;
  inset: auto;
  border-radius: 40%;
  background: linear-gradient(130deg, rgba(61, 90, 254, 0.16), rgba(0, 198, 255, 0.18));
  filter: blur(0);
  opacity: 0.8;
  animation: float 14s ease-in-out infinite;
  mix-blend-mode: screen;
}

.floating-shape--one {
  width: 160px;
  height: 160px;
  top: 28%;
  right: -60px;
}

.floating-shape--two {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: 18%;
}

.floating-shape--three {
  width: 180px;
  height: 180px;
  top: -60px;
  left: -40px;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(8px, -12px, 0) rotate(4deg);
  }
}

.mobile-nav-toggle {
  display: none;
}

@media (max-width: 960px) {
  .site-header .container {
    gap: 18px;
  }

  .site-nav {
    position: fixed;
    inset: 72px 24px auto;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 17, 40, 0.08);
    transform: translateY(-24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.1rem;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(61, 90, 254, 0.1);
    border: 1px solid rgba(61, 90, 254, 0.3);
  }

  .hero {
    padding-top: 108px;
  }

  .site-header {
    background: rgba(245, 247, 251, 0.96);
  }

  .service-item {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .service-item:nth-child(even) .service-copy {
    order: 0;
  }

  .service-media {
    min-height: 200px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 96px 0 80px;
  }

  .section--tight {
    padding: 56px 0;
  }

  .section--flush-top {
    padding-top: 32px;
  }

  .section--flush-bottom {
    padding-bottom: 36px;
  }

  .hero-visual {
    padding: 24px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .cta-banner {
    padding: 48px 32px;
  }

  .contact-card {
    padding: 32px;
  }

  .service-media {
    padding: 40px;
  }

  .service-media img {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section--tight {
    padding: 48px 0;
  }

  .section--flush-top {
    padding-top: 28px;
  }

  .section--flush-bottom {
    padding-bottom: 32px;
  }

  .site-header .container {
    padding: 16px 0;
  }

  .hero {
    padding: 88px 0 72px;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-card {
    padding: 28px 24px;
  }

  .service-item {
    padding: 28px 24px;
  }
}
