:root {
  --bg: #05080d;
  --bg-soft: #0a0f17;
  --panel: rgba(14, 21, 31, .78);
  --panel-solid: #0d141e;
  --text: #f5f7fa;
  --muted: #aeb9c8;
  --silver: #d9e0e8;
  --line: rgba(190, 204, 219, .17);
  --blue: #1674d7;
  --blue-bright: #2694ff;
  --blue-deep: #0b3f83;
  --shadow: 0 28px 70px rgba(0, 0, 0, .34);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 10%, rgba(14, 91, 180, .16), transparent 33%),
    linear-gradient(180deg, #05080d 0%, #080d14 48%, #05080d 100%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(85px); opacity: .3; }
.orb-a { width: 400px; height: 400px; right: -120px; top: 20%; background: #0f6fd3; }
.orb-b { width: 320px; height: 320px; left: -150px; bottom: 10%; background: #124a89; }
.grid-glow {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 90%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 90%);
}

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.section-dark { background: linear-gradient(180deg, rgba(15,22,32,.72), rgba(6,10,16,.88)); border-block: 1px solid var(--line); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(4, 7, 11, .58);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(4, 7, 11, .92);
  border-color: var(--line);
  box-shadow: 0 15px 35px rgba(0,0,0,.2);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: 76px; height: 64px; flex: 0 0 auto; }
.brand img { width: 100%; max-height: 60px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,.35)); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; color: #d9e1ea; font-size: .91rem; font-weight: 650; letter-spacing: .02em; transition: color .25s ease; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); transition: right .25s ease; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.03); color: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 20px; height: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }

.hero { min-height: 100svh; padding-top: 150px; display: grid; align-items: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; border: 1px solid rgba(57,139,233,.12); border-radius: 50%; right: -260px; top: 5%; box-shadow: 0 0 0 70px rgba(31,115,211,.03), 0 0 0 140px rgba(31,115,211,.02); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: #85bfff; text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 800; }
.eyebrow::before { content: ""; width: 42px; height: 1px; background: linear-gradient(90deg, var(--blue-bright), transparent); }
.hero h1 { margin: 20px 0 22px; font-size: clamp(2.9rem, 6vw, 5.7rem); line-height: .98; letter-spacing: -.045em; }
.hero h1 span { display: block; color: #dce3ea; font-size: .34em; letter-spacing: .015em; margin-bottom: 18px; font-weight: 650; }
.hero h1 strong { display: block; font-weight: 850; background: linear-gradient(100deg, #fff 4%, #c9d3df 42%, #3da2ff 90%); -webkit-background-clip: text; color: transparent; }
.hero-lead { margin: 0; max-width: 640px; font-size: clamp(1.1rem, 2vw, 1.4rem); color: #eef3f8; font-weight: 600; }
.hero-note { max-width: 620px; margin: 10px 0 0; color: var(--muted); font-size: .98rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.btn { min-height: 50px; padding: 0 23px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-weight: 750; font-size: .94rem; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #0f62ba, #1b8aff); box-shadow: 0 12px 34px rgba(20,120,225,.25); }
.btn-primary:hover { box-shadow: 0 16px 38px rgba(20,120,225,.36); }
.btn-ghost { border: 1px solid rgba(210,224,239,.2); background: rgba(255,255,255,.035); }
.btn-ghost:hover { border-color: rgba(69,156,255,.52); background: rgba(27,119,218,.08); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hero-tags span { padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.025); color: #c7d0dc; font-size: .78rem; }
.hero-visual { display: grid; place-items: center; }
.logo-stage { position: relative; width: min(100%, 500px); aspect-ratio: 1; display: grid; place-items: center; }
.logo-stage::before { content: ""; position: absolute; inset: 13%; border-radius: 50%; background: radial-gradient(circle, rgba(24,117,216,.18), rgba(7,11,17,.03) 61%, transparent 72%); filter: blur(10px); }
.logo-stage img { position: relative; z-index: 2; width: 87%; filter: drop-shadow(0 28px 38px rgba(0,0,0,.62)) drop-shadow(0 0 18px rgba(30,118,216,.2)); animation: logoFloat 6s ease-in-out infinite; }
.stage-ring { position: absolute; border: 1px solid rgba(74,153,243,.18); border-radius: 50%; }
.ring-one { inset: 8%; animation: spin 24s linear infinite; border-left-color: rgba(74,153,243,.62); }
.ring-two { inset: 0; border-style: dashed; opacity: .42; animation: spinReverse 36s linear infinite; }
.scroll-cue { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); width: 32px; height: 50px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; display: grid; place-items: start center; padding-top: 9px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 999px; background: #6cadf2; animation: scrollHint 1.8s ease infinite; }

.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.section-heading h2 { margin: 15px 0 0; font-size: clamp(2.1rem, 4vw, 3.9rem); line-height: 1.06; letter-spacing: -.035em; }
.section-heading p { color: var(--muted); max-width: 680px; margin-top: 17px; }
.section-heading.centered { text-align: center; max-width: 800px; margin: 0 auto 48px; }
.section-heading.centered .eyebrow { justify-content: center; }
.statement-card { position: relative; overflow: hidden; padding: 36px; border: 1px solid rgba(152,182,213,.17); border-radius: var(--radius); background: linear-gradient(145deg, rgba(18,28,41,.94), rgba(7,12,19,.86)); box-shadow: var(--shadow); }
.statement-card::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 260px; height: 260px; border-radius: 50%; background: rgba(30,120,220,.13); filter: blur(55px); }
.statement-mark { font-size: clamp(3.4rem, 8vw, 6.5rem); font-weight: 900; line-height: .8; letter-spacing: -.07em; color: transparent; -webkit-text-stroke: 1px rgba(122,177,235,.16); position: absolute; top: 25px; right: 28px; }
.statement-name { position: relative; z-index: 1; margin: 0; font-size: 1.38rem; font-weight: 800; }
.statement-title { position: relative; z-index: 1; margin: 4px 0 0; color: #7fbbfb; font-weight: 700; }
.statement-line { width: 64px; height: 2px; margin: 23px 0; background: linear-gradient(90deg, var(--blue-bright), transparent); }
.statement-card > p:last-child { position: relative; z-index: 1; margin: 0; color: var(--muted); max-width: 580px; }

.cards-grid { display: grid; gap: 20px; }
.legal-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; min-height: 320px; padding: 29px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(160deg, rgba(18,27,39,.86), rgba(7,11,17,.92)); overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.service-card::before { content: ""; position: absolute; inset: auto -30% -45% 25%; height: 200px; background: radial-gradient(circle, rgba(25,116,218,.17), transparent 68%); transition: transform .35s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(64,145,235,.35); box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.service-card:hover::before { transform: translateY(-18px); }
.service-index { position: absolute; top: 22px; right: 23px; color: rgba(172,202,233,.35); font-size: .78rem; letter-spacing: .14em; font-weight: 800; }
.service-card h3 { margin: 25px 0 10px; font-size: 1.45rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.line-icon { width: 58px; height: 58px; border-radius: 18px; border: 1px solid rgba(85,157,235,.28); background: rgba(16,103,199,.08); position: relative; }
.line-icon::before, .line-icon::after, .line-icon span::before, .line-icon span::after { content: ""; position: absolute; }
.scales::before { width: 26px; height: 2px; background: #72b7ff; left: 16px; top: 20px; }
.scales::after { width: 2px; height: 25px; background: #72b7ff; left: 28px; top: 16px; }
.scales span::before { width: 18px; height: 9px; border: 2px solid #d7e7f7; border-top: 0; border-radius: 0 0 12px 12px; left: 8px; top: 26px; }
.scales span::after { width: 18px; height: 9px; border: 2px solid #d7e7f7; border-top: 0; border-radius: 0 0 12px 12px; right: 8px; top: 26px; }
.family::before { width: 10px; height: 10px; border: 2px solid #72b7ff; border-radius: 50%; left: 16px; top: 15px; box-shadow: 16px 2px 0 -2px #0d141e, 16px 2px 0 0 #d7e7f7; }
.family::after { width: 33px; height: 16px; border: 2px solid #72b7ff; border-bottom: 0; border-radius: 20px 20px 0 0; left: 12px; top: 33px; }
.shield::before { width: 25px; height: 31px; border: 2px solid #72b7ff; border-radius: 14px 14px 18px 18px; left: 15px; top: 12px; clip-path: polygon(0 0,100% 0,100% 70%,50% 100%,0 70%); }
.shield::after { width: 10px; height: 5px; border-left: 2px solid #d7e7f7; border-bottom: 2px solid #d7e7f7; transform: rotate(-45deg); left: 24px; top: 27px; }

.feature-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.feature-panel { min-height: 265px; display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 34px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(135deg, rgba(9,16,24,.95), rgba(19,31,45,.78)); overflow: hidden; }
.feature-panel.reverse { background: linear-gradient(135deg, rgba(17,32,48,.82), rgba(8,13,20,.96)); }
.feature-panel h3 { font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.15; margin: 8px 0 12px; }
.feature-panel p { color: var(--muted); margin: 0; max-width: 430px; }
.mini-label { color: #7dbaff; text-transform: uppercase; font-size: .72rem; letter-spacing: .16em; font-weight: 800; }
.property-symbol { position: relative; flex: 0 0 120px; height: 120px; opacity: .85; }
.property-symbol .roof { position: absolute; width: 78px; height: 78px; border-left: 4px solid #4b9df2; border-top: 4px solid #4b9df2; transform: rotate(45deg); left: 22px; top: 19px; }
.property-symbol .tower { position: absolute; width: 28px; height: 70px; border: 3px solid #d5e0ec; right: 7px; bottom: 5px; }
.property-symbol .door { position: absolute; width: 50px; height: 54px; border: 3px solid #d5e0ec; left: 18px; bottom: 5px; }
.doc-symbol { flex: 0 0 110px; height: 128px; border: 2px solid rgba(199,216,232,.65); border-radius: 8px; position: relative; transform: rotate(4deg); box-shadow: -13px 13px 0 rgba(22,113,213,.13); }
.doc-symbol span { position: absolute; left: 20px; right: 20px; height: 2px; background: #4f9de9; }
.doc-symbol span:nth-child(1) { top: 35px; }
.doc-symbol span:nth-child(2) { top: 58px; }
.doc-symbol span:nth-child(3) { top: 81px; right: 36px; }

.experience-box { margin-top: 20px; padding: 42px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; border-radius: var(--radius); border: 1px solid rgba(69,144,224,.25); background: linear-gradient(125deg, rgba(12,31,52,.95), rgba(5,10,16,.96)); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.experience-copy h2 { margin: 10px 0; font-size: clamp(2rem, 4vw, 3.3rem); }
.experience-copy p { margin: 0; color: var(--muted); }
.experience-items { display: grid; gap: 11px; }
.experience-items span { padding: 14px 17px; border-radius: 14px; background: rgba(255,255,255,.035); border: 1px solid var(--line); font-weight: 750; color: #e3ecf6; }
.experience-items span::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 10px; background: var(--blue-bright); box-shadow: 0 0 12px rgba(38,148,255,.7); }

.coverage-section { background: linear-gradient(180deg, #080d14, #0a111b); border-block: 1px solid var(--line); overflow: hidden; }
.coverage-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 65px; align-items: center; }
.coverage-copy h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 12px 0 22px; }
.coverage-primary { display: flex; flex-wrap: wrap; gap: 10px; }
.coverage-primary span { font-size: 1.07rem; font-weight: 800; border: 1px solid rgba(67,147,233,.32); background: rgba(18,106,202,.08); padding: 13px 17px; border-radius: 999px; }
.coverage-republic { margin-top: 27px; color: var(--muted); max-width: 560px; }
.coverage-republic strong { display: inline-block; color: #eaf2fa; margin-bottom: 5px; }
.coverage-art { min-height: 430px; position: relative; display: grid; place-items: center; }
.coverage-art::before { content: ""; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(62,143,230,.14); box-shadow: 0 0 0 60px rgba(47,128,218,.025), 0 0 0 120px rgba(47,128,218,.018); }
.map-shape { position: absolute; border: 1px solid rgba(142,190,239,.19); background: linear-gradient(145deg, rgba(32,124,218,.12), rgba(255,255,255,.015)); transform: rotate(-9deg); }
.map-one { width: 185px; height: 220px; clip-path: polygon(20% 0, 83% 5%, 100% 30%, 84% 58%, 70% 100%, 42% 85%, 8% 56%, 0 25%); }
.map-two { width: 104px; height: 82px; left: 17%; top: 17%; clip-path: polygon(15% 0,100% 22%,82% 100%,0 76%); }
.map-three { width: 90px; height: 110px; right: 14%; bottom: 15%; clip-path: polygon(30% 0,100% 18%,83% 90%,20% 100%,0 45%); }
.map-dot { position: absolute; width: 11px; height: 11px; background: #50a7ff; border-radius: 50%; box-shadow: 0 0 0 8px rgba(80,167,255,.1), 0 0 22px rgba(80,167,255,.75); }
.dot-one { left: 43%; top: 42%; }
.dot-two { left: 52%; top: 49%; }
.coverage-badge { position: absolute; right: 2%; top: 14%; padding: 14px 16px; border-radius: 15px; border: 1px solid var(--line); background: rgba(7,12,18,.82); backdrop-filter: blur(10px); box-shadow: 0 14px 35px rgba(0,0,0,.3); }
.coverage-badge span { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; }
.coverage-badge strong { display: block; margin-top: 3px; font-size: .92rem; }

.video-section { overflow: hidden; }
.video-frame { position: relative; width: min(820px, 100%); margin: 0 auto; padding: 10px; border-radius: 28px; background: linear-gradient(135deg, rgba(198,216,234,.45), rgba(42,139,237,.55), rgba(173,192,211,.2)); box-shadow: 0 35px 90px rgba(0,0,0,.52); }
.video-frame::before { content: ""; position: absolute; inset: -22px; z-index: -1; border-radius: 40px; background: linear-gradient(135deg, rgba(35,128,229,.2), rgba(159,183,209,.08)); filter: blur(26px); opacity: .65; }
.video-glow { position: absolute; inset: 8%; z-index: -1; background: #0d70d2; filter: blur(70px); opacity: .18; }
.video-frame video { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 20px; background: #000; box-shadow: inset 0 0 30px rgba(0,0,0,.4); }

.hours-section { background: linear-gradient(180deg, rgba(7,11,17,.72), rgba(11,18,27,.96)); border-top: 1px solid var(--line); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.hours-card, .emergency-card { min-height: 310px; border-radius: var(--radius); padding: 38px; position: relative; overflow: hidden; }
.hours-card { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(18,27,39,.9), rgba(6,10,16,.95)); }
.hours-card h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 15px 0 24px; }
.time-display { margin: 0; font-size: clamp(1.8rem, 4vw, 3.4rem); font-weight: 850; letter-spacing: -.035em; color: #dce8f4; }
.time-display span { font-size: .42em; color: #5aa8f6; font-weight: 700; }
.emergency-card { border: 1px solid rgba(56,143,238,.34); background: radial-gradient(circle at 85% 20%, rgba(29,121,221,.22), transparent 36%), linear-gradient(145deg, #0a1929, #08111c); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.emergency-card h2 { margin: 14px 0 0; font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1; }
.emergency-card p { color: #c3d0dd; margin: 8px 0 28px; font-size: 1.1rem; }
.emergency-card strong { display: inline-flex; padding: 10px 15px; border-radius: 999px; background: rgba(32,135,243,.13); border: 1px solid rgba(62,155,255,.37); color: #bdddff; letter-spacing: .12em; font-size: .8rem; }
.emergency-pulse { position: absolute; top: 35px; right: 35px; width: 12px; height: 12px; border-radius: 50%; background: #4ba4ff; box-shadow: 0 0 0 0 rgba(75,164,255,.6); animation: pulse 2s infinite; }

.site-footer { padding: 45px 0 38px; background: #030609; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 130px 1fr 1.15fr; gap: 32px; align-items: center; }
.footer-brand img { width: 115px; }
.footer-copy, .footer-info { display: grid; gap: 4px; color: var(--muted); font-size: .87rem; }
.footer-copy strong { color: #f5f7fa; font-size: 1rem; }
.footer-info strong { color: #8ec4ff; margin-top: 4px; }

.back-top { position: fixed; right: 23px; bottom: 23px; z-index: 30; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(90,157,229,.3); background: rgba(8,17,27,.88); color: #dceafa; cursor: pointer; box-shadow: 0 12px 30px rgba(0,0,0,.28); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .25s ease; }
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: #0e5da8; }

/* Contenido visible por defecto: evita una página en blanco si JavaScript no carga. */
.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js-ready .reveal { opacity: 0; transform: translateY(28px); }
.js-ready .reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: .11s; }
.delay-2 { transition-delay: .2s; }

@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes scrollHint { 0%,100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(15px); opacity: 1; } }
@keyframes pulse { 70% { box-shadow: 0 0 0 14px rgba(75,164,255,0); } 100% { box-shadow: 0 0 0 0 rgba(75,164,255,0); } }

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .hero { min-height: auto; padding: 135px 0 100px; }
  .hero-grid, .split-layout, .coverage-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 35px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-tags { justify-content: center; }
  .hero-lead, .hero-note { margin-inline: auto; }
  .hero-visual { order: -1; }
  .logo-stage { width: min(75vw, 420px); }
  .legal-grid { grid-template-columns: 1fr 1fr; }
  .legal-grid .service-card:last-child { grid-column: 1 / -1; }
  .feature-stack { grid-template-columns: 1fr; }
  .coverage-grid { gap: 20px; }
  .coverage-art { min-height: 390px; }
}

@media (max-width: 820px) {
  .nav-wrap { height: 76px; }
  .brand { width: 68px; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(7,12,18,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(.98);
    transition: .25s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 14px 13px; border-radius: 12px; }
  .main-nav a::after { display: none; }
  .main-nav a:hover, .main-nav a.active { background: rgba(27,117,216,.11); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .experience-box, .hours-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { text-align: center; justify-items: center; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .hero { padding: 118px 0 86px; }
  .hero h1 { font-size: clamp(2.6rem, 14vw, 4.4rem); }
  .hero h1 span { font-size: .31em; }
  .logo-stage { width: min(84vw, 360px); }
  .hero-actions .btn { width: 100%; }
  .hero-tags { gap: 7px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-grid .service-card:last-child { grid-column: auto; }
  .service-card { min-height: 275px; }
  .feature-panel { align-items: flex-start; min-height: auto; padding: 28px; }
  .property-symbol, .doc-symbol { transform: scale(.72); transform-origin: top right; margin-right: -13px; }
  .doc-symbol { transform: rotate(4deg) scale(.72); }
  .experience-box { padding: 29px; }
  .coverage-art { min-height: 330px; transform: scale(.88); }
  .coverage-badge { right: 0; }
  .video-frame { padding: 6px; border-radius: 21px; }
  .video-frame video { border-radius: 16px; }
  .hours-card, .emergency-card { min-height: 270px; padding: 29px; }
  .scroll-cue { display: none; }
}

@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 { opacity: 1; transform: none; }
}
