/* =============================================
   WESTEND HEALTH & DATA — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --teal-900:  #0a2830;
  --teal-800:  #0f3540;
  --teal-700:  #1a4d5c;
  --teal-600:  #1e5f6e;
  --teal-500:  #2d7a8c;
  --teal-400:  #4aa3b8;
  --teal-300:  #72c4d4;
  --teal-100:  #d6eff4;
  --teal-50:   #edf8fa;

  --white:     #f7fafb;
  --off-white: #eef4f6;
  --text-dark: #0d2e38;
  --text-mid:  #3a6070;
  --text-muted:#6a9aaa;

  --accent:    #c8e8ef;
  --gold:      #c9a96e;
  --gold-light:#e8cfa0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  48px;

  --shadow-sm:  0 2px 8px rgba(10,40,48,.08);
  --shadow-md:  0 8px 32px rgba(10,40,48,.12);
  --shadow-lg:  0 20px 60px rgba(10,40,48,.18);

  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --nav-h:      80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-400);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: var(--transition);
}
.btn-primary {
  background: var(--white);
  color: var(--teal-800);
}
.btn-primary:hover {
  background: var(--teal-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}
.btn-dark {
  background: var(--teal-800);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn svg { width: 16px; height: 16px; transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.6); opacity: 0;  }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes draw {
  from { stroke-dashoffset: 400; }
  to   { stroke-dashoffset: 0;   }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ======================================
   NAVIGATION
   ====================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,40,48,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo img {
  height: 44px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255,255,255,.8);
  transition: color .25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal-300);
  transition: width .3s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  padding: 10px 24px;
  font-size: .85rem;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: var(--transition);
}

/* ======================================
   HERO
   ====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--teal-900);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(45,122,140,.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(30,95,110,.3) 0%, transparent 60%),
    linear-gradient(135deg, #0a2830 0%, #0f3540 50%, #1a4d5c 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,122,140,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,122,140,.1) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 30%, transparent 80%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(74,163,184,.12) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  bottom: 60px; left: 10%;
  background: radial-gradient(circle, rgba(45,122,140,.15) 0%, transparent 70%);
  animation: float 11s ease-in-out infinite reverse;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}
.hero__eyebrow-line {
  width: 40px; height: 1px;
  background: var(--teal-300);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp .8s .15s ease both;
}
.hero__title em {
  font-style: italic;
  color: var(--teal-300);
}
.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
  animation: fadeUp .8s .25s ease both;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeUp .8s .35s ease both;
}
.hero__scroll {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .12em;
  animation: fadeIn 1.2s .8s ease both;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3));
  animation: float 2s ease-in-out infinite;
}

/* Floating data card */
.hero__card {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 320px;
  z-index: 2;
  animation: fadeUp .8s .4s ease both;
}
.hero__card-label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 20px;
}
.hero__metric {
  margin-bottom: 24px;
}
.hero__metric-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero__metric-label {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}
.hero__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.hero__bar {
  flex: 1;
  background: var(--teal-500);
  border-radius: 3px 3px 0 0;
  opacity: .7;
  transition: opacity .25s;
}
.hero__bar:hover { opacity: 1; }
.hero__bar--active { background: var(--teal-300); opacity: 1; }

/* ======================================
   MARQUEE / TRUST BAR
   ====================================== */
.marquee-section {
  background: var(--teal-800);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--teal-400);
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ======================================
   SERVICES
   ====================================== */
.services {
  padding: 120px 0;
  background: var(--white);
}
.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--teal-900);
  margin-top: 16px;
  margin-bottom: 20px;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--off-white);
  border: 1px solid rgba(10,40,48,.06);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.service-card__icon svg {
  width: 26px; height: 26px;
  color: var(--white);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--teal-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-card__body {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}
.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-dark);
}
.service-card__feature-dot {
  width: 6px; height: 6px;
  background: var(--teal-400);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.service-card--featured {
  background: var(--teal-800);
  border-color: transparent;
}
.service-card--featured .service-card__title,
.service-card--featured .service-card__body,
.service-card--featured .service-card__feature { color: rgba(255,255,255,.85); }
.service-card--featured .service-card__feature-dot { background: var(--teal-300); }
.service-card--featured::before { background: linear-gradient(90deg, var(--teal-300), var(--teal-400)); }

/* ======================================
   STATS / WHY WESTEND
   ====================================== */
.why {
  padding: 120px 0;
  background: var(--teal-900);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,122,140,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,122,140,.08) 1px, transparent 1px);
  background-size: 80px 80px;
}
.why__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.why__left .section-label { color: var(--teal-300); }
.why__left .section-title { color: var(--white); }
.why__left .section-body { color: rgba(255,255,255,.6); margin-bottom: 40px; }
.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why__stat {
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.why__stat:hover { background: rgba(255,255,255,.08); }
.why__stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--teal-300);
  line-height: 1;
  margin-bottom: 6px;
}
.why__stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.why__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why__pillar {
  display: flex;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition);
}
.why__pillar:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(74,163,184,.3);
}
.why__pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal-500);
  line-height: 1;
  min-width: 40px;
}
.why__pillar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.why__pillar-body {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

/* ======================================
   PROCESS
   ====================================== */
.process {
  padding: 120px 0;
  background: var(--off-white);
}
.process__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 80px;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 48px; left: 12.5%;
  width: 75%; height: 1px;
  background: linear-gradient(90deg, var(--teal-300), var(--teal-400), var(--teal-300));
  z-index: 0;
}
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process__step-num {
  width: 96px; height: 96px;
  background: var(--white);
  border: 2px solid var(--teal-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal-700);
  margin-bottom: 28px;
  position: relative;
  transition: var(--transition);
}
.process__step:hover .process__step-num {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
  transform: scale(1.08);
}
.process__step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--teal-900);
  margin-bottom: 12px;
}
.process__step-body {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ======================================
   INDUSTRIES
   ====================================== */
.industries {
  padding: 120px 0;
  background: var(--white);
}
.industries__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  padding: 36px 32px;
  border: 1.5px solid var(--teal-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}
.industry-card:hover {
  border-color: var(--teal-400);
  background: var(--teal-50);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.industry-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.industry-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 8px;
}
.industry-card__body {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ======================================
   CTA
   ====================================== */
.cta {
  padding: 120px 0;
  background: var(--teal-700);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta__inner {
  position: relative;
  z-index: 1;
}
.cta .section-label { color: var(--teal-300); }
.cta .section-title { color: var(--white); max-width: 600px; margin: 16px auto 20px; }
.cta .section-body { color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 44px; }
.cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: var(--teal-900);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand img { height: 40px; margin-bottom: 20px; }
.footer__brand-body {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer__col-title {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color .25s;
}
.footer__links a:hover { color: var(--teal-300); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__copy {
  font-size: .82rem;
  color: rgba(255,255,255,.25);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.25);
  transition: color .25s;
}
.footer__legal a:hover { color: rgba(255,255,255,.5); }

/* ======================================
   INNER PAGES — shared
   ====================================== */
.page-hero {
  padding: 160px 0 100px;
  background: var(--teal-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 60%, rgba(45,122,140,.3) 0%, transparent 70%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--teal-300); }
.page-hero .section-title { color: var(--white); margin-top: 16px; margin-bottom: 0; }

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 1024px) {
  .hero__card { display: none; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .why__inner { grid-template-columns: 1fr; gap: 60px; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process__steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
/* ── Mobile menu overlay ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  padding-top: var(--nav-h);
  background: rgba(10,40,48,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 0 24px;
}
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.8rem);
  font-weight: 300;
  color: rgba(255,255,255,.75);
  padding: 10px 0;
  transition: color .25s, transform .25s;
  text-align: center;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.mobile-menu__links a:last-child { border-bottom: none; }
.mobile-menu__links a:hover,
.mobile-menu__links a.active { color: var(--teal-300); transform: translateX(4px); }
.mobile-menu__cta {
  margin-top: 40px;
  border-color: rgba(255,255,255,.3);
  font-size: 1rem;
}
/* Hamburger → X */
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta__actions { flex-direction: column; align-items: center; }
  .container { padding: 0 20px; }
}
