:root {
  color-scheme: light;
  --white: #ffffff;
  --bg: #eef4fb;
  --bg-2: #e8f0fb;
  --card: #ffffff;
  --card-2: #f6fafd;
  --line: #e2e8f0;
  --line-2: #c9d6e4;
  --text: #0b2540;
  --muted: #5c7189;
  --soft: #23344d;
  --accent: #1a73e8;
  --accent-2: #38b6ff;
  --deep-blue: #071c38;
  --brand-blue: #0d4fc4;
  --ice-blue: #eef4fb;
  --grad-blue: linear-gradient(135deg, #2b8fff 0%, #0d4fc4 100%);
  --grad-dark: linear-gradient(160deg, #071c38 0%, #0b2540 50%, #0d2f52 100%);
  --radius: 24px;
  --shadow: 0 24px 60px -28px rgba(11, 37, 64, .22);
  --neu-shadow: 12px 12px 30px rgba(11, 37, 64, .09), -12px -12px 30px rgba(255, 255, 255, .78);
  --neu-shadow-hover: 16px 16px 38px rgba(11, 37, 64, .12), -10px -10px 28px rgba(255, 255, 255, .86);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -18rem, rgba(56, 182, 255, .24), transparent 42rem),
    radial-gradient(circle at 90% 12rem, rgba(26, 115, 232, .12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 34rem, #ffffff 100%);
  color: var(--text);
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { color: var(--muted); line-height: 1.72; margin: 0; }
h1, h2, h3 { margin: 0; letter-spacing: -.035em; font-family: "Space Grotesk", Inter, sans-serif; color: var(--text); }
h1 { font-size: clamp(4rem, 10vw, 8.8rem); line-height: .83; font-weight: 850; }
h2 { font-size: clamp(2.1rem, 5vw, 4.7rem); line-height: .93; font-weight: 820; }
h3 { font-size: 1.25rem; line-height: 1.08; }

.navbar { position: sticky; top: 0; z-index: 50; }
.navbar-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex: 1; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-right: 6px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
body.nav-open .menu-toggle .icon-hamburger { display: none; }
body.nav-open .menu-toggle .icon-close { display: block; }
.nav-mobile-extra { display: none; }
.nav-promo { display: none; }
.scroll-progress { display: none; }
.brand { display: flex; align-items: center; gap: 9px; min-width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--grad-blue);
  color: var(--white);
  font-size: 16px;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand span:last-child { display: grid; gap: 1px; }
.brand strong { font-size: 14px; letter-spacing: -.02em; line-height: 1; }
.brand small { color: var(--muted); font-size: 11px; line-height: 1; }
.nav { display: flex; align-items: center; }
.navbar-actions { display: flex; gap: 7px; }
.button, .btn, .quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--grad-blue);
  color: var(--white);
  font-weight: 760;
  font-size: 13px;
}
.button.secondary, .btn.secondary { background: var(--white); color: var(--text); border-color: var(--line-2); }
.btn.primary { background: var(--grad-blue); color: var(--white); }

.wrap, .section-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section-shell { padding: 96px 0; }
.section-shell { content-visibility: auto; contain-intrinsic-size: 1px 760px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before, .section-kicker::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 22px var(--accent); }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.coverage-list span, .plan span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--text);
  font-size: 13px;
  background: var(--white);
}
.card, .plan, blockquote, details, .quote-form, .mock-dashboard, .map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.panel-top, .map-bar, .dash-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px 14px; color: var(--muted); font-size: 13px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 18px rgba(56,182,255,.75); margin-right: auto; }
.panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 8px; }
.panel-grid div { border: 1px solid var(--line); border-radius: 16px; padding: 14px; background: var(--bg); }
.panel-grid strong { display: block; font-size: 24px; letter-spacing: -.04em; }
.panel-grid span { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }
.intro { max-width: 920px; padding-top: 108px; }
.intro p, .section-lede { max-width: 760px; font-size: 17px; color: var(--soft); }
.plan-grid { display: grid; gap: 14px; }
.catalog { padding-top: 80px; }
.catalog-parts { display: grid; gap: 16px; margin-top: 28px; }
.catalog-part {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  scroll-margin-top: 110px;
}
.catalog-part:nth-child(even) { grid-template-columns: 1.15fr .85fr; }
.catalog-part:nth-child(even) .catalog-media { order: 2; }
.catalog-media { min-height: 360px; background: var(--bg-2); }
.catalog-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.08) contrast(1.06); }
.catalog-copy { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.catalog-copy .num { color: var(--accent); font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 28px; }
.catalog-copy h3 { font-size: clamp(1.8rem, 3vw, 3rem); margin-bottom: 14px; }
.catalog-copy ul { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; color: var(--soft); }
.catalog-copy li { display: flex; gap: 10px; align-items: center; }
.catalog-copy li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); flex: 0 0 auto; }
.catalog-copy a { margin-top: 28px; color: var(--accent); font-weight: 850; }
.card, .plan, blockquote { padding: 24px; min-height: 245px; }
.card, .plan, .value-card, .info-card, .include-card, .video-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
@media (hover: hover) and (pointer: fine) {
  .card:hover, .plan:hover, .value-card:hover, .info-card:hover, .include-card:hover, .video-card:hover { transform: translateY(-3px); box-shadow: var(--neu-shadow-hover); border-color: rgba(26, 115, 232, .28); }
}
.large-card { background: linear-gradient(135deg, #ffffff 0%, #e8f0fb 100%); }
.card-number, .problem-list span { display: block; color: var(--accent); font-size: 13px; font-weight: 800; margin-bottom: 64px; }
.card h3, .plan h3 { margin-bottom: 12px; }
.card > span, .plan a, .text-link { display: inline-block; margin-top: 22px; color: var(--accent); font-weight: 800; }
.split, .dashboard, .contact, .map-section { display: grid; grid-template-columns: .88fr 1.12fr; gap: 36px; align-items: start; }
.problem-list { display: grid; gap: 1px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--line); }
.problem-list article { padding: 22px; background: var(--white); }
.problem-list span { margin-bottom: 26px; }
.solution { width: 100%; max-width: none; padding-left: max(16px, calc((100vw - 1180px) / 2)); padding-right: max(16px, calc((100vw - 1180px) / 2)); background: var(--bg-2); border-block: 1px solid var(--line); }
.mock-dashboard { padding: 12px; }
.dash-header strong, .dash-row b { color: var(--accent-2); }
.dash-row { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding: 16px 12px; color: var(--muted); }
.dash-meter { height: 10px; margin: 12px; border-radius: 999px; background: var(--bg-2); overflow: hidden; }
.dash-meter span { display: block; width: 86%; height: 100%; background: var(--grad-blue); }
.plan-grid { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
.plan { position: relative; display: flex; flex-direction: column; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f6fafd 100%); }
.plan { box-shadow: var(--neu-shadow); border-color: rgba(255,255,255,.78); }
.plan::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--grad-blue); opacity: .55; }
.plan.featured { border-color: rgba(157,232,255,.42); background: linear-gradient(145deg, #ffffff 0%, #eef7ff 100%); }
.plan h3 { margin-top: 14px; }
.plan p { font-size: 15px; }
.plan a { margin-top: auto; padding-top: 22px; }
.reviews { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; }
blockquote { min-height: 220px; color: var(--soft); line-height: 1.65; margin: 0; }
cite { display: block; margin-top: 20px; color: var(--accent); font-style: normal; font-weight: 800; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--neu-shadow);
  border-color: rgba(255,255,255,.78);
  scroll-margin-top: 110px;
  position: relative;
  overflow: hidden;
}
.value-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-blue); opacity: .68; }
.value-num {
  display: inline-flex;
  align-self: flex-start;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.value-card h3 { font-size: 1.45rem; margin: 18px 0 12px; }
.value-card p { font-size: 15px; }
.value-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.value-list li { display: flex; gap: 10px; align-items: center; color: var(--text); font-weight: 600; font-size: 14px; }
.value-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); flex: 0 0 auto; }
.value-foot { margin-top: auto; padding-top: 20px; }
.value-foot .text-link { margin-top: 0; }
.projects { padding-top: 36px; }
.videos-section { border-top: 1px solid var(--line); }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.video-card { background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); border: 1px solid rgba(255,255,255,.78); border-radius: var(--radius); overflow: hidden; box-shadow: var(--neu-shadow); }
.video-card video { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: var(--deep-blue); }
.video-card h3 { padding: 16px 16px 6px; font-size: 18px; }
.video-card p { padding: 0 16px 18px; font-size: 13.5px; color: var(--muted); }
.map-copy { padding-top: 18px; }
.coverage-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.map-card { padding: 10px; overflow: hidden; box-shadow: var(--neu-shadow); border-color: rgba(255,255,255,.78); }
.map-bar strong { color: var(--text); }
.map-card iframe { width: 100%; height: 430px; border: 0; border-radius: 18px; filter: saturate(.85) contrast(1.02); }
.faq { max-width: 940px; }
details { padding: 18px 20px; margin-top: 10px; box-shadow: none; }
summary { cursor: pointer; font-weight: 800; }
details p { margin-top: 12px; }
.contact { align-items: stretch; }
.contact-links { display: grid; gap: 10px; margin-top: 22px; color: var(--accent); font-weight: 760; }
.quote-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(145deg, #f8fbff 0%, #eef4fb 100%);
  border-color: rgba(255,255,255,.78);
  box-shadow: var(--neu-shadow);
}
label { display: grid; gap: 7px; color: var(--muted); font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.quote-form button { border: 0; cursor: pointer; box-shadow: 0 18px 36px -24px rgba(13, 79, 196, .9); }
.footer { border-top: 1px solid rgba(255,255,255,.1); background: var(--deep-blue); color: rgba(255,255,255,.68); padding-top: 72px; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 34px; }
.footer-brand { display: grid; gap: 16px; align-content: start; }
.footer-brand .brand { margin: 0; }
.footer-brand p, .footer-col p { color: rgba(255,255,255,.58); font-size: 13.5px; line-height: 1.65; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: var(--white); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; stroke: currentColor; }
.footer-col h3 { display: flex; align-items: center; gap: 8px; }
.footer-col h3 svg { width: 16px; height: 16px; color: var(--accent-2); fill: none; stroke: currentColor; }
.footer-col h3 { color: var(--white); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; list-style: none; margin: 0; padding: 0; }
.footer-col a { color: rgba(255,255,255,.58); font-size: 13.5px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 56px; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,.42); font-size: 12.5px; }
.footer-legal { display: flex; gap: 8px 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.42); font-size: 12.5px; }
.footer-legal a:hover { color: var(--white); }

.page-hero {
  padding: 150px 0 70px;
  background: var(--grad-dark);
  color: var(--white);
}
.page-hero--image {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4,14,28,.94), rgba(6,20,40,.78) 46%, rgba(6,20,40,.36));
}
.page-hero--image .wrap { position: relative; z-index: 1; }
.page-hero h1, .page-hero p { color: var(--white); }
.page-hero p { max-width: 680px; color: #c4d3e6; font-size: 17px; margin-top: 16px; }
.page-crumb { color: #c4d3e6; font-size: 13px; margin-bottom: 14px; }
.page-crumb a { color: var(--white); }
.content-section { padding: 82px 0; }
.content-section.alt { background: var(--bg-2); }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.content-grid.two { grid-template-columns: repeat(2, 1fr); }
.product-line { display: grid; grid-template-columns: 1fr .9fr; gap: 46px; align-items: center; }
.product-showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.product-showcase-grid article { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; box-shadow: var(--shadow); }
.product-showcase-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--bg-2); }
.product-showcase-grid h3 { padding: 18px 18px 8px; font-size: 19px; }
.product-showcase-grid p { padding: 0 18px 20px; color: var(--muted); font-size: 13.5px; }
.product-line.reverse .product-copy { order: 2; }
.product-line.reverse .product-image { order: 1; }
.product-copy { min-width: 0; }
.product-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--neu-shadow); border: 1px solid rgba(255,255,255,.78); background: var(--bg-2); }
.product-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.include-card { margin-top: 24px; padding: 24px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.78); background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); box-shadow: var(--neu-shadow); position: relative; overflow: hidden; }
.include-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-blue); opacity: .68; }
.include-card strong { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); margin-bottom: 16px; }
.include-card strong::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 18px rgba(26, 115, 232, .5); }
.include-card ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; color: var(--muted); }
.include-card li { display: flex; gap: 10px; }
.include-card li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-top: .65em; flex: 0 0 auto; }
.compare-table { display: grid; margin: 28px 0 24px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.compare-row { display: grid; grid-template-columns: .85fr repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row span { padding: 16px; color: var(--muted); border-right: 1px solid var(--line); line-height: 1.5; }
.compare-row span:last-child { border-right: 0; }
.compare-row span:first-child { color: var(--text); font-weight: 800; background: var(--bg); }
.compare-row.head span { background: var(--deep-blue); color: var(--white); font-weight: 800; }
.catalog-cta { background: var(--grad-dark); color: var(--white); padding: 76px 0; }
.catalog-cta h2 { color: var(--white); }
.catalog-cta p { color: #c4d3e6; max-width: 680px; }
.catalog-cta .actions { margin-top: 24px; }
.catalog-cta .secondary { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.25); }
.cta-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; color: #c4d3e6; }
.cta-stats span { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 9px 13px; background: rgba(255,255,255,.08); }
.info-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--neu-shadow);
  border-color: rgba(255,255,255,.78);
  position: relative;
  overflow: hidden;
}
.info-card::before { content: ""; display: block; width: 42px; height: 4px; border-radius: 999px; background: var(--grad-blue); margin-bottom: 18px; }
.info-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.info-card ul { display: grid; gap: 12px; padding: 0; margin: 18px 0 0; list-style: none; color: var(--muted); }
.info-card li strong { color: var(--text); display: block; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 28px; }
.step { counter-increment: step; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.step::before { content: counter(step, decimal-leading-zero); color: var(--accent); font-weight: 800; font-size: 13px; }
.step h3 { margin: 18px 0 8px; font-size: 18px; }
.quote { background: var(--white); border-left: 4px solid var(--accent); border-radius: 16px; padding: 22px; color: var(--soft); box-shadow: var(--shadow); }
.legal-doc { max-width: 900px; }
.legal-doc h2 { font-size: 32px; margin: 34px 0 12px; }
.legal-doc p, .legal-doc li { color: var(--muted); line-height: 1.8; }
.legal-doc ul { padding-left: 22px; }
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: stretch; }
.contact-form-wrap { min-width: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; background: linear-gradient(145deg, #f8fbff 0%, #eef4fb 100%); border: 1px solid rgba(255,255,255,.78); border-radius: var(--radius); box-shadow: var(--neu-shadow); padding: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(201, 214, 228, .88);
  background: rgba(255, 255, 255, .82);
  box-shadow: inset 3px 3px 8px rgba(11, 37, 64, .045), inset -3px -3px 8px rgba(255, 255, 255, .82);
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(26,115,232,.56); background: var(--white); box-shadow: inset 2px 2px 7px rgba(11, 37, 64, .035), inset -2px -2px 7px rgba(255, 255, 255, .9), 0 0 0 3px rgba(26,115,232,.12); }
.field textarea { resize: vertical; min-height: 116px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.btn-full { width: 100%; }
.form-trust { color: var(--muted); text-align: center; font-size: 12.5px; line-height: 1.5; }
.form-status { min-height: 18px; font-size: 13px; color: var(--muted); }
.form-status.ok { color: #0a8a4b; }
.form-status.error { color: #c0392b; }
.contact-alt { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.alt-chip { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--white); color: var(--text); font-size: 13px; font-weight: 700; }
.alt-chip:hover { border-color: var(--accent); color: var(--accent); }
.contact-phone { margin-top: 14px; color: var(--muted); font-size: 14px; }
.contact-phone a { color: var(--accent); font-weight: 700; }
.contact-note { margin-top: 14px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.map-media { min-height: 420px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--bg-2); }
.coverage-map { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }
.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #2be477, #16b956);
  color: var(--white);
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 18px 38px -14px rgba(22,185,86,.72), 0 0 0 8px rgba(37,211,102,.12);
  transition: transform .22s cubic-bezier(.22, 1, .36, 1), box-shadow .22s ease;
}
.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(37,211,102,.34);
  animation: whatsappPulse 2.6s ease-out infinite;
  pointer-events: none;
}
.float-whatsapp svg { width: 31px; height: 31px; fill: currentColor; stroke: none; filter: drop-shadow(0 2px 3px rgba(0,0,0,.18)); }
@media (hover: hover) and (pointer: fine) {
  .float-whatsapp:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 24px 46px -16px rgba(22,185,86,.78), 0 0 0 10px rgba(37,211,102,.14); }
}
@keyframes whatsappPulse {
  0% { opacity: .75; transform: scale(.88); }
  70%, 100% { opacity: 0; transform: scale(1.22); }
}

.menu-fade { display: none; }
body.nav-open .menu-fade { display: block; position: fixed; inset: 0; z-index: 85; background: rgba(10, 24, 40, .28); }
body.nav-open .navbar { z-index: 130; }

@media (max-width: 960px) {
  .content-grid, .content-grid.two, .steps { grid-template-columns: 1fr; }
  .product-line, .product-line.reverse { grid-template-columns: 1fr; }
  .product-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .product-line.reverse .product-copy, .product-line.reverse .product-image { order: initial; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row span { border-right: 0; border-bottom: 1px solid var(--line); }
  .compare-row span:last-child { border-bottom: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding-top: 120px; }
}

@media (max-width: 960px) {
  .navbar { top: 8px; width: calc(100% - 16px); }
  .menu-toggle { display: grid; }
  .navbar-actions { display: none; }
  .nav { display: none; position: fixed; top: 70px; left: 12px; right: 12px; z-index: 140; flex-direction: column; align-items: stretch; gap: 2px; max-height: calc(100dvh - 92px); overflow: auto; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, .98); box-shadow: var(--shadow); }
  .nav > a { padding: 15px 12px; font-size: 16px; font-weight: 700; color: var(--text); border-radius: 12px; }
  .nav > a:hover { background: var(--bg); color: var(--brand-blue); }
  body.nav-open .nav { display: flex; }
  body.nav-open { overflow: hidden; }
  .nav-mobile-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
  .nav-mobile-extra .button { justify-content: center; }
  .nav-mobile-extra .button.secondary { grid-column: 1 / -1; }
  .split, .dashboard, .reviews, .contact, .map-section { grid-template-columns: 1fr; }
  .plan-grid, .value-grid, .footer-main { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
.footer-bottom { align-items: flex-start; flex-direction: column; }
  .catalog-part, .catalog-part:nth-child(even) { grid-template-columns: 1fr; }
  .catalog-part:nth-child(even) .catalog-media { order: 0; }
  .catalog-media { min-height: 260px; }
  .section-shell { padding: 72px 0; }
}

.footer-dev-credit {
  max-width: 1180px;
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.58);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
}
.footer-dev-credit a { color: #7bdcff; }
.footer-dev-credit a:hover { color: #fff; }

@media (max-width: 600px) {
  .navbar-actions .secondary { display: none; }
  .brand small { display: none; }
  h1 { font-size: clamp(3.5rem, 18vw, 5.2rem); }
  .panel-grid { grid-template-columns: 1fr; }
  .map-card iframe { height: 340px; }
  .video-grid { grid-template-columns: 1fr; }
  .product-showcase-grid { grid-template-columns: 1fr; }
  .float-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; border-width: 2px; }
  .float-whatsapp svg { width: 29px; height: 29px; }
}

/* ===== Bloques editoriales industriales ===== */
.spec-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 20px; }
.spec-list li { border-top: 1px solid var(--line); padding-top: 14px; }
.spec-list strong { display: block; font-size: 16.5px; letter-spacing: .01em; }
.spec-list span { display: block; color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-top: 6px; }
.spec-list.two { grid-template-columns: 1fr 1fr; column-gap: 44px; row-gap: 28px; }

.plain-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; max-width: 760px; }
.plain-list li { display: flex; gap: 12px; align-items: baseline; font-weight: 600; }
.plain-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; margin-top: .45em; }
.plain-list.two { grid-template-columns: 1fr 1fr; column-gap: 40px; row-gap: 16px; max-width: none; }

.operation-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: center; margin-top: 14px; }
.operation-copy h2 { margin-top: 10px; }
.operation-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.operation-grid.reverse .operation-copy { order: 2; }
.operation-grid.reverse .operation-media { order: 1; }

.process-list { counter-reset: p; list-style: none; margin: 26px 0 0; padding: 0; display: grid; }
.process-list li { counter-increment: p; display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
.process-list li::before { content: counter(p, decimal-leading-zero); color: var(--accent); font-weight: 800; letter-spacing: .08em; font-size: 14px; padding-top: 3px; }
.process-list strong { display: block; font-size: 16.5px; }
.process-list span { display: block; color: var(--muted); font-size: 14.5px; margin-top: 5px; line-height: 1.6; }
.process-cards { grid-template-columns: repeat(4, 1fr); gap: 12px; }
.process-cards li { grid-template-columns: 1fr; gap: 14px; min-height: 230px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
@media (hover: hover) and (pointer: fine) {
  .process-cards li:hover { transform: translateY(-5px); box-shadow: var(--neu-shadow-hover); border-color: rgba(26, 115, 232, .24); }
}

@media (max-width: 960px) {
  .spec-list.two, .plain-list.two { grid-template-columns: 1fr; }
  .operation-grid { grid-template-columns: 1fr; gap: 28px; }
  .operation-media, .operation-grid.reverse .operation-media, .operation-grid.reverse .operation-copy { order: 0; }
  .operation-media { order: -1; }
  .process-cards { grid-template-columns: 1fr 1fr; }
}

/* ===== Tarjetas de producto estilo foto + overlay (como FastCold) ===== */
.fc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; grid-auto-rows: 208px; }
.fc-card { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: 0 0 0 1px var(--line); background: var(--deep-blue); }
.fc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
.fc-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 28, 56, .85), rgba(7, 28, 56, .25) 50%, transparent); }
.fc-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.fc-badge { align-self: flex-start; margin-bottom: 8px; border-radius: 999px; background: rgba(255, 255, 255, .15); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 4px 12px; font-size: 12px; font-weight: 600; color: var(--white); line-height: 1.4; }
.fc-content h3 { color: var(--white); font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin: 0; }
.fc-card.fc-wide .fc-content h3 { font-size: 24px; }
.fc-content p { margin: 8px 0 0; max-width: 28rem; font-size: 14px; line-height: 1.625; color: rgba(255, 255, 255, .85); }
.fc-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; }
.fc-chips li { border-radius: 999px; border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .05); padding: 4px 12px; font-size: 12px; font-weight: 500; color: var(--white); line-height: 1.4; }
.fc-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--white); }
.fc-link svg { width: 16px; height: 16px; transition: transform .3s; }
@media (hover: hover) and (pointer: fine) {
  .fc-card:hover img { transform: scale(1.05); }
  .fc-card:hover .fc-link svg { transform: translateX(4px); }
}
.fc-wide { grid-column: span 2; grid-row: span 2; }
.fc-half { grid-column: span 2; }
@media (min-width: 1024px) {
  .fc-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 20px; }
  .fc-wide { grid-column: span 2; grid-row: span 2; }
  .fc-half { grid-column: span 1; }
}
@media (max-width: 640px) { .fc-grid { grid-auto-rows: 200px; } }
@media (prefers-reduced-motion: reduce) {
  .fc-card img, .fc-link svg { transition: none; transform: none; }
}

.fc-grid-3 { grid-auto-rows: 240px; }
.fc-grid-3 > :nth-child(3) { grid-column: span 2; }
@media (min-width: 1024px) {
  .fc-grid-3 { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; }
  .fc-grid-3 > :nth-child(3) { grid-column: span 1; }
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(7, 17, 31, .96), rgba(11, 37, 64, .94));
  box-shadow: 0 28px 70px rgba(4, 14, 28, .36);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}
.cookie-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 10% 0%, rgba(56, 182, 255, .16), transparent 34%), linear-gradient(90deg, rgba(255,255,255,.06), transparent 44%);
}
.cookie-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #bdefff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.cookie-icon svg { width: 21px; height: 21px; }
.cookie-copy { position: relative; display: grid; gap: 3px; }
.cookie-copy > span { color: #7bdcff; font-size: 10.5px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.cookie-banner strong { display: block; color: #fff; font-size: 16px; letter-spacing: -.02em; }
.cookie-banner p { margin: 0; color: rgba(238, 247, 255, .74); font-size: 13px; line-height: 1.5; max-width: 590px; }
.cookie-banner .text-link { width: max-content; margin-top: 4px; color: #7bdcff; font-size: 12.5px; }
.cookie-actions { position: relative; display: flex; flex-wrap: wrap; gap: 9px; align-items: center; justify-content: flex-end; }
.cookie-actions .button { border: 0; cursor: pointer; font: inherit; min-height: 40px; padding-inline: 17px; }
.cookie-actions .secondary { background: transparent; color: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.18); }
.cookie-actions .secondary:hover { border-color: rgba(123,220,255,.42); color: #fff; }
body.nav-open .cookie-banner { display: none; }
@media (max-width: 720px) {
  .cookie-banner { grid-template-columns: 42px 1fr; left: 12px; right: 12px; bottom: 12px; padding: 12px; gap: 12px; border-radius: 18px; }
  .cookie-icon { width: 42px; height: 42px; border-radius: 13px; }
  .cookie-icon svg { width: 20px; height: 20px; }
  .cookie-banner strong { font-size: 15.5px; }
  .cookie-banner p { font-size: 13px; }
  .cookie-actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; justify-content: stretch; }
  .cookie-actions .button { width: 100%; }
}

/* ===== Navbar premium ===== */
.navbar {
  display: block;
  top: 0;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #07111f;
  box-shadow: 0 12px 34px rgba(4, 14, 28, .22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  min-height: 34px;
  margin: 0 auto;
  padding: 0;
  color: rgba(255,255,255,.74);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .02em;
}
.nav-promo span, .nav-promo a { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.nav-promo span::before, .nav-promo a::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--accent-2); box-shadow: 0 0 16px rgba(56, 182, 255, .7); }
.nav-promo a { color: #bdefff; }
.navbar-in {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand { gap: 10px; }
.brand-mark { width: 38px; height: 38px; border-radius: 999px; border: 2px solid rgba(255,255,255,.86); box-shadow: none; }
.brand strong { color: #fff; font-size: 16px; letter-spacing: -.025em; }
.brand small { color: rgba(255,255,255,.58); font-size: 10.5px; letter-spacing: .02em; text-transform: uppercase; }
.nav { gap: 22px; color: rgba(255,255,255,.68); font-size: 13.5px; font-weight: 750; }
.nav > a {
  position: relative;
  padding: 8px 0;
  border-radius: 0;
  transition: color .18s ease, background .18s ease;
}
.nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: center;
  opacity: .85;
  transition: transform .18s ease;
}
.nav > a:hover { color: #fff; background: transparent; }
.nav > a:hover::after { transform: scaleX(1); }
.navbar-actions { gap: 8px; }
.navbar-actions .button { min-height: 40px; padding-inline: 17px; border-color: transparent; box-shadow: none; }
.navbar-actions .button.secondary { background: transparent; color: rgba(255,255,255,.76); border-color: rgba(255,255,255,.18); box-shadow: none; }
.navbar-actions .button.secondary:hover { color: #fff; border-color: rgba(255,255,255,.34); }
.menu-toggle { width: 44px; height: 44px; border-radius: 12px; background: transparent; color: #fff; border-color: rgba(255,255,255,.22); }
.scroll-progress { display: block; width: 100%; height: 3px; margin: 0; overflow: hidden; border-radius: 0; background: rgba(255,255,255,.08); }
.scroll-progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--grad-blue); transition: width .12s linear; }

.reveal { opacity: 0; transform: translate3d(0, 22px, 0); transition: opacity .58s ease, transform .58s cubic-bezier(.22, 1, .36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.button, .btn, .quote-form button { transition: transform .18s ease, box-shadow .22s ease, border-color .18s ease, background .18s ease; }
.ath-hero .eyebrow, .ath-hero h1, .ath-hero-text, .ath-hero .actions, .ath-hero-tags, .ath-hero-points, .ath-hero-trust { animation: heroLift .72s cubic-bezier(.22, 1, .36, 1) both; }
.ath-hero h1 { animation-delay: .05s; }
.ath-hero-text { animation-delay: .1s; }
.ath-hero .actions { animation-delay: .15s; }
.ath-hero-tags { animation-delay: .2s; }
.ath-hero-points { animation-delay: .25s; }
.ath-hero-trust { animation-delay: .3s; }
@keyframes heroLift { from { opacity: 0; transform: translate3d(0, 18px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@media (hover: hover) and (pointer: fine) {
  .button:hover, .btn:hover, .quote-form button:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -22px rgba(13, 79, 196, .85); }
}

@media (max-width: 960px) {
  .navbar { top: 0; width: 100%; border-radius: 0; }
  .menu-toggle { position: absolute; right: 16px; top: 45px; }
  .nav-promo { width: calc(100% - 24px); justify-content: flex-start; overflow: hidden; gap: 12px; mask-image: linear-gradient(90deg, #000 0%, #000 82%, transparent 100%); }
  .nav-promo span:nth-child(2) { display: none; }
  .navbar-in { width: calc(100% - 24px); min-height: 62px; padding: 0 58px 0 0; }
  .brand-mark { width: 36px; height: 36px; }
  .nav {
    top: 96px;
    left: 10px;
    right: 10px;
    gap: 6px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(7, 17, 31, .98);
    box-shadow: 0 28px 80px -34px rgba(4, 14, 28, .55);
    animation: mobileMenuIn .22s ease both;
  }
  .nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid transparent;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.06);
  }
  .nav > a::after { display: none; }
  .nav > a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(26, 115, 232, .45);
    order: 2;
  }
  .nav > a:hover { border-color: rgba(56, 182, 255, .22); background: rgba(255,255,255,.1); color: #fff; }
  .nav-mobile-extra {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
    padding-top: 14px;
  }
  .nav-mobile-extra .button,
  .nav-mobile-extra .button.secondary { grid-column: auto; min-height: 46px; }
}
@keyframes mobileMenuIn { from { opacity: 0; transform: translate3d(0, -8px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }

/* ===== Hero editorial principal ===== */
.ath-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  margin-top: 0;
  padding: 96px 0 64px;
  background:
    linear-gradient(115deg, rgba(3, 10, 22, .98) 0%, rgba(6, 19, 39, .94) 48%, rgba(7, 28, 56, .68) 100%),
    url('/assets/images/galeria/galeria-1783996832-e106.jpg') center / cover no-repeat;
  color: var(--white);
}
.ath-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 16% 18%, rgba(56, 182, 255, .12), transparent 30rem), radial-gradient(circle at 90% 85%, rgba(26, 115, 232, .10), transparent 32rem); pointer-events: none; }
.ath-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 180px; background: linear-gradient(180deg, transparent, rgba(238, 244, 251, .88)); pointer-events: none; }
.ath-hero-inner { position: relative; z-index: 1; display: grid; gap: 44px; }
.ath-hero-copy { max-width: 970px; padding-top: 34px; }
.ath-hero .eyebrow { color: #e6f2ff; text-shadow: 0 1px 18px rgba(0,0,0,.28); }
.ath-hero h1 { max-width: 1080px; color: var(--white); font-size: clamp(4rem, 10.2vw, 9.8rem); line-height: .82; letter-spacing: -.07em; text-shadow: 0 24px 70px rgba(0, 0, 0, .42); }
.ath-hero h1 em { display: inline-block; color: transparent; font-style: normal; background: linear-gradient(90deg, #ffffff 0%, #d9f7ff 48%, #7bdcff 100%); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 18px 36px rgba(0,0,0,.28)); }
.ath-hero-text { max-width: 720px; margin-top: 26px; color: #eef7ff; font-size: clamp(17px, 1.8vw, 22px); line-height: 1.55; text-shadow: 0 1px 22px rgba(0,0,0,.32); }
.ath-hero .actions { margin-top: 30px; }
.ath-hero .btn.primary { border-color: transparent; box-shadow: 0 22px 46px -24px rgba(56, 182, 255, .8); }
.ath-hero .btn.secondary { background: rgba(255, 255, 255, .14); color: var(--white); border-color: rgba(255, 255, 255, .34); backdrop-filter: blur(12px); }
.ath-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.ath-hero-tags span { border: 1px solid rgba(255, 255, 255, .30); border-radius: 999px; padding: 8px 12px; color: #f4fbff; background: rgba(6, 20, 40, .42); font-size: 13px; font-weight: 780; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.ath-hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .22); border-radius: 26px; background: rgba(255, 255, 255, .18); box-shadow: 0 32px 90px -42px rgba(0, 0, 0, .75); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.ath-hero-points article { min-height: 220px; padding: 26px; background: rgba(4, 14, 28, .72); }
.ath-hero-points span { color: #bdefff; font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.ath-hero-points h2 { max-width: 360px; margin-top: 34px; color: var(--white); font-size: clamp(1.75rem, 3vw, 3rem); line-height: .95; }
.ath-hero-points p { margin-top: 12px; color: #e2eefb; }
.ath-hero-trust { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #e6f2ff; font-size: 13px; font-weight: 800; }
.ath-hero-trust span { border: 1px solid rgba(255, 255, 255, .24); border-radius: 999px; padding: 9px 12px; background: rgba(6, 20, 40, .40); }

@media (max-width: 960px) {
  .ath-hero { margin-top: 0; padding: 72px 0 48px; min-height: auto; }
  .ath-hero-points { grid-template-columns: 1fr; }
  .ath-hero-points article { min-height: 0; padding: 22px; }
  .ath-hero-points h2 { margin-top: 20px; }
  .ath-hero-trust { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .ath-hero { padding-top: 134px; }
  .ath-hero h1 { font-size: clamp(3.9rem, 18vw, 5.6rem); }
  .ath-hero-text { font-size: 16px; }
  .ath-hero .actions { display: grid; grid-template-columns: 1fr; }
  .ath-hero-tags span { font-size: 12.5px; }
  .process-cards { grid-template-columns: 1fr; }
  .nav-promo { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal, .button, .btn, .quote-form button, .process-cards li { transform: none; opacity: 1; }
  .float-whatsapp::before { display: none; }
}
