/* ============================================
   DIGITAL MED — STYLESHEET
   Apple-inspired premium design
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* --- CSS VARIABLES --- */
:root {
  --navy: #1D1248;
  --navy-deep: #120c30;
  --teal: #4ECECA;
  --teal-dark: #3ab8b8;
  --red: #E5323A;
  --white: #FFFFFF;
  --off-white: #F5F5F7;
  --text-secondary: #6E6E73;
  --border: rgba(29, 18, 72, 0.09);
  --border-light: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.65s var(--ease);
  --radius: 20px;
  --radius-sm: 12px;
}

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--navy);
}

h1 {
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

p { color: var(--text-secondary); }

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
}

.eyebrow--light { color: rgba(78, 206, 202, 0.65); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 88px;
}

.section-header--light h2 { color: var(--white); }
.section-header--light .section-sub { color: rgba(255,255,255,0.55); }

.section-sub {
  font-size: 19px;
  line-height: 1.65;
  margin-top: 20px;
  color: var(--text-secondary);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.35s var(--ease);
  letter-spacing: -0.01em;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
}

.btn--primary:hover {
  background: #2a186a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  padding: 13px 27px;
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(29, 18, 72, 0.35);
  transform: translateY(-1px);
}

.btn--teal {
  background: var(--teal);
  color: var(--navy);
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
}

.btn--teal:hover {
  background: #62dada;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(78, 206, 202, 0.38);
}

.btn--lg {
  padding: 18px 38px;
  font-size: 16px;
}

.btn--ghost.btn--lg { padding: 17px 37px; }

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition), transform var(--transition);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.reveal:nth-child(2) { transition-delay: 0.10s; }
.reveal:nth-child(3) { transition-delay: 0.20s; }
.reveal:nth-child(4) { transition-delay: 0.30s; }
.reveal:nth-child(5) { transition-delay: 0.40s; }
.reveal:nth-child(6) { transition-delay: 0.50s; }
.reveal:nth-child(7) { transition-delay: 0.30s; }

/* ============================================
   HEADER
   ============================================ */
#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  height: 90px;
  gap: 0;
}

.nav__logo {
  flex-shrink: 0;
  width: 260px;
  height: 134px;
  margin-right: auto;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.nav__logo img {
  width: 260px;
  height: 134px;
  object-fit: contain;
  display: block;
}

.logo--nav-default { opacity: 1; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 38px;
  margin-right: 32px;
  margin-left: 0;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: opacity 0.3s;
  letter-spacing: -0.01em;
}

.nav__links a:hover { opacity: 0.6; }

.nav__cta {
  flex-shrink: 0;
  font-size: 14px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  letter-spacing: -0.01em;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 0;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}


/* Mobile menu overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav__mobile.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.nav__mobile ul a {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  transition: color 0.3s;
}

.nav__mobile ul a:hover { color: var(--teal); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 75% 15%, rgba(78, 206, 202, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 85%, rgba(78, 206, 202, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 85% 75%, rgba(229, 50, 58, 0.06) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 110px;
  max-width: 800px;
}

.hero .eyebrow {
  color: rgba(78, 206, 202, 0.8);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.hero__headline {
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero__sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 52px;
  max-width: 560px;
  line-height: 1.65;
}

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

/* Hero CTAs on dark background */
.hero__ctas .btn--teal-hero {
  background: var(--teal);
  color: var(--navy);
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.hero__ctas .btn--teal-hero:hover {
  background: #62dada;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(78, 206, 202, 0.35);
}

.hero__ctas .btn--ghost-hero {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  padding: 17px 37px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  transition: all 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.hero__ctas .btn--ghost-hero:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* Hero decorative shapes */
.hero__visual {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  pointer-events: none;
  z-index: 1;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
}

.hero__shape--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(78, 206, 202, 0.1) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__shape--2 {
  width: 220px;
  height: 220px;
  background: rgba(78, 206, 202, 0.05);
  border: 1px solid rgba(78, 206, 202, 0.18);
  top: 8%;
  right: 8%;
  border-radius: var(--radius);
  animation: floatA 9s ease-in-out infinite;
}

.hero__shape--3 {
  width: 130px;
  height: 130px;
  background: rgba(229, 50, 58, 0.07);
  border: 1px solid rgba(229, 50, 58, 0.14);
  bottom: 18%;
  left: 18%;
  border-radius: var(--radius-sm);
  animation: floatB 12s ease-in-out infinite;
}

.hero__shape--4 {
  width: 72px;
  height: 72px;
  background: rgba(78, 206, 202, 0.12);
  border: 1px solid rgba(78, 206, 202, 0.25);
  bottom: 38%;
  right: 12%;
  border-radius: 50%;
  animation: floatA 7s ease-in-out infinite 2s;
}

@keyframes floatA {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(12deg) translateY(-22px); }
}

@keyframes floatB {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(18px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--off-white);
  padding: 128px 0;
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.pillar {
  padding: 44px 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

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

.pillar__icon {
  width: 54px;
  height: 54px;
  background: rgba(78, 206, 202, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: background 0.3s;
}

.pillar:hover .pillar__icon { background: rgba(78, 206, 202, 0.18); }

.pillar h3 { font-size: 20px; margin-bottom: 12px; }
.pillar p { font-size: 16px; line-height: 1.65; }

/* ============================================
   TRUSTED PARTNERS
   ============================================ */
.partners {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid rgba(29, 18, 72, 0.07);
  border-bottom: 1px solid rgba(29, 18, 72, 0.07);
}

.partners__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.partners__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.partners__logo {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}

.partners__logo:hover { opacity: 1; }

.partners__logo img {
  height: 100px;
  width: 100%;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.partners__logo--small img {
  height: 64px;
  max-width: 160px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--white);
  padding: 128px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 38px 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(78, 206, 202, 0.28);
}

/* 6 cards fill 2 rows of 3 evenly — no override needed */

.service-card__icon {
  width: 58px;
  height: 58px;
  background: rgba(78, 206, 202, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: background 0.3s;
}

.service-card:hover .service-card__icon {
  background: rgba(78, 206, 202, 0.16);
}

.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 15px; line-height: 1.62; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  background: var(--off-white);
  padding: 96px 0;
}

.section-header__sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio__profiles {
  margin-top: 48px;
  text-align: center;
}

.portfolio__profiles-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.portfolio__profiles-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.portfolio__profiles-break {
  flex: 0 0 100%;
  height: 0;
}

.portfolio__profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 20px;
  border: 1px solid rgba(29, 18, 72, 0.14);
  border-radius: 100px;
  background: var(--white);
  transition: all 0.25s var(--ease);
}

.portfolio__profile-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--navy);
  padding: 128px 0;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 0;
}

/* Connecting line between step dots */
.process__steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 0;
  border-top: 1px dashed rgba(78, 206, 202, 0.28);
  z-index: 0;
}

.process__step {
  padding: 0 28px;
  position: relative;
  text-align: center;
}

.process__number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--teal);
  background: rgba(78, 206, 202, 0.1);
  border: 1px solid rgba(78, 206, 202, 0.22);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}

.process__step:hover .process__number {
  background: rgba(78, 206, 202, 0.2);
  border-color: rgba(78, 206, 202, 0.5);
}

.process__step h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.process__step p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why {
  background: var(--white);
  padding: 128px 0;
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.why__left .eyebrow { color: var(--teal); }
.why__left h2 { margin-bottom: 24px; }

.why__left p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.why__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 8px;
}

.why__list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why__check {
  flex-shrink: 0;
  margin-top: 1px;
}

.why__list strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.why__list p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   RESULTS / VALUE
   ============================================ */
.results {
  background: var(--off-white);
  padding: 128px 0;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(29, 18, 72, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.result-block {
  background: var(--off-white);
  padding: 60px 52px;
  transition: background 0.35s var(--ease);
}

.result-block:hover { background: var(--white); }

.result-block__number {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(78, 206, 202, 0.22);
  line-height: 1;
  margin-bottom: 28px;
  font-variant-numeric: tabular-nums;
}

.result-block h3 {
  font-size: 25px;
  margin-bottom: 16px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.result-block p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-section {
  background: var(--navy);
  padding: 168px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(78, 206, 202, 0.09) 0%, transparent 60%);
}

.cta-section__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}

.cta-section .eyebrow { color: var(--teal); opacity: 0.7; }

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 52px);
}

.cta-section p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 52px;
  line-height: 1.65;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  padding: 88px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__logo {
  height: 64px;
  width: 64px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 240px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.footer__nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s var(--ease);
  letter-spacing: -0.01em;
}

.footer__nav a:hover { color: var(--teal); }

.footer__bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

.footer__tagline {
  font-size: 13px;
  color: rgba(78, 206, 202, 0.45);
  letter-spacing: 0.06em;
}

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

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

  .partners__logos { gap: 16px; }
  .partners__logo img { height: 80px; }

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

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
  }
  .process__steps::before { display: none; }

  .why__layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__nav { align-items: flex-start; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .about,
  .services,
  .process,
  .why,
  .results { padding: 88px 0; }

  .cta-section { padding: 120px 0; }

  .section-header { margin-bottom: 56px; }

  /* Hide desktop nav, show hamburger */
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  /* Hero */
  .hero__visual { display: none; }
  .hero__content { padding-top: 88px; padding-bottom: 88px; }
  .hero__sub br { display: none; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }

  /* About */
  .about__pillars { grid-template-columns: 1fr; gap: 16px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; gap: 16px; }

  /* Process */
  .process__steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process__step { text-align: left; }
  .process__number { margin: 0 0 24px; }

  /* Results */
  .results__grid { gap: 0; }
  .result-block { padding: 44px 36px; }
  .result-block__number { font-size: 56px; }

  /* Footer */
  .footer { padding: 72px 0 0; }
  .footer__inner { gap: 40px; padding-bottom: 56px; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 20px; }

  h1 { font-size: clamp(34px, 8.5vw, 46px); }
  h2 { font-size: clamp(26px, 6.5vw, 34px); }

  .pillar { padding: 32px 28px; }
  .service-card { padding: 30px 28px; }
  .result-block { padding: 36px 28px; }

  .btn--lg,
  .hero__ctas .btn--teal-hero,
  .hero__ctas .btn--ghost-hero {
    padding: 16px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
}
