:root {
  --ink: #06110f;
  --deep: #071b18;
  --deep-2: #0b2724;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f5fffc;
  --muted: #b8d4cd;
  --green: #58c332;
  --green-2: #7dde65;
  --cyan: #5fc7cd;
  --teal: #2196a6;
  --gold: #d99e16;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 6%, rgba(95, 199, 205, 0.25), transparent 26rem),
    radial-gradient(circle at 92% 13%, rgba(88, 195, 50, 0.22), transparent 28rem),
    linear-gradient(135deg, #04100f 0%, #071714 43%, #0b201e 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: rgba(88, 195, 50, 0.38);
  color: var(--white);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,.035) 25%, transparent 25%),
    linear-gradient(245deg, rgba(255,255,255,.022) 25%, transparent 25%);
  background-size: 9px 9px, 13px 13px;
  mix-blend-mode: soft-light;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1000;
  background: rgba(255,255,255,.06);
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 24px rgba(95, 199, 205, .65);
}

#orb-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .45;
}

.section-shell,
.site-header,
.site-footer {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.site-header::before {
  content: "";
  position: absolute;
  inset: 12px -20px auto;
  height: 72px;
  background: rgba(5, 18, 16, .72);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
  z-index: -1;
}

.brand {
  width: 190px;
  padding: 8px 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 255, 252, .82);
  font-weight: 650;
  font-size: 14px;
}

.main-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  margin-left: 6px;
  color: #06211d;
  background: linear-gradient(135deg, var(--green-2), var(--cyan));
  box-shadow: 0 12px 34px rgba(88,195,50,.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 58px;
  min-height: calc(100vh - 84px);
  align-items: center;
  padding: 70px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #a8eee4;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: 12px;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 99px;
  box-shadow: 0 0 18px rgba(95,199,205,.6);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 7.6vw, 95px);
  line-height: .94;
  letter-spacing: -.072em;
  max-width: 880px;
  text-wrap: balance;
}

.hero-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  margin-bottom: 34px;
}

.hero-actions,
.hero-proof,
.footer-links,
.identity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.34), transparent);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #061715;
  background: linear-gradient(135deg, var(--green-2), var(--cyan));
  box-shadow: 0 20px 45px rgba(88,195,50,.22), inset 0 1px rgba(255,255,255,.36);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
}

.btn-whatsapp {
  color: #081714;
  background: linear-gradient(135deg, #64e777, #b1f2a7);
}

.hero-proof {
  margin-top: 38px;
}

.hero-proof div {
  min-width: 160px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  border-radius: 22px;
  backdrop-filter: blur(18px);
}

.hero-proof strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.03em;
}

.hero-proof span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.visual-orbit {
  position: absolute;
  inset: 42px 0 auto;
  height: min(90vw, 520px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(95,199,205,.22), transparent 36%),
    radial-gradient(circle at 50% 50%, rgba(88,195,50,.12), transparent 62%);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 34px 70px rgba(0,0,0,.44));
}

.visual-orbit::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: conic-gradient(from 120deg, rgba(88,195,50,.1), rgba(95,199,205,.16), rgba(255,255,255,.02), rgba(88,195,50,.1));
  animation: rotate 18s linear infinite;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
}

.ring-one { inset: 4%; animation: pulseRing 4s ease-in-out infinite; }
.ring-two { inset: 18%; animation: pulseRing 4s .7s ease-in-out infinite; }
.ring-three { inset: 32%; animation: pulseRing 4s 1.4s ease-in-out infinite; }

.core-card {
  position: relative;
  z-index: 2;
  width: 236px;
  min-height: 236px;
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.18);
}

.core-card img {
  width: 82px;
  filter: drop-shadow(0 16px 26px rgba(88,195,50,.28));
}

.core-card strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.core-card span {
  color: var(--muted);
  font-size: 13px;
}

.orbit-item {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(5, 20, 17, .86);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  color: #eafffb;
  font-size: 13px;
  font-weight: 850;
}

.item-a { top: 8%; left: 50%; transform: translateX(-50%); }
.item-b { top: 43%; right: 1%; }
.item-c { bottom: 8%; left: 50%; transform: translateX(-50%); }
.item-d { top: 43%; left: 1%; }

.floating-dashboard {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 5;
  width: min(350px, 78vw);
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(6, 22, 19, .8);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.dash-header {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.dash-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.dash-header span:nth-child(2) { background: var(--cyan); }
.dash-header span:nth-child(3) { background: var(--green); }

.floating-dashboard p {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}

.score-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.score-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 18px rgba(95,199,205,.6);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.mini-grid strong {
  color: var(--white);
}

.signature-strip {
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}

.signature-strip span {
  padding: 22px 18px;
  background: rgba(255,255,255,.05);
  color: #eafffb;
  font-weight: 850;
  text-align: center;
}

.intro,
.expertise,
.approach,
.impact,
.identity,
.contact {
  padding: 88px 0;
}

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

.section-heading.narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.impact-card h2,
.identity-copy h2,
.contact-copy h2 {
  font-size: clamp(33px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -.055em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.impact-card p,
.identity-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

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

.glass-panel,
.service-card,
.step,
.impact-card,
.contact-panel,
.card-showcase,
.identity-copy {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.glass-panel {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.glass-panel h3,
.service-card h3,
.step h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.glass-panel p,
.service-card p,
.step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.service-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 28% 18%, rgba(95,199,205,.23), transparent 34%), radial-gradient(circle at 80% 82%, rgba(88,195,50,.14), transparent 38%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(126,222,101,.42);
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-number {
  position: absolute;
  top: 26px;
  right: 26px;
  color: rgba(255,255,255,.18);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.icon-lines {
  display: grid;
  gap: 7px;
  width: 54px;
  margin-bottom: 34px;
}

.icon-lines b {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.icon-lines b:nth-child(2) { width: 76%; opacity: .76; }
.icon-lines b:nth-child(3) { width: 48%; opacity: .5; }

.service-card h3 {
  max-width: 85%;
  font-size: 25px;
  line-height: 1.08;
}

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

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e4fff8;
  font-weight: 700;
  font-size: 14px;
}

.service-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(88,195,50,.78);
}

.accent-card {
  background: linear-gradient(145deg, rgba(88,195,50,.18), rgba(95,199,205,.08));
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95,199,205,.68), transparent);
  z-index: -1;
}

.step {
  padding: 28px;
  border-radius: 28px;
}

.step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #06110f;
  background: linear-gradient(135deg, var(--green-2), var(--cyan));
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(95,199,205,.22);
}

.impact-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 10%, rgba(95,199,205,.20), transparent 30%),
    radial-gradient(circle at 12% 80%, rgba(88,195,50,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  overflow: hidden;
}

.impact-list {
  display: grid;
  gap: 14px;
}

.impact-list p {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  margin: 0;
}

.impact-list strong,
.impact-list span {
  display: block;
}

.impact-list strong {
  color: var(--white);
  margin-bottom: 5px;
}

.impact-list span {
  color: var(--muted);
  line-height: 1.55;
}

.identity {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.identity-copy,
.card-showcase {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 42px);
}

.identity-tags span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #eafffb;
  font-weight: 800;
  font-size: 13px;
}

.card-showcase {
  margin: 0;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}

.card-showcase img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.card-showcase figcaption {
  color: var(--muted);
  margin-top: 14px;
  font-weight: 700;
  text-align: center;
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius-xl);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-lines a,
.contact-lines p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  transition: transform .25s var(--ease), background .25s var(--ease);
}

.contact-lines a:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,.09);
}

.contact-lines strong {
  color: var(--white);
}

.contact-lines span {
  color: var(--muted);
}

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

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

.contact-form label span {
  color: #dffbf5;
  font-size: 13px;
  font-weight: 850;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(4, 18, 15, .62);
  outline: 0;
  padding: 15px 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.contact-form select option {
  color: #06110f;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(95,199,205,.72);
  box-shadow: 0 0 0 4px rgba(95,199,205,.12);
  background: rgba(4, 18, 15, .78);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(184,212,205,.58);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 38px 0 50px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.site-footer img {
  width: 166px;
  margin-bottom: 12px;
}

.site-footer p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(245,255,252,.78);
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.copyright {
  grid-column: 1 / -1;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

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

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

@keyframes pulseRing {
  0%, 100% { opacity: .45; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.025); }
}

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

@media (max-width: 1020px) {
  .hero,
  .impact-card,
  .identity,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .signature-strip,
  .intro-grid,
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-header,
  .site-footer,
  .signature-strip {
    width: min(100% - 28px, 1180px);
  }

  .site-header::before {
    inset-inline: -8px;
  }

  .brand {
    width: 158px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  .main-nav {
    position: fixed;
    top: 96px;
    left: 14px;
    right: 14px;
    z-index: 100;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    background: rgba(5,18,16,.94);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }

  body.menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 16px;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  h1 {
    letter-spacing: -.06em;
  }

  .hero {
    gap: 30px;
    padding-bottom: 70px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof div {
    flex: 1 1 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .visual-orbit {
    height: 380px;
  }

  .core-card {
    width: 186px;
    min-height: 186px;
    border-radius: 30px;
  }

  .core-card img {
    width: 62px;
  }

  .core-card strong {
    font-size: 18px;
  }

  .orbit-item {
    font-size: 11px;
    padding: 9px 11px;
  }

  .floating-dashboard {
    right: 50%;
    transform: translateX(50%);
    bottom: -6px;
    animation: none;
  }

  .signature-strip,
  .intro-grid,
  .service-grid,
  .timeline,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .signature-strip {
    margin-top: 0;
  }

  .intro,
  .expertise,
  .approach,
  .impact,
  .identity,
  .contact {
    padding: 60px 0;
  }

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

  .site-footer {
    align-items: start;
  }
}

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