/* Optimized static CSS with Tailwind-inspired utilities and custom components. */
:root {
  --navy: #061326;
  --navy-2: #0a1b35;
  --navy-3: #102a4e;
  --orange: #ff8a1f;
  --orange-2: #ffb15f;
  --cyan: #21d8ff;
  --white: #ffffff;
  --muted: #b7c7db;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(33, 216, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(255, 138, 31, 0.18), transparent 24rem),
    linear-gradient(180deg, #061326 0%, #08172d 42%, #061326 100%);
  line-height: 1.6;
}

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

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.section { padding: 82px 0; }
.section-tight { padding: 58px 0; }
.alt { background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); }
.grid { display: grid; gap: 22px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 19, 38, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; letter-spacing: 0; }
.brand span { font-size: clamp(1rem, 2.5vw, 1.2rem); }
.nav-links { display: flex; align-items: center; gap: 24px; color: #d9e8f7; font-weight: 650; }
.nav-links a:not(.btn) { position: relative; font-size: .95rem; }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange-2); }
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  color: var(--white);
  place-items: center;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--white); display: block; margin: 4px auto; }


.top-hero-slider { position: relative; width: min(calc(100% - 8px), 1360px); margin: 6px auto 0; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: radial-gradient(circle at 50% 0%, rgba(33,216,255,.1), transparent 38%), #061326; box-shadow: 0 18px 48px rgba(0,0,0,.3); }
.top-hero-track { position: relative; height: clamp(190px, 36vw, 486px); max-height: calc(100vh - 112px); }
.top-hero-slide { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transform: translateX(18px) scale(.985); transition: opacity .9s ease, transform 1.05s ease; will-change: opacity, transform; }
.top-hero-slide.active { opacity: 1; transform: translateX(0) scale(1); z-index: 1; }
.top-hero-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: saturate(1.05) contrast(1.02); }
.top-hero-slider::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(6,19,38,.08), transparent 16%, transparent 84%, rgba(6,19,38,.1)); pointer-events: none; }
.top-hero-slider::after { content: ""; position: absolute; inset: auto 0 0; z-index: 2; height: 20%; background: linear-gradient(180deg, transparent, rgba(6,19,38,.38)); pointer-events: none; }
.top-hero-dots { position: absolute; left: 50%; bottom: 18px; z-index: 3; display: flex; gap: 10px; transform: translateX(-50%); }
.top-hero-dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.55); cursor: pointer; transition: width .2s ease, background .2s ease; }
.top-hero-dots button.active { width: 30px; background: var(--cyan); }

.hero { position: relative; overflow: hidden; min-height: calc(100vh - 76px); display: flex; align-items: center; }
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
  animation: gridMove 18s linear infinite;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -26% -20%;
  height: 45%;
  background: radial-gradient(ellipse, rgba(255, 138, 31, .26), transparent 62%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 42px; }
.hero-copy h1 { margin: 14px 0 18px; max-width: 720px; font-size: clamp(2.65rem, 8vw, 5.85rem); line-height: .98; letter-spacing: 0; }
.hero-copy p { max-width: 620px; margin: 0 0 28px; color: #d7e6f7; font-size: clamp(1.05rem, 2vw, 1.32rem); }
.hero-visual { position: relative; filter: drop-shadow(0 38px 80px rgba(0,0,0,.42)); }
.hero-invest-visual { min-height: clamp(300px, 42vw, 560px); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: radial-gradient(circle at 50% 45%, rgba(33,216,255,.18), transparent 34%), linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); overflow: hidden; backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.hero-invest-image { position: relative; z-index: 3; width: clamp(180px, 24vw, 280px); height: auto; display: block; object-fit: contain; filter: drop-shadow(0 22px 42px rgba(33,216,255,.36)); animation: floatInvest 4.6s ease-in-out infinite; }
.hero-glow-object { position: absolute; z-index: 2; width: 18px; height: 18px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 22px rgba(33,216,255,.86), 0 0 44px rgba(255,138,31,.28); opacity: .82; animation: driftGlow 4.8s ease-in-out infinite; }
.glow-one { left: 16%; top: 28%; }
.glow-two { right: 18%; bottom: 22%; width: 14px; height: 14px; animation-delay: .7s; background: var(--orange); }
.glow-three { left: 46%; bottom: 12%; width: 12px; height: 12px; animation-delay: 1.2s; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-2);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--cyan); border-radius: 99px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--orange), #ffb15f); color: #111827; box-shadow: 0 16px 36px rgba(255, 138, 31, .27); }
.btn-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: var(--white); backdrop-filter: blur(12px); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: .9rem; }
.full { width: 100%; }
.center { justify-content: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin-top: 34px;
}
.hero-stats div { padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--glass); backdrop-filter: blur(16px); }
.hero-stats strong { display: block; font-size: 1.25rem; color: var(--white); }
.hero-stats span { color: var(--muted); font-size: .88rem; }

.poster-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(33,216,255,.035));
}
.poster-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 430px);
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
}
.poster-section .section-heading { margin-bottom: 0; }
.poster-section .btn { margin-top: 22px; }
.poster-frame {
  margin: 0;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
  overflow: hidden;
}
.poster-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 939 / 1675;
  object-fit: cover;
}

.section-heading { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.section-heading h2 { margin: 12px 0 0; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.08; letter-spacing: 0; }
.section-heading p { color: var(--muted); margin: 16px 0 0; }
.align-left { text-align: left; margin-inline: 0; }

.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.glass-card,
.price-card,
.mini-card,
.review-card,
.cta-box,
.coverage-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.glass-card { padding: 26px; min-height: 238px; transition: transform .25s ease, border-color .25s ease; }
.glass-card:hover, .price-card:hover, .mini-card:hover, .review-card:hover { transform: translateY(-6px); border-color: rgba(255, 138, 31, .45); }
.icon img { width: 30px; height: 30px; object-fit: contain; }
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255,138,31,.14);
  color: var(--orange-2);
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 { margin: 0 0 10px; font-size: 1.22rem; }
p { color: var(--muted); }

.plans-carousel { position: relative; padding: 8px 54px 42px; }
.pricing-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; align-items: stretch; scroll-behavior: smooth; }
.price-card { position: relative; overflow: visible; transition: transform .25s ease, border-color .25s ease; }
.plan-slide { min-width: 0; padding: 0 12px 18px; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.plan-slide:hover { transform: translateY(-6px); }
.speed-badge { width: min(82%, 230px); min-height: 100px; margin: 0 auto -28px; padding: 16px 16px 34px; display: grid; place-items: center; border-radius: 20px 20px 8px 8px; background: linear-gradient(160deg, #1f56b2, #0e3676); box-shadow: 0 18px 36px rgba(33,216,255,.16); color: var(--white); text-align: center; }
.speed-badge span { color: #bfefff; font-weight: 850; font-size: .92rem; }
.speed-badge strong { color: var(--cyan); font-size: clamp(1.55rem, 3vw, 2rem); line-height: 1; }
.plan-shell { position: relative; z-index: 1; padding: 0 22px 24px; border: 1px solid rgba(33,216,255,.34); border-radius: 22px 22px var(--radius) var(--radius); background: linear-gradient(180deg, rgba(10,58,121,.96), rgba(8,24,48,.96)); box-shadow: 0 24px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.15); overflow: hidden; }
.plan-shell::before { content: ""; position: absolute; inset: 0 0 auto; height: 124px; background: linear-gradient(135deg, #1f9cff, #21d8ff); clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 0 76%); z-index: -1; }
.plan-top { min-height: 124px; display: grid; place-items: center; align-content: center; gap: 10px; color: #061326; text-align: center; }
.wifi-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 999px; background: var(--white); color: var(--navy-3); font-size: 1.55rem; font-weight: 950; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.wifi-mark img { width: 24px; height: 24px; object-fit: contain; }
.plan-top h3 { margin: 0; color: var(--white); font-size: clamp(1.55rem, 4vw, 2rem); line-height: 1; }
.plan-rows { padding: 18px 2px 20px; }
.plan-rows div { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 58px; border-bottom: 1px dashed rgba(191,239,255,.28); color: #e8f5ff; font-weight: 850; }
.plan-rows div:last-child { border-bottom: 0; }
.plan-rows strong { color: var(--white); font-size: 1.18rem; white-space: nowrap; }
.plan-shell .btn { min-height: 48px; border-radius: 999px; background: linear-gradient(135deg, var(--cyan), #6be8ff); color: #061326; box-shadow: 0 16px 34px rgba(33,216,255,.25); }
.terms { margin: 14px 0 0; color: #d8e9f8; text-align: center; font-weight: 800; }
.badge { position: absolute; top: 22px; right: 8px; z-index: 3; padding: 6px 11px; border-radius: 999px; background: var(--orange); color: #111827; font-size: .75rem; font-weight: 850; }
.plans-arrow { position: absolute; top: 50%; z-index: 5; width: 42px; height: 42px; display: none; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.1); color: var(--white); font-size: 2rem; line-height: 1; cursor: pointer; transform: translateY(-50%); backdrop-filter: blur(14px); transition: background .2s ease, transform .2s ease; }
.plans-arrow:hover { background: rgba(33,216,255,.2); transform: translateY(-50%) scale(1.04); }
.plans-arrow.prev { left: 0; }
.plans-arrow.next { right: 0; }
.plans-dots { position: absolute; left: 50%; bottom: 0; display: none; gap: 9px; transform: translateX(-50%); }
.plans-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.34); cursor: pointer; transition: width .2s ease, background .2s ease; }
.plans-dots button.active { width: 28px; background: var(--cyan); }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: center; }
.choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mini-card { padding: 24px; }
.mini-card span { color: var(--orange); font-weight: 900; }

.coverage-panel { position: relative; min-height: 380px; overflow: hidden; display: grid; align-items: center; }
.coverage-panel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .74; animation: mapPulse 8s ease-in-out infinite; }
.coverage-content { position: relative; z-index: 1; max-width: 570px; padding: 46px; }
.coverage-content h2, .cta-box h2 { margin: 12px 0; font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.04; }

.testimonials { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review-card { padding: 28px; }
.review-card p { color: #e8f5ff; font-size: 1rem; }
.review-card strong { display: block; margin-top: 22px; }
.review-card span { color: var(--orange-2); font-size: .9rem; }

.faq-wrap { max-width: 860px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.06); }
.faq-item button {
  width: 100%;
  min-height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}
.faq-item button span { color: var(--orange); font-size: 1.55rem; }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-panel p { margin: 0; padding: 0 20px 20px; }
.faq-item.active .faq-panel { max-height: 160px; }

.final-cta { background: radial-gradient(circle at 50% 0%, rgba(255,138,31,.22), transparent 35rem); }
.cta-box { padding: clamp(32px, 7vw, 70px); text-align: center; }
.cta-box p { max-width: 620px; margin: 0 auto 24px; }

.footer { padding: 58px 0 22px; border-top: 1px solid var(--line); background: #050f1f; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .7fr .7fr; gap: 28px; align-items: start; }
.footer h3 { font-size: 1rem; color: var(--white); }
.footer p, .footer a { color: var(--muted); }
.footer a:hover { color: var(--orange-2); }
.footer-grid > div:nth-child(3) a { display: block; margin: 8px 0; }
.footer-brand { margin-bottom: 14px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  font-weight: 900;
}
.footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); color: #7f91a8; font-size: .9rem; text-align: center; }

.float-btn {
  position: fixed;
  right: 18px;
  z-index: 60;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #061326;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0,0,0,.32);
}
.whatsapp { bottom: 84px; background: #25d366; }
.call { bottom: 22px; background: #25d366; }

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

@keyframes gridMove { from { background-position: 0 0; } to { background-position: 74px 74px; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatInvest { 0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg) scale(1); } 50% { transform: translate3d(0, -14px, 0) rotate(2deg) scale(1.04); } }
@keyframes driftGlow { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .65; } 50% { transform: translate3d(10px, -12px, 0) scale(1.18); opacity: 1; } }
@keyframes mapPulse { 0%,100% { transform: scale(1); opacity: .72; } 50% { transform: scale(1.025); opacity: .9; } }

@media (max-width: 980px) {
  .section { padding: 64px 0; }
  .top-hero-slider { width: min(calc(100% - 2px), 980px); margin-top: 2px; border-radius: 1px; }
  .top-hero-track { height: clamp(178px, 44vw, 390px); }
  .hero { min-height: auto; padding-top: 38px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { max-width: 720px; margin-inline: auto; }
  .poster-grid { grid-template-columns: 1fr; }
  .poster-frame { justify-self: center; max-width: 390px; }
  .cards-4, .testimonials, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plans-carousel { padding-inline: 46px; }
  .plans-arrow { display: grid; }
  .plans-dots { display: flex; }
  .pricing-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 0 12px; }
  .pricing-track::-webkit-scrollbar { display: none; }
  .plan-slide { flex: 0 0 min(360px, calc(100% - 14px)); scroll-snap-align: center; }
  .footer-grid > div:nth-child(4) { text-align: center; }
  .footer-grid > div:nth-child(4) .socials { justify-content: center; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav { min-height: 68px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(6, 19, 38, .96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: .24s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 10px; }
  .top-hero-slider { width: calc(100% - 6px); border-radius: 1px; }
  .top-hero-track { height: clamp(172px, 54vw, 260px); }
  .top-hero-slide img { object-position: center; }
  .top-hero-dots { bottom: 10px; }
  .hero-invest-visual { min-height: 320px; border-radius: 16px; }
  .hero-invest-image { width: min(230px, 72vw); min-width: 190px; }
  .hero-glow-object { opacity: .72; }
  .hero-copy h1 { font-size: clamp(2.35rem, 13vw, 4.2rem); }
  .hero-stats, .cards-4, .choice-grid, .testimonials, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats div { padding: 14px; }
  .poster-section .section-heading { text-align: center; }
  .poster-section .section-heading .eyebrow { justify-content: center; }
  .poster-frame { max-width: min(100%, 340px); }
  .plans-carousel { padding: 4px 34px 40px; }
  .plan-slide { flex-basis: min(318px, calc(100% - 18px)); padding-inline: 6px; }
  .plans-arrow { width: 36px; height: 36px; font-size: 1.7rem; }
  .plan-shell { padding-inline: 18px; }
  .speed-badge { width: min(84%, 220px); }
  .coverage-content { padding: 30px 22px; }
  .footer { padding-bottom: 88px; }
  .footer-grid { text-align: center; gap: 24px; }
  .footer-brand, .socials { justify-content: center; }
  .footer-grid > div:nth-child(3) a { margin: 10px 0; }
}

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


.page-hero { position: relative; overflow: hidden; background: radial-gradient(circle at 82% 20%, rgba(33,216,255,.18), transparent 26rem), linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 34px; align-items: center; }
.page-hero h1 { margin: 12px 0 16px; font-size: clamp(2.35rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: 0; }
.page-hero-card, .contact-card { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045)); box-shadow: var(--shadow); backdrop-filter: blur(18px); padding: clamp(26px, 5vw, 42px); }
.page-hero-card strong { display: block; color: var(--cyan); font-size: clamp(3rem, 7vw, 5rem); line-height: 1; }
.page-hero-card span { display: block; margin: 10px 0 14px; color: var(--white); font-weight: 850; }
.contact-card a { color: var(--cyan); font-weight: 800; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 980px) { .page-hero-grid, .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .page-hero { text-align: center; } .page-hero .align-left { text-align: center; } .page-hero .eyebrow { justify-content: center; } .page-hero .hero-actions { justify-content: center; } }
