:root {
  --navy-950: #061334;
  --navy-900: #081b4b;
  --navy-800: #102c6a;
  --navy-700: #173b87;
  --ink: #172033;
  --muted: #687084;
  --paper: #f6f7fa;
  --white: #ffffff;
  --line: #dfe3ec;
  --red: #d55328;
  --green: #2c6a32;
  --gold: #d39d23;
  --shadow-sm: 0 12px 30px rgba(7, 24, 64, .08);
  --shadow-lg: 0 28px 70px rgba(7, 24, 64, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 9999;
  padding: .8rem 1rem;
  color: var(--white);
  background: var(--navy-900);
  border-radius: .6rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}
.section-shell { position: relative; padding: 112px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(8, 27, 75, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  width: 176px;
  display: block;
}
.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  font-size: .94rem;
  font-weight: 700;
  color: #34405a;
}
.main-nav a { position: relative; padding: 1rem 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .65rem;
  height: 2px;
  background: var(--navy-700);
  transition: right .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-call {
  padding: .72rem 1.2rem;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid var(--navy-900);
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.header-call:hover { background: var(--navy-700); transform: translateY(-2px); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--paper);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--navy-900); transition: .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(8,27,75,.035) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(30deg, rgba(8,27,75,.025) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(180deg, #fbfcff 0%, #f3f5fa 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: var(--navy-950);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.eyebrow {
  margin: 0 0 1.15rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--navy-700);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 3px; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: 999px; }
.eyebrow.light { color: #dbe5ff; }
.hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--navy-950);
  font-size: clamp(2.65rem, 5.8vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-name {
  margin: 1.8rem 0 .45rem;
  color: var(--navy-800);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
}
.hero-address { margin: 0; max-width: 560px; color: var(--muted); font-size: 1.02rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button {
  min-height: 50px;
  padding: .85rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--navy-900); box-shadow: 0 12px 24px rgba(8,27,75,.22); }
.button-primary:hover { background: var(--navy-700); box-shadow: 0 16px 30px rgba(8,27,75,.28); }
.button-secondary { color: var(--navy-900); background: var(--white); border-color: #cbd2df; }
.button-secondary:hover { border-color: var(--navy-700); box-shadow: var(--shadow-sm); }
.hero-contact-row { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin-top: 1.4rem; color: #4c5670; font-size: .9rem; }
.hero-contact-row strong { color: var(--navy-900); }
.hero-visual { position: relative; padding: 1.6rem 0 1.6rem 1rem; }
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 7px solid rgba(255,255,255,.95);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent 40%, rgba(8,27,75,.08));
}
.image-frame img { width: 100%; aspect-ratio: 1.58 / 1; object-fit: cover; }
.frame-label {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  padding: .55rem .85rem;
  color: var(--white);
  background: rgba(8,27,75,.86);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.growth-bars {
  position: absolute;
  left: -18px;
  bottom: -26px;
  width: 176px;
  height: 130px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  background: rgba(255,255,255,.95);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.growth-bars .bar { flex: 1; border-radius: 4px 4px 1px 1px; }
.bar-red { height: 35%; background: var(--red); }
.bar-green { height: 57%; background: var(--green); }
.bar-gold { height: 78%; background: var(--gold); }
.bar-navy { height: 100%; background: var(--navy-950); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .4; }
.hero-glow-one { width: 260px; height: 260px; left: -130px; top: 80px; background: rgba(211,157,35,.18); }
.hero-glow-two { width: 220px; height: 220px; left: 40%; bottom: -120px; background: rgba(44,106,50,.12); }

.quick-facts { position: relative; z-index: 3; margin-top: -1px; background: var(--navy-950); color: var(--white); }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.facts-grid article {
  min-height: 138px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid rgba(255,255,255,.13);
}
.facts-grid article:last-child { border-right: 0; }
.fact-index { color: rgba(255,255,255,.34); font-size: 2rem; font-weight: 900; }
.facts-grid small { display: block; margin-bottom: .25rem; color: #aebee3; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.facts-grid strong { display: block; font-size: 1rem; overflow-wrap: anywhere; }

.section-heading { max-width: 760px; margin-bottom: 3.2rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .professional h2, .location h2, .cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.15rem, 4.3vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.section-heading p:not(.eyebrow) { margin: 1rem 0 0; color: var(--muted); font-size: 1.03rem; }

.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.service-card {
  position: relative;
  min-height: 300px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #fff, #f8f9fc);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--navy-900); }
.service-card:nth-child(2)::before { background: var(--red); }
.service-card:nth-child(3)::before { background: var(--green); }
.service-card:nth-child(4)::before { background: var(--gold); }
.service-card:hover { transform: translateY(-8px); border-color: #c4ccdb; box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: #edf2ff;
  border-radius: 18px;
}
.service-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-number { position: absolute; top: 1.7rem; right: 1.5rem; color: #bdc4d0; font-size: .85rem; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin: 3rem 0 0; color: var(--navy-950); font-size: 1.42rem; line-height: 1.2; }

.professional { background: #f2f4f8; }
.professional-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 2rem; }
.professional-panel {
  min-height: 490px;
  padding: clamp(2rem, 5vw, 4.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(211,157,35,.25), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.professional-panel h2 { color: var(--white); }
.professional-firm { margin: 2rem 0 0; color: #f5cf6b; font-size: 1.05rem; font-weight: 950; letter-spacing: .14em; }
.professional-subtitle { margin: .25rem 0 0; color: #d8e2fb; font-size: 1.1rem; }
.professional-line { width: 70px; height: 4px; margin: 2rem 0; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: 999px; }
.professional-area { margin: 0; max-width: 560px; color: rgba(255,255,255,.85); font-size: 1.05rem; }
.visual-chart {
  position: relative;
  min-height: 490px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.visual-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(8,27,75,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(8,27,75,.055) 1px, transparent 1px);
  background-size: 36px 36px;
}
.chart-bars { position: absolute; left: 12%; right: 12%; bottom: 32%; height: 52%; display: flex; align-items: end; gap: 9%; }
.chart-bars span { position: relative; z-index: 2; width: 15%; height: var(--height); border-radius: 7px 7px 2px 2px; box-shadow: 0 10px 18px rgba(8,27,75,.12); }
.chart-bars span:nth-child(1) { background: var(--red); }
.chart-bars span:nth-child(2) { background: var(--green); }
.chart-bars span:nth-child(3) { background: var(--gold); }
.chart-bars span:nth-child(4) { background: var(--navy-950); }
.chart-arrow {
  position: absolute;
  z-index: 3;
  top: 16%;
  left: 18%;
  width: 62%;
  height: 24%;
  border-top: 12px solid rgba(8,27,75,.9);
  transform: rotate(-18deg);
}
.chart-arrow::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -29px;
  width: 34px;
  height: 34px;
  border-top: 12px solid rgba(8,27,75,.9);
  border-right: 12px solid rgba(8,27,75,.9);
  transform: rotate(45deg);
}
.chart-caption { position: relative; z-index: 3; padding: 1.4rem; color: var(--white); background: var(--navy-950); border-radius: 18px; }
.chart-caption small { display: block; color: #aebee3; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.chart-caption strong { display: block; margin-top: .4rem; line-height: 1.35; }

.location { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.address-card {
  margin-top: 2.2rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--navy-900);
  border-radius: var(--radius-sm);
}
.address-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 14px;
}
.address-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.address-card small { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.address-card p { margin: .3rem 0 0; color: var(--navy-950); font-size: 1.08rem; font-weight: 800; }
.copy-button {
  margin-top: 1rem;
  padding: .75rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid #cbd2df;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.copy-button:hover { border-color: var(--navy-700); box-shadow: var(--shadow-sm); }
.location-art {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 25%, rgba(211,157,35,.25), transparent 28%),
    linear-gradient(145deg, #eef2fb, #dce4f5);
  overflow: hidden;
}
.building { position: relative; width: 310px; height: 235px; }
.building .roof { position: absolute; left: 0; right: 0; top: 18px; margin: auto; width: 270px; height: 62px; background: var(--navy-900); clip-path: polygon(50% 0, 100% 100%, 0 100%); filter: drop-shadow(0 12px 14px rgba(8,27,75,.18)); }
.building .column { position: absolute; top: 92px; width: 38px; height: 112px; background: linear-gradient(90deg, #fff, #d8deea, #fff); border-top: 8px solid var(--navy-900); border-bottom: 8px solid var(--navy-900); }
.building .c1 { left: 42px; }
.building .c2 { left: 103px; }
.building .c3 { left: 169px; }
.building .c4 { left: 230px; }
.building .base { position: absolute; left: 15px; right: 15px; bottom: 12px; height: 25px; background: var(--navy-900); box-shadow: 0 13px 0 -6px var(--navy-700); }

.contact { background: #f5f7fb; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.contact-card {
  min-height: 270px;
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-card:hover { transform: translateY(-7px); border-color: #bcc6d8; box-shadow: var(--shadow-lg); }
.contact-icon { margin-bottom: auto; width: 58px; height: 58px; display: grid; place-items: center; color: var(--white); background: var(--navy-900); border-radius: 18px; }
.contact-card:nth-child(2) .contact-icon { background: var(--green); }
.contact-card:nth-child(3) .contact-icon { background: var(--gold); color: var(--navy-950); }
.contact-card small { color: var(--muted); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: .45rem; color: var(--navy-950); font-size: clamp(1rem, 1.8vw, 1.28rem); overflow-wrap: anywhere; }
.contact-card span { margin-top: 1rem; color: var(--navy-700); font-weight: 850; }

.cta { padding: 72px 0; color: var(--white); background: linear-gradient(125deg, var(--navy-950), var(--navy-700)); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
.cta p { margin: 0 0 .65rem; color: #b5c5e8; font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.cta h2 { max-width: 820px; color: var(--white); font-size: clamp(2rem, 4vw, 3.7rem); }
.cta span { display: block; margin-top: 1rem; color: #e1e8f8; font-weight: 750; }
.cta-actions { display: flex; flex-direction: column; gap: .75rem; min-width: 170px; }
.button-light { color: var(--navy-950); background: var(--white); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.45); }
.button-outline-light:hover { background: rgba(255,255,255,.1); }

.site-footer { padding: 70px 0 28px; color: #dfe6f5; background: #040c20; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; }
.footer-brand img { width: 220px; height: 100px; object-fit: contain; object-position: left; padding: .35rem; background: var(--white); border-radius: 10px; }
.footer-brand p { margin: 1rem 0 0; color: var(--white); font-weight: 800; }
.site-footer strong { display: block; margin-bottom: .85rem; color: var(--white); }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.footer-contact a { color: #b9c5dc; }
.footer-contact a:hover { color: var(--white); }
.footer-address p { margin: 0; color: #b9c5dc; }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); color: #8e9bb7; font-size: .9rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--white); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 2000;
  padding: .85rem 1.1rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 120px);
  opacity: 0;
  transition: .3s ease;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* El contenido permanece visible incluso si JavaScript no carga.
   La clase .visible solamente añade una animación progresiva. */
.reveal { opacity: 1; transform: none; }
.reveal.visible { animation: reveal-up .7s ease both; animation-delay: var(--delay, 0ms); }

@keyframes reveal-up {
  from { opacity: .15; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

:focus-visible { outline: 3px solid #f1b934; outline-offset: 3px; }

@media (max-width: 1020px) {
  .nav-wrap { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: flex; justify-self: end; order: 2; }
  .header-call { justify-self: end; order: 3; }
  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 10px);
    padding: 1rem;
    display: grid;
    justify-content: stretch;
    gap: .2rem;
    color: var(--navy-950);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .25s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: .85rem; border-radius: 10px; }
  .main-nav a:hover { background: var(--paper); }
  .main-nav a::after { display: none; }
  .hero::before { width: 46%; }
  .hero-grid { gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section-shell { padding: 84px 0; }
  .hero { min-height: auto; padding-top: 88px; }
  .hero::before { top: auto; bottom: 0; width: 100%; height: 40%; clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-address { margin-inline: auto; }
  .hero-actions, .hero-contact-row { justify-content: center; }
  .hero-visual { max-width: 650px; width: 100%; margin-inline: auto; padding-left: 0; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .facts-grid article:last-child { border-bottom: 0; }
  .professional-grid, .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 230px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .nav-wrap { min-height: 72px; grid-template-columns: 1fr auto; gap: .65rem; }
  .brand { width: 148px; }
  .brand img { height: 50px; }
  .menu-toggle { order: initial; }
  .header-call { display: none; }
  .hero { padding-top: 70px; }
  .hero h1 { font-size: clamp(2.35rem, 13vw, 3.5rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-contact-row { flex-direction: column; gap: .3rem; }
  .image-frame { border-width: 4px; border-radius: 20px; }
  .growth-bars { width: 132px; height: 98px; left: 8px; bottom: -22px; padding: 13px; }
  .section-heading h2, .professional h2, .location h2, .cta h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 240px; }
  .professional-panel, .visual-chart { min-height: 430px; border-radius: 24px; }
  .chart-bars { left: 10%; right: 10%; }
  .location-art { min-height: 340px; }
  .building { transform: scale(.78); }
  .address-card { padding: 1rem; }
  .cta-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal.visible { opacity: 1; transform: none; animation: none; }
}
