:root {
  --blue: #005F98;
  --blue-light: #4090C8;
  --orange: #F86020;
  --white: #FFFFFF;
  --bg: #F7FAFC;
  --section: #EDF4F8;
  --text: #202838;
  --muted: #6B7280;
  --card: #FFFFFF;
  --border: rgba(15, 23, 42, .10);
  --shadow: 0 24px 80px rgba(0, 95, 150, .10);
  --radius: 28px;
  color-scheme: light;
}

html.dark {
  --bg: #09141D;
  --section: #0B1F2C;
  --card: rgba(255,255,255,.055);
  --text: #F5F7FA;
  --muted: #D1D5DB;
  --border: rgba(255,255,255,.11);
  --shadow: 0 24px 90px rgba(0, 0, 0, .32);
  color-scheme: dark;
}

* { 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;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: absolute; left: -999px; top: 16px; z-index: 9999;
  background: var(--orange); color: white; padding: 10px 14px; border-radius: 999px;
}
.skip-link:focus { left: 16px; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 0 0 72px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(22px);
  transition: background .25s ease, box-shadow .25s ease;
}
html.dark .site-header { background: rgba(7, 20, 29, .78); }
.site-header.scrolled { box-shadow: 0 16px 50px rgba(15, 23, 42, .08); }

.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 310px; }
.brand-logo { height: 44px; width: auto; max-width: 300px; object-fit: contain; }
.logo-night { display: none; }
html.dark .logo-day { display: none; }
html.dark .logo-night { display: block; }
.brand-fallback { display: none; align-items: center; gap: 10px; }
.brand-mark { width: 42px; height: 42px; border-radius: 15px; display: grid; place-items: center; background: var(--blue); color: white; font-weight: 900; box-shadow: 0 15px 40px rgba(0, 96, 152, .22); }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { color: var(--text); font-size: 16px; }
.brand-text em { color: var(--blue-light); font-size: 14px; font-style: normal; font-weight: 800; }

.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a { color: var(--muted); font-size: 14px; font-weight: 750; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--blue); }
html.dark .desktop-nav a:hover { color: white; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 13px 21px; font-size: 14px; font-weight: 850;
  border: 1px solid transparent; line-height: 1; cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 16px 36px rgba(249, 96, 33, .25); }
.btn-primary:hover { background: #e65318; }
.btn-secondary { background: rgba(255,255,255,.78); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: rgba(63, 146, 201, .45); background: white; }
html.dark .btn-secondary { background: rgba(255,255,255,.06); color: white; }
html.dark .btn-secondary:hover { background: rgba(255,255,255,.10); }
.btn-small { padding: 11px 16px; }
.btn-ghost-light { background: rgba(255,255,255,.10); color: white; border-color: rgba(255,255,255,.16); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); }
.full { width: 100%; }

.theme-toggle, .mobile-menu-button {
  width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--card); color: var(--text); display: grid; place-items: center; cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.theme-toggle:hover, .mobile-menu-button:hover { transform: translateY(-1px); border-color: rgba(63,146,201,.45); }
.theme-toggle svg { width: 19px; height: 19px; }
.sun-icon { display: none; }
html.dark .sun-icon { display: block; }
html.dark .moon-icon { display: none; }
.mobile-menu-button { display: none; gap: 4px; }
.mobile-menu-button span { width: 18px; height: 2px; background: currentColor; border-radius: 99px; display: block; transition: transform .2s ease, opacity .2s ease; }
.mobile-menu-button.active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.mobile-menu-button.active span:nth-child(2){ opacity: 0; }
.mobile-menu-button.active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { position: relative; overflow: hidden; padding-top: 132px; padding-bottom: 72px; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 8% 4%, rgba(63,146,201,.22), transparent 34%), radial-gradient(circle at 88% 8%, rgba(249,96,33,.14), transparent 32%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; border-radius: 999px;
  padding: 9px 14px; border: 1px solid rgba(63,146,201,.22); background: rgba(63,146,201,.10);
  color: var(--blue); font-size: 13px; font-weight: 900;
}
html.dark .eyebrow { color: #7cc7f7; border-color: rgba(63,146,201,.30); }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--orange); box-shadow: 0 0 0 5px rgba(249,96,33,.12); }

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -.055em; margin: 26px 0 22px; color: var(--text); font-weight: 950; max-width: 800px; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.06; letter-spacing: -.04em; margin: 0; font-weight: 950; }
h3 { font-size: 20px; line-height: 1.2; margin: 0; font-weight: 950; }
.lead { font-size: 18px; line-height: 1.68; color: var(--muted); max-width: 680px; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-points { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 18px; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 850; }
.hero-points i { width: 17px; height: 17px; border-radius: 50%; background: var(--orange); position: relative; display: inline-block; }
.hero-points i::after { content: ""; position: absolute; width: 7px; height: 4px; border-left: 2px solid white; border-bottom: 2px solid white; transform: rotate(-45deg); left: 5px; top: 5px; }

.hero-mockup { position: relative; }
.floating-orb { position: absolute; border-radius: 999px; filter: blur(34px); z-index: -1; }
.orb-blue { width: 170px; height: 170px; background: rgba(63,146,201,.24); top: -34px; left: -34px; }
.orb-orange { width: 200px; height: 200px; background: rgba(249,96,33,.16); right: -30px; bottom: -44px; }
.dashboard-card {
  border: 1px solid var(--border); background: rgba(255,255,255,.90); border-radius: 34px; padding: 20px;
  box-shadow: 0 32px 90px rgba(0, 95, 150, .13); backdrop-filter: blur(20px);
}
html.dark .dashboard-card { background: rgba(11,30,43,.92); box-shadow: 0 32px 90px rgba(0,0,0,.30); }
.dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--section); border-radius: 24px; padding: 14px; margin-bottom: 16px; }
.dashboard-title { display: flex; align-items: center; gap: 12px; }
.dashboard-icon { width: 42px; height: 42px; border-radius: 16px; display: grid; place-items: center; background: var(--blue); color: white; font-size: 20px; }
.dashboard-title strong { display: block; color: var(--text); font-size: 14px; }
.dashboard-title small { color: var(--muted); font-weight: 650; }
.status-pill { color: #059669; background: rgba(16,185,129,.12); padding: 7px 11px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.metrics-grid div { border: 1px solid var(--border); border-radius: 22px; background: var(--card); padding: 15px; }
.metrics-grid strong { display: block; color: var(--blue); font-size: 22px; font-weight: 950; }
html.dark .metrics-grid strong { color: #7cc7f7; }
.metrics-grid span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 800; }
.signal-panel { border: 1px solid var(--border); background: rgba(246,250,253,.92); border-radius: 26px; padding: 18px; }
html.dark .signal-panel { background: rgba(7,20,29,.70); }
.signal-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.signal-heading strong { display: block; font-size: 14px; }
.signal-heading span { display: block; color: var(--muted); font-size: 12px; font-weight: 650; margin-top: 3px; }
.signal-heading svg { color: var(--orange); width: 24px; height: 24px; }
.equalizer { height: 120px; display: flex; align-items: end; gap: 8px; }
.equalizer span { flex: 1; height: var(--h); border-radius: 999px 999px 0 0; background: linear-gradient(180deg, var(--blue-light), var(--blue)); animation: pulseBar 1.4s ease-in-out infinite alternate; animation-delay: calc(var(--h) * -0.012s); }
@keyframes pulseBar { from { height: calc(var(--h) * .55); } to { height: var(--h); } }
.mini-panels { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-panels div { border: 1px solid var(--border); background: var(--card); border-radius: 22px; padding: 14px; }
.mini-panels strong { display: flex; align-items: center; gap: 7px; font-size: 13px; margin-bottom: 10px; }
.mini-panels svg { color: var(--blue-light); width: 17px; height: 17px; }
.progress { display: block; overflow: hidden; height: 8px; border-radius: 99px; background: rgba(100,116,139,.16); }
.progress i { display: block; height: 100%; border-radius: inherit; background: var(--blue-light); }
.progress.orange i { background: var(--orange); }
.mini-panels small { display: block; color: var(--muted); font-size: 12px; font-weight: 650; margin-top: 8px; }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-card, .service-card, .price-card, .testimonial-card, .blog-card, .step-card, .audience-cards div {
  border: 1px solid var(--border); background: var(--card); border-radius: var(--radius); box-shadow: 0 8px 28px rgba(0,95,150,.045);
}
.trust-card { padding: 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(63,146,201,.28); }
.icon-circle, .service-icon { width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center; background: var(--section); color: var(--blue); margin-bottom: 18px; font-size: 24px; }
html.dark .icon-circle, html.dark .service-icon { color: #7cc7f7; background: rgba(63,146,201,.10); }
.trust-card p, .section-heading p, .service-card p, .price-card p, .step-card p, .testimonial-card p, .blog-heading p, .footer p, .audience .section-heading p { color: var(--muted); line-height: 1.72; }
.trust-card p { margin: 8px 0 0; font-size: 14px; }

.soft-section { background: var(--section); }
.section-heading { max-width: 740px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2 { margin-top: 20px; }
.section-heading p { font-size: 17px; margin: 20px 0 0; }
.services-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(63,146,201,.32); }
.service-card p { min-height: 74px; font-size: 14px; margin: 12px 0 22px; }
.service-card ul, .price-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.service-card li, .price-card li { display: flex; align-items: center; gap: 9px; color: var(--text); font-size: 14px; font-weight: 800; }
.service-card li::before, .price-card li::before { content: ""; width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%; background: var(--orange); box-shadow: inset 0 0 0 5px var(--orange); }
.service-card a, .blog-card a { display: inline-flex; margin-top: 24px; color: var(--blue); font-size: 14px; font-weight: 950; }
html.dark .service-card a, html.dark .blog-card a { color: #7cc7f7; }

.why-card { overflow: hidden; border-radius: 36px; background: var(--blue); color: white; box-shadow: 0 30px 90px rgba(0,95,150,.20); display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; padding: 58px; }
html.dark .why-card { background: #102736; box-shadow: var(--shadow); }
.badge-light { display: inline-flex; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.10); color: white; padding: 9px 14px; border-radius: 999px; font-size: 13px; font-weight: 900; }
.why-copy h2 { margin-top: 24px; color: white; }
.why-copy p { color: rgba(255,255,255,.83); line-height: 1.75; font-size: 16px; margin: 20px 0 30px; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-list div { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.10); border-radius: 22px; padding: 18px; line-height: 1.55; font-size: 14px; font-weight: 750; position: relative; padding-left: 46px; }
.why-list div::before { content: "✓"; position: absolute; left: 18px; top: 18px; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: white; font-size: 12px; font-weight: 950; }

.price-section { background: var(--bg); }
.pricing-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { position: relative; padding: 34px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--orange); box-shadow: 0 20px 70px rgba(249,96,33,.12); }
.recommended { position: absolute; right: 24px; top: 24px; background: var(--orange); color: white; border-radius: 999px; padding: 7px 11px; font-size: 11px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
.price-card p { margin: 16px 0 22px; font-size: 14px; min-height: 74px; }
.price { display: flex; align-items: end; gap: 5px; margin-bottom: 26px; }
.price span { font-size: 48px; font-weight: 950; letter-spacing: -.05em; color: var(--text); }
.price small { color: var(--muted); font-weight: 850; margin-bottom: 9px; }
.price-card .btn { margin-top: 30px; }

.audience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.audience .section-heading .btn { margin-top: 28px; }
.audience-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.audience-cards div { padding: 26px 20px; min-height: 116px; display: flex; align-items: end; font-weight: 950; position: relative; overflow: hidden; }
.audience-cards div::before { content: ""; position: absolute; width: 46px; height: 46px; border-radius: 18px; background: rgba(63,146,201,.12); top: 18px; left: 18px; }
.audience-cards div::after { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); top: 34px; left: 34px; }

.steps-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { padding: 34px; position: relative; }
.step-card span { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; background: var(--blue); color: white; font-size: 21px; font-weight: 950; margin-bottom: 24px; }
.step-card p { margin: 12px 0 0; font-size: 14px; }

.testimonial-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { padding: 30px; }
.person { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.person span { width: 52px; height: 52px; border-radius: 18px; background: var(--blue); color: white; display: grid; place-items: center; font-weight: 950; }
.person strong { display: block; font-weight: 950; color: var(--text); }
.person small { display: block; color: var(--muted); font-weight: 650; margin-top: 4px; }
.stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14px; margin: 0; }

.blog-heading { display: flex; justify-content: space-between; align-items: end; gap: 34px; }
.blog-heading div { max-width: 760px; }
.blog-heading h2 { margin-top: 20px; }
.blog-heading p { margin: 20px 0 0; }
.blog-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-art { height: 170px; display: grid; place-items: center; color: white; font-size: 56px; background: linear-gradient(135deg, var(--blue), var(--blue-light), #0B1E2B); }
.blog-card > div:last-child { padding: 28px; }
.blog-card small { color: var(--orange); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.blog-card h3 { font-size: 18px; margin-top: 12px; line-height: 1.38; }

.cta-card { border-radius: 38px; padding: 78px 44px; text-align: center; color: white; background: radial-gradient(circle at 20% 12%, rgba(63,146,201,.58), transparent 34%), linear-gradient(135deg, var(--blue), #0B1E2B 60%, #07141D); box-shadow: 0 30px 90px rgba(0,95,150,.20); }
.cta-card h2 { max-width: 760px; margin-inline: auto; color: white; }
.cta-card p { max-width: 680px; margin: 22px auto 0; color: rgba(255,255,255,.84); line-height: 1.75; }
.center-buttons { justify-content: center; margin-top: 34px; }

.footer { border-top: 1px solid var(--border); background: var(--card); padding-top: 58px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr .8fr; gap: 42px; }
.footer .brand { display: inline-flex; align-items: center; gap: 12px; min-width: 310px; }
.footer p { font-size: 14px; margin-bottom: 0; max-width: 380px; }
.footer h3 { font-size: 16px; margin-bottom: 18px; }
.footer a:not(.brand) { display: block; color: var(--muted); font-size: 14px; font-weight: 700; margin-bottom: 13px; transition: color .2s ease; }
.footer a:not(.brand):hover { color: var(--blue); }
html.dark .footer a:not(.brand):hover { color: white; }
.footer-fallback { display: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--border); margin-top: 48px; padding: 24px 0; color: var(--muted); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1050px) {
  .brand { min-width: 260px; }
  .brand-logo { height: 38px; max-width: 235px; }
  .desktop-nav, .header-actions .btn { display: none; }
  .mobile-menu-button { display: grid; }
  .header-actions { gap: 8px; }
  .mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--card); padding: 14px 20px 20px; }
  .mobile-nav.open { display: grid; }
  .mobile-nav a:not(.btn) { padding: 14px 10px; border-radius: 16px; color: var(--muted); font-weight: 850; }
  .mobile-nav a:not(.btn):hover { background: var(--section); color: var(--text); }
  .mobile-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
  .hero-grid, .why-card, .audience-grid { grid-template-columns: 1fr; }
  .trust-grid, .services-grid, .pricing-grid, .testimonial-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 74px 0; }
  .hero { padding-top: 108px; padding-bottom: 54px; }
  .header-inner { height: 68px; }
  .brand { display: inline-flex; align-items: center; gap: 12px; min-width: 310px; }
  .brand-logo { height: 44px; width: auto; max-width: 300px; object-fit: contain; }
  h1 { font-size: clamp(34px, 10.5vw, 46px); line-height: 1.04; }
  h2 { font-size: clamp(28px, 9vw, 38px); }
  .lead { font-size: 16px; line-height: 1.65; }
  .hero-buttons, .mobile-cta-row { flex-direction: column; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .trust-grid, .services-grid, .pricing-grid, .testimonial-grid, .blog-grid, .steps-grid, .audience-cards { grid-template-columns: 1fr; }
  .metrics-grid, .mini-panels { grid-template-columns: 1fr 1fr; }
  .dashboard-card { padding: 14px; border-radius: 28px; }
  .equalizer { height: 95px; gap: 5px; }
  .why-card { padding: 28px; border-radius: 30px; }
  .blog-heading { display: block; }
  .blog-heading .btn { margin-top: 24px; }
  .cta-card { padding: 50px 20px; border-radius: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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

.active-link { color: var(--blue) !important; }
html.dark .active-link { color: white !important; }
.contact-hero { position: relative; overflow: hidden; padding-top: 140px; }
.contact-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 48px; align-items: start; }
.contact-copy h1 { font-size: clamp(38px, 5vw, 58px); line-height: 1.02; letter-spacing: -.05em; margin: 26px 0 22px; }
.contact-points { display: grid; gap: 12px; margin: 28px 0; }
.contact-points span { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; font-weight: 850; }
.contact-points i { width: 18px; height: 18px; border-radius: 50%; background: var(--orange); position: relative; display: inline-block; flex: 0 0 18px; }
.contact-points i::after { content: ""; position: absolute; width: 7px; height: 4px; border-left: 2px solid white; border-bottom: 2px solid white; transform: rotate(-45deg); left: 5px; top: 5px; }
.contact-methods { display: grid; gap: 12px; margin-top: 30px; }
.contact-methods a { display: block; border: 1px solid var(--border); background: var(--card); border-radius: 22px; padding: 18px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.contact-methods a:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(63,146,201,.35); }
.contact-methods strong { display: block; color: var(--text); font-size: 14px; margin-bottom: 6px; }
.contact-methods span { color: var(--muted); font-weight: 800; font-size: 14px; }
.contact-card { border: 1px solid var(--border); background: rgba(255,255,255,.92); border-radius: 34px; padding: 34px; box-shadow: 0 30px 90px rgba(0,95,150,.13); backdrop-filter: blur(20px); }
html.dark .contact-card { background: rgba(11,30,43,.92); box-shadow: 0 32px 90px rgba(0,0,0,.30); }
.form-heading h2, .form-success h2 { font-size: 30px; margin: 0; }
.form-heading p, .form-success p { color: var(--muted); line-height: 1.7; margin: 12px 0 0; }
.contact-form { margin-top: 26px; display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 9px; color: var(--text); font-size: 14px; font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--border); background: var(--bg); color: var(--text); border-radius: 18px; padding: 14px 15px; font: inherit; font-size: 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 4px rgba(63,146,201,.13); background: var(--card); }
.privacy-check { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px !important; color: var(--muted) !important; font-weight: 750 !important; line-height: 1.55; }
.privacy-check input { width: 18px; height: 18px; margin-top: 2px; padding: 0; accent-color: var(--orange); }
.privacy-check a { color: var(--blue); font-weight: 900; }
html.dark .privacy-check a { color: #7cc7f7; }
.form-errors { border: 1px solid rgba(220,38,38,.25); background: rgba(220,38,38,.08); color: #b91c1c; border-radius: 20px; padding: 16px 18px; margin-top: 20px; }
html.dark .form-errors { color: #fecaca; }
.form-errors ul { margin: 8px 0 0; padding-left: 20px; }
.form-errors li { margin-top: 4px; }
.form-success { text-align: center; padding: 24px 6px; }
.form-success > span { width: 64px; height: 64px; border-radius: 22px; display: grid; place-items: center; background: rgba(16,185,129,.12); color: #059669; font-size: 34px; font-weight: 950; margin: 0 auto 22px; }
.form-actions { display: grid; gap: 12px; margin-top: 26px; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 1050px) { .contact-layout { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .contact-hero { padding-top: 112px; } .contact-card { padding: 22px; border-radius: 28px; } .form-grid { grid-template-columns: 1fr; } .contact-copy h1 { font-size: clamp(34px, 10vw, 46px); } }

.service-depth { background: var(--bg); }
.depth-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.depth-card { border: 1px solid var(--border); background: var(--card); border-radius: var(--radius); padding: 28px; box-shadow: 0 8px 28px rgba(0,95,150,.045); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.depth-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(63,146,201,.32); }
.depth-icon { width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center; background: var(--section); color: var(--blue); margin-bottom: 18px; font-size: 24px; }
html.dark .depth-icon { color: #7cc7f7; background: rgba(63,146,201,.10); }
.depth-card p { color: var(--muted); line-height: 1.7; font-size: 14px; margin: 12px 0 18px; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.feature-list li { position: relative; padding-left: 22px; color: var(--text); font-size: 13px; line-height: 1.45; font-weight: 750; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 950; }
.detailed-plans .section-heading { margin-bottom: 8px; }
.plan-family { margin-top: 42px; }
.family-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.family-heading h3 { font-size: 26px; }
.family-heading p { color: var(--muted); line-height: 1.65; max-width: 620px; margin: 0; }
.mini-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mini-plan { border: 1px solid var(--border); background: var(--card); border-radius: 26px; padding: 26px; position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.mini-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.featured-mini { border-color: var(--orange); box-shadow: 0 18px 55px rgba(249,96,33,.10); }
.mini-plan > span { display: inline-flex; color: var(--blue); background: rgba(63,146,201,.10); border: 1px solid rgba(63,146,201,.18); padding: 7px 11px; border-radius: 999px; font-size: 12px; font-weight: 950; }
html.dark .mini-plan > span { color: #7cc7f7; }
.mini-plan strong { display: block; margin-top: 18px; color: var(--text); font-size: 38px; line-height: 1; letter-spacing: -.04em; }
.mini-plan small { display: block; color: var(--muted); margin: 8px 0 20px; font-weight: 800; }
.mini-plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.mini-plan li { color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 700; position: relative; padding-left: 20px; }
.mini-plan li::before { content: ""; position: absolute; left: 0; top: .45em; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.reliability-section { background: var(--bg); }
.reliability-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.reliability-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.reliability-cards article { border: 1px solid var(--border); background: var(--card); border-radius: 26px; padding: 24px; box-shadow: 0 8px 28px rgba(0,95,150,.045); }
.reliability-cards strong { display: block; color: var(--text); font-size: 18px; margin-bottom: 10px; }
.reliability-cards p { color: var(--muted); line-height: 1.65; margin: 0; font-size: 14px; }
.access-section { background: var(--bg); }
.access-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.access-grid a { border: 1px solid var(--border); background: var(--card); border-radius: 24px; padding: 22px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.access-grid a:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(63,146,201,.35); }
.access-grid strong { display: block; color: var(--text); font-size: 17px; margin-bottom: 7px; }
.access-grid span { color: var(--muted); font-size: 13px; font-weight: 750; }
.testimonial-grid-four { grid-template-columns: repeat(4, 1fr); }
.contact-mini { margin: 24px auto 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.contact-mini span { display: inline-flex; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.10); color: white; padding: 9px 13px; border-radius: 999px; font-size: 13px; font-weight: 850; }
@media (max-width: 1050px) {
  .depth-grid, .testimonial-grid-four { grid-template-columns: repeat(2, 1fr); }
  .mini-plan-grid, .access-grid { grid-template-columns: repeat(2, 1fr); }
  .reliability-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .depth-grid, .mini-plan-grid, .reliability-cards, .access-grid, .testimonial-grid-four { grid-template-columns: 1fr; }
  .family-heading { display: block; }
  .family-heading p { margin-top: 10px; }
  .mini-plan strong { font-size: 34px; }
}

.service-page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 142px;
}
.service-page-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: center;
  gap: 56px;
}
.service-page-copy h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1;
  letter-spacing: -.055em;
  margin: 26px 0 22px;
  max-width: 860px;
}
.service-summary-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.88);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
html.dark .service-summary-card {
  background: rgba(11,30,43,.88);
}
.service-large-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  font-size: 36px;
  box-shadow: 0 18px 45px rgba(0,96,152,.24);
  margin-bottom: 24px;
}
.service-summary-card h2 {
  font-size: 30px;
  margin-bottom: 14px;
}
.service-summary-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.use-case-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.use-case-chips span {
  border: 1px solid var(--border);
  background: var(--section);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 850;
}
html.dark .use-case-chips span {
  background: rgba(255,255,255,.06);
}
.service-nav-section {
  padding-top: 0;
  padding-bottom: 52px;
}
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.service-nav a {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.service-nav a:hover,
.service-nav a.current {
  transform: translateY(-2px);
  border-color: rgba(249,96,32,.45);
  color: var(--text);
  background: rgba(249,96,32,.08);
}
.service-feature-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-feature {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 28px rgba(0,95,150,.045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(63,146,201,.32);
}
.service-feature p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 14px;
  margin: 12px 0 0;
}
.service-included-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 50px;
  align-items: center;
}
.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.included-list li {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 18px;
  padding: 15px 16px 15px 44px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  position: relative;
}
.included-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 950;
}
.service-plan-grid {
  margin-top: 46px;
}
.service-plan-grid .mini-plan .btn {
  margin-top: 22px;
}
.plan-note {
  max-width: 860px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.65;
  font-size: 13px;
}
.service-hero-points {
  max-width: 700px;
}
@media (max-width: 1050px) {
  .service-page-grid,
  .service-included-grid {
    grid-template-columns: 1fr;
  }
  .service-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .service-page-hero {
    padding-top: 114px;
  }
  .service-page-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .service-summary-card {
    padding: 24px;
    border-radius: 28px;
  }
  .service-feature-grid,
  .included-list {
    grid-template-columns: 1fr;
  }
  .service-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }
  .service-nav a {
    flex: 0 0 auto;
  }
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  perspective: 1200px;
  z-index: 1010;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -72px;
  right: -72px;
  top: 100%;
  height: 28px;
  opacity: 0;
  pointer-events: none;
}
.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after,
.nav-dropdown.is-open::after {
  pointer-events: auto;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  padding: 18px 0;
  transition: color .25s ease, transform .25s ease;
  position: relative;
}
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: translateX(-50%);
  opacity: .9;
  transition: width .36s cubic-bezier(.22,1,.36,1);
}
.nav-dropdown-trigger:hover,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--blue);
  transform: translateY(-1px);
}
html.dark .nav-dropdown-trigger:hover,
html.dark .nav-dropdown:focus-within .nav-dropdown-trigger,
html.dark .nav-dropdown:hover .nav-dropdown-trigger,
html.dark .nav-dropdown.is-open .nav-dropdown-trigger { color: white; }
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after { width: 100%; }
.nav-dropdown-trigger span {
  font-size: 10px;
  opacity: .72;
  transform: translateY(1px) rotate(0deg);
  transition: transform .36s cubic-bezier(.22,1,.36,1), opacity .22s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger span,
.nav-dropdown:focus-within .nav-dropdown-trigger span,
.nav-dropdown.is-open .nav-dropdown-trigger span {
  transform: translateY(1px) rotate(180deg);
  opacity: 1;
}
.nav-dropdown-menu {
  --pointer-x: 50%;
  --pointer-y: 20%;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 1020;
  transform: translateX(-50%) translateY(14px) rotateX(-10deg) scale(.975);
  transform-origin: top center;
  width: max-content;
  min-width: 292px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(201,212,225,.9);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(63,146,201,.13), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.985), rgba(247,250,253,.975));
  box-shadow: 0 26px 70px rgba(15,23,42,.18), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, transform .44s cubic-bezier(.16,1,.3,1), visibility .24s ease;
  overflow: visible;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 24px;
}
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255,255,255,.22), rgba(255,255,255,0) 42%, rgba(63,146,201,.08), rgba(255,255,255,0) 72%),
    radial-gradient(circle at 18% 18%, rgba(249,96,32,.08), transparent 22%);
  pointer-events: none;
  opacity: .75;
}
html.dark .nav-dropdown-menu {
  border-color: rgba(101,132,159,.42);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(63,146,201,.16), transparent 34%),
    linear-gradient(180deg, rgba(7,20,29,.985), rgba(11,30,43,.975));
  box-shadow: 0 28px 78px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.075);
}
html.dark .nav-dropdown-menu::after {
  background:
    linear-gradient(120deg, rgba(255,255,255,.05), rgba(255,255,255,0) 42%, rgba(63,146,201,.10), rgba(255,255,255,0) 72%),
    radial-gradient(circle at 18% 18%, rgba(249,96,32,.10), transparent 22%);
  opacity: .8;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) rotateX(0deg) scale(1);
}
.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 15px;
  color: var(--text);
  font-weight: 850;
  font-size: 15px;
  letter-spacing: -.01em;
  opacity: 0;
  transform: translateY(10px);
  transition:
    transform .36s cubic-bezier(.22,1,.36,1),
    opacity .28s ease,
    background .22s ease,
    color .22s ease,
    box-shadow .22s ease;
}
.nav-dropdown-menu a::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(249,96,32,.09);
  opacity: .82;
  transform: scale(.82);
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}
.nav-dropdown-menu a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(63,146,201,.095), rgba(249,96,32,.055));
  opacity: 0;
  transition: opacity .22s ease;
  z-index: -1;
}
.nav-dropdown:hover .nav-dropdown-menu a,
.nav-dropdown:focus-within .nav-dropdown-menu a,
.nav-dropdown.is-open .nav-dropdown-menu a {
  opacity: 1;
  transform: translateY(0);
}
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(1),
.nav-dropdown:focus-within .nav-dropdown-menu a:nth-child(1),
.nav-dropdown.is-open .nav-dropdown-menu a:nth-child(1) { transition-delay: .02s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(2),
.nav-dropdown:focus-within .nav-dropdown-menu a:nth-child(2),
.nav-dropdown.is-open .nav-dropdown-menu a:nth-child(2) { transition-delay: .055s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(3),
.nav-dropdown:focus-within .nav-dropdown-menu a:nth-child(3),
.nav-dropdown.is-open .nav-dropdown-menu a:nth-child(3) { transition-delay: .09s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(4),
.nav-dropdown:focus-within .nav-dropdown-menu a:nth-child(4),
.nav-dropdown.is-open .nav-dropdown-menu a:nth-child(4) { transition-delay: .125s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(5),
.nav-dropdown:focus-within .nav-dropdown-menu a:nth-child(5),
.nav-dropdown.is-open .nav-dropdown-menu a:nth-child(5) { transition-delay: .16s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(6),
.nav-dropdown:focus-within .nav-dropdown-menu a:nth-child(6),
.nav-dropdown.is-open .nav-dropdown-menu a:nth-child(6) { transition-delay: .195s; }
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--blue);
  background: rgba(63,146,201,.075);
  transform: translateX(4px);
  box-shadow: inset 0 0 0 1px rgba(63,146,201,.10);
}
.nav-dropdown-menu a:hover::before,
.nav-dropdown-menu a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 0 7px rgba(249,96,32,.12), 0 0 18px rgba(249,96,32,.18);
}
.nav-dropdown-menu a:hover::after,
.nav-dropdown-menu a:focus-visible::after { opacity: 1; }
html.dark .nav-dropdown-menu a { color: rgba(255,255,255,.94); }
html.dark .nav-dropdown-menu a:hover,
html.dark .nav-dropdown-menu a:focus-visible {
  color: white;
  background: rgba(255,255,255,.065);
  box-shadow: inset 0 0 0 1px rgba(124,199,247,.10);
}
@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-trigger,
  .nav-dropdown-trigger span,
  .nav-dropdown-menu,
  .nav-dropdown-menu a {
    transition: none !important;
    animation: none !important;
  }
}

.compact-plans-section { background: var(--bg); padding: 74px 0; }
.compact-plans-card {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: center;
  border: 1px solid var(--border); background: var(--card); border-radius: 34px;
  padding: 34px; box-shadow: var(--shadow);
}
.compact-plans-copy h2 { margin-top: 18px; font-size: clamp(28px, 3.6vw, 42px); }
.compact-plans-copy p { color: var(--muted); line-height: 1.75; margin: 18px 0 0; }
.plan-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.plan-link-card {
  display: grid; gap: 8px; min-height: 155px; align-content: center;
  border: 1px solid var(--border); background: rgba(255,255,255,.72);
  border-radius: 24px; padding: 22px; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
html.dark .plan-link-card { background: rgba(255,255,255,.055); }
.plan-link-card:hover { transform: translateY(-4px); border-color: rgba(63,146,201,.38); box-shadow: 0 20px 50px rgba(0,95,150,.10); }
.plan-link-card strong { font-size: 18px; font-weight: 950; color: var(--text); }
.plan-link-card span { font-size: 22px; font-weight: 950; color: var(--blue); letter-spacing: -.03em; }
html.dark .plan-link-card span { color: #7cc7f7; }
.plan-link-card em { font-style: normal; color: var(--muted); font-size: 13px; font-weight: 850; }
.plan-link-card.featured-link { border-color: rgba(249,96,32,.55); box-shadow: 0 18px 46px rgba(249,96,32,.11); }
.plan-link-card.featured-link span { color: var(--orange); }

.mobile-nav-label {
  color: var(--blue); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .08em;
  padding: 16px 10px 6px; display: block;
}
html.dark .mobile-nav-label { color: #7cc7f7; }
.mobile-nav a.mobile-service-link {
  padding-left: 24px !important; font-size: 14px; border-left: 2px solid rgba(63,146,201,.18);
  margin-left: 10px;
}
.footer-grid { grid-template-columns: 1.15fr .9fr .8fr .9fr; }
.footer-grid > div:nth-child(2) a { margin-bottom: 10px; }

@media (max-width: 1050px) {
  .compact-plans-card { grid-template-columns: 1fr; }
  .plan-link-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .compact-plans-section { padding: 58px 0; }
  .compact-plans-card { padding: 24px; border-radius: 28px; }
  .plan-link-card { min-height: auto; }
}

.footer,
.footer * {
  max-width: 100%;
}

.footer {
  overflow-x: hidden;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) minmax(0, .8fr) minmax(0, .8fr);
}

.footer .brand,
.footer-brand {
  min-width: 0;
  max-width: 100%;
}

.footer .brand-logo {
  max-width: min(360px, 100%);
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

.footer h3,
.footer a,
.footer p {
  overflow-wrap: anywhere;
}

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer .brand-logo {
    max-width: min(320px, 100%);
  }
}

@media (max-width: 820px) {
  .footer {
    padding-top: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer .brand-logo {
    max-width: min(300px, 100%);
    max-height: 70px;
  }

  .footer p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
  }

  .footer h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .footer a:not(.brand) {
    font-size: 15px;
    margin-bottom: 11px;
    line-height: 1.35;
  }

  .footer-bottom {
    margin-top: 34px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 38px;
  }

  .footer .brand-logo {
    max-width: min(260px, 100%);
    max-height: 62px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

.seo-difference {
  padding: 0 0 56px;
}

.seo-difference-card {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,245,250,.72));
  border-radius: 34px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  padding: 34px;
}

html.dark .seo-difference-card {
  background: linear-gradient(135deg, rgba(16,39,54,.84), rgba(7,20,29,.72));
}

.seo-difference-card h2 {
  margin-top: 18px;
  font-size: clamp(28px, 3vw, 40px);
}

.seo-difference-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 18px 0 0;
}

.seo-difference-grid {
  display: grid;
  gap: 14px;
}

.seo-difference-grid div {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 22px;
  padding: 20px;
}

.seo-difference-grid strong {
  display: block;
  color: var(--text);
  font-weight: 950;
  margin-bottom: 8px;
}

.seo-difference-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  font-weight: 650;
}

@media (max-width: 900px) {
  .seo-difference-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}

.visual-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}

.visual-card,
.service-visual-grid {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(238,245,250,.78));
  box-shadow: var(--shadow);
}

html.dark .visual-card,
html.dark .service-visual-grid {
  background: linear-gradient(180deg, rgba(18,33,45,.92), rgba(10,23,33,.82));
}

.visual-card {
  border-radius: 28px;
  overflow: hidden;
}

.visual-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--section);
}

.visual-card img,
.service-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-card-copy {
  padding: 22px 22px 24px;
}

.visual-card-copy h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.visual-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.visual-card-large {
  grid-row: span 2;
}

.visual-card-large .visual-card-copy h3 {
  font-size: 28px;
}

.service-visual-grid {
  border-radius: 32px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.service-visual-media {
  margin: 0;
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--section);
}

.service-visual-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
}

.service-visual-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 24px;
}

.service-visual-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.service-visual-points i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
  box-shadow: 0 0 0 4px rgba(248,96,32,.14);
}

.service-visual-points i::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 1040px) {
  .visual-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .visual-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .service-visual-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .visual-showcase-grid {
    grid-template-columns: 1fr;
  }
  .service-visual-grid {
    padding: 18px;
    border-radius: 24px;
    gap: 20px;
  }
  .visual-card-copy,
  .service-visual-copy {
    padding-inline: 4px;
  }
  .visual-card-copy h3 {
    font-size: 22px;
  }
  .visual-card-large .visual-card-copy h3,
  .service-visual-copy h2 {
    font-size: 26px;
  }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 18px 45px rgba(248, 96, 32, .30);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.96);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--blue);
  box-shadow: 0 18px 45px rgba(0, 95, 152, .28);
  transform: translateY(-3px) scale(1.02);
}

html.dark .back-to-top {
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

@media (max-width: 720px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-top: 142px;
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}

.legal-hero h1 {
  margin: 24px 0 18px;
}

.legal-summary-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(238,245,250,.72));
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 32px;
}

html.dark .legal-summary-card {
  background: linear-gradient(180deg, rgba(18,33,45,.94), rgba(10,23,33,.78));
}

.legal-summary-card strong {
  display: block;
  font-size: 24px;
  font-weight: 950;
  color: var(--text);
}

.legal-summary-card span {
  display: block;
  color: var(--blue-light);
  font-weight: 900;
  margin-top: 8px;
}

.legal-summary-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 18px 0 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.legal-content,
.legal-side,
.status-frame-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.legal-content {
  padding: 34px;
}

.legal-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 18px;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.85;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-note {
  margin-top: 32px;
  border-left: 4px solid var(--orange);
  background: rgba(248,96,32,.08);
  color: var(--text);
  border-radius: 18px;
  padding: 18px;
  line-height: 1.7;
}

.legal-side {
  position: sticky;
  top: 100px;
  padding: 24px;
}

.legal-side h2 {
  font-size: 22px;
  margin-bottom: 18px;
}

.legal-side a {
  display: block;
  color: var(--muted);
  font-weight: 850;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s ease;
}

.legal-side a:hover {
  color: var(--blue);
}

.status-frame-card {
  overflow: hidden;
}

.status-frame-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-bottom: 1px solid var(--border);
}

.status-frame-header h2 {
  font-size: 28px;
}

.status-frame-header p {
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.6;
}

.status-frame {
  width: 100%;
  min-height: 780px;
  border: 0;
  background: #fff;
}

@media (max-width: 940px) {
  .legal-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-side {
    position: static;
  }

  .status-frame-header {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding-top: 118px;
  }

  .legal-content,
  .legal-side,
  .legal-summary-card {
    padding: 22px;
    border-radius: 24px;
  }

  .status-frame {
    min-height: 720px;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid !important;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  color: var(--blue);
  margin: 0 !important;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

html.dark .social-links a {
  background: rgba(255,255,255,.06);
  color: #fff;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: #fff !important;
  border-color: var(--orange);
  box-shadow: 0 14px 32px rgba(248,96,32,.24);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 720px) {
  .social-links {
    margin-top: 18px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 70px rgba(5, 25, 38, .18);
  backdrop-filter: blur(18px);
  padding: 18px;
}

html.dark .cookie-banner-content {
  background: rgba(7, 20, 29, .94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

.cookie-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(248, 96, 32, .12);
  color: var(--orange);
}

.cookie-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-copy strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 4px;
}

.cookie-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn,
.cookie-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.cookie-btn {
  border: 0;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

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

.cookie-btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(248, 96, 32, .24);
}

.cookie-btn-primary:hover {
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(0, 95, 152, .24);
}

.cookie-btn-secondary,
.cookie-link {
  background: rgba(0, 95, 152, .07);
  color: var(--text);
  border: 1px solid var(--border);
}

.cookie-link:hover {
  color: var(--blue);
}

html.dark .cookie-btn-secondary,
html.dark .cookie-link {
  background: rgba(255,255,255,.06);
  color: #fff;
}

@media (max-width: 860px) {
  .cookie-banner-content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .cookie-icon {
    display: none;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-btn,
  .cookie-link {
    flex: 1 1 auto;
  }
}

@media (max-width: 520px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-btn,
  .cookie-link {
    width: 100%;
  }
}

.site-logo,
.logo img,
.brand-logo,
.footer .brand-logo,
.header-logo,
nav img[alt*="Global Hostlive"],
footer img[alt*="Global Hostlive"] {
  background: transparent !important;
}




.faq-section {
  background: var(--section);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 45px rgba(0, 95, 152, .06);
}

.faq-item h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 20px;
  }
}


.technical-section { background: var(--bg); }
.technical-table-wrap { margin-top: 38px; overflow-x: auto; border: 1px solid var(--border); border-radius: 28px; background: var(--card); box-shadow: var(--shadow); }
.technical-table { width: 100%; border-collapse: collapse; min-width: 980px; }
.technical-table th, .technical-table td { padding: 18px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 14px; line-height: 1.55; }
.technical-table th { color: var(--text); font-weight: 950; background: rgba(0, 95, 152, .06); white-space: nowrap; }
html.dark .technical-table th { background: rgba(255,255,255,.06); }
.technical-table tr:last-child td { border-bottom: 0; }
.technical-table td strong { display: block; color: var(--text); font-size: 15px; font-weight: 950; margin-bottom: 6px; }
.technical-table td span { display: block; color: var(--muted); font-size: 13px; margin-top: 5px; }
.technical-highlight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.technical-highlight-grid article { border: 1px solid var(--border); background: var(--card); border-radius: 24px; padding: 24px; box-shadow: 0 16px 45px rgba(0, 95, 152, .06); }
.technical-highlight-grid h3 { margin: 0 0 10px; color: var(--text); font-size: 18px; }
.technical-highlight-grid p { margin: 0; color: var(--muted); line-height: 1.75; font-size: 15px; }
@media (max-width: 880px) {
  .technical-table { min-width: 0; }
  .technical-table thead { display: none; }
  .technical-table, .technical-table tbody, .technical-table tr, .technical-table td { display: block; width: 100%; }
  .technical-table tr { border-bottom: 1px solid var(--border); padding: 12px 0; }
  .technical-table tr:last-child { border-bottom: 0; }
  .technical-table td { border-bottom: 0; padding: 10px 18px; }
  .technical-table td::before { content: attr(data-label); display: block; color: var(--text); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
  .technical-highlight-grid { grid-template-columns: 1fr; }
}


.table-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff !important;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(248, 96, 32, .22);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.table-order-btn:hover {
  transform: translateY(-2px);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(0, 95, 152, .24);
}

@media (max-width: 880px) {
  .table-order-btn {
    width: 100%;
    margin-top: 4px;
  }
}


.live-demo-section {
  background: var(--section);
}

.live-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 30px;
  align-items: center;
  margin-top: 38px;
}

.live-player-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.live-player-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.live-player-top strong {
  font-weight: 950;
}

.live-player-top span:last-child {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 7px rgba(16,185,129,.12);
}

.live-tv-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.live-player-note {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  border-top: 1px solid var(--border);
}

.live-player-note strong {
  color: var(--text);
}

.live-demo-copy {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: 0 16px 45px rgba(0, 95, 152, .06);
  padding: 30px;
}

.live-demo-copy h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.live-demo-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.live-benefits {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.live-benefits li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 850;
}

.live-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 950;
}

@media (max-width: 940px) {
  .live-demo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .live-player-top {
    flex-wrap: wrap;
  }

  .live-player-top span:last-child {
    width: 100%;
    margin-left: 20px;
  }

  .live-demo-copy {
    padding: 22px;
  }
}


.audio-demo-section {
  background: var(--section);
}

.audio-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 30px;
  align-items: center;
  margin-top: 38px;
}

.audio-player-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.audio-player-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.audio-player-top strong {
  font-weight: 950;
}

.audio-player-top span:last-child {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.audio-player-frame {
  width: 100%;
  min-height: 410px;
  border: 0;
  display: block;
  background: #07141D;
}

@media (max-width: 940px) {
  .audio-demo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .audio-player-top {
    flex-wrap: wrap;
  }

  .audio-player-top span:last-child {
    width: 100%;
    margin-left: 20px;
  }

  .audio-player-frame {
    min-height: 360px;
  }
}


.audio-player-full {
  margin-top: 38px;
}

.audio-player-frame-full {
  width: 100%;
  min-height: 540px;
}

.audio-demo-copy-full {
  max-width: 980px;
  margin: 28px auto 0;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: 0 16px 45px rgba(0, 95, 152, .06);
  padding: 32px;
  text-align: center;
}

.audio-demo-copy-full h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.audio-demo-copy-full p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.live-benefits-centered {
  max-width: 820px;
  margin: 24px auto 28px;
  text-align: left;
}

.live-benefits-centered li {
  font-size: 16px;
}

.hero-buttons-centered {
  justify-content: center;
}

@media (max-width: 940px) {
  .audio-player-frame-full {
    min-height: 460px;
  }

  .audio-demo-copy-full {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .audio-player-frame-full {
    min-height: 360px;
  }

  .audio-demo-copy-full p {
    font-size: 16px;
  }

  .live-benefits-centered li {
    font-size: 15px;
  }
}


.audio-player-cropped {
  overflow: hidden;
}

.audio-player-cropped .audio-player-top {
  border-bottom: 1px solid var(--border);
}

.audio-player-frame-cropped {
  width: 100%;
  height: 106px;
  min-height: 106px;
  max-height: 106px;
  border: 0;
  display: block;
  overflow: hidden;
  background: transparent;
}

.audio-player-cropped .live-player-note {
  border-top: 1px solid var(--border);
}

@media (max-width: 940px) {
  .audio-player-frame-cropped {
    height: 102px;
    min-height: 102px;
    max-height: 102px;
  }
}

@media (max-width: 640px) {
  .audio-player-frame-cropped {
    height: 96px;
    min-height: 96px;
    max-height: 96px;
  }
}


.plan-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0, 95, 152, .10);
}

.plan-card-featured {
  border-color: rgba(248, 96, 32, .38);
  box-shadow: 0 24px 58px rgba(248, 96, 32, .10);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(248, 96, 32, .12);
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.plan-label {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

html.dark .plan-label { color: #7ab7ff; }

.plan-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.1;
}

.plan-prices {
  display: grid;
  gap: 10px;
  margin: 8px 0 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(0,95,152,.04), rgba(248,96,32,.03));
}

.plan-prices span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.plan-prices strong {
  color: var(--text);
  font-size: 20px;
  font-weight: 950;
}

.plan-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.plan-specs span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.44);
  text-align: center;
}

html.dark .plan-specs span {
  background: rgba(255,255,255,.04);
}

.plan-specs strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.plan-specs small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-feature-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.plan-feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  line-height: 1.55;
  font-size: 15px;
}

.plan-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 950;
}

.plan-card-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

@media (max-width: 1120px) {
  .plan-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .plan-card {
    padding: 22px;
  }

  .plan-prices {
    padding: 14px 16px;
  }

  .plan-prices strong {
    font-size: 18px;
  }

  .plan-specs {
    grid-template-columns: 1fr;
  }

  .plan-feature-list li {
    font-size: 14px;
  }
}


.cdn-note {
  max-width: 980px;
  margin: 28px auto 0;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,95,152,.06), rgba(248,96,32,.05));
  text-align: center;
}

.cdn-note strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 8px;
}

.cdn-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}


.plan-specs-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0, 95, 152, .10);
}

.portfolio-card-top {
  margin-bottom: 12px;
}

.portfolio-label {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

html.dark .portfolio-label { color: #7ab7ff; }

.portfolio-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
}

.portfolio-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.portfolio-card .full {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

@media (max-width: 1120px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}


.home-plans-section .section-heading {
  max-width: 860px;
}

.home-plans-section .plan-cards-grid {
  margin-top: 36px;
}

.home-plans-section .plan-card h3 {
  font-size: clamp(28px, 2.8vw, 44px);
}

.home-plans-section .plan-prices strong {
  font-size: 22px;
}


/* v54: Radio player clean crop - removes the white internal area shown by the embedded player */
.audio-player-clean {
  background: var(--card);
  overflow: hidden;
}

.audio-player-clean .audio-player-top {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.audio-player-frame-clean {
  width: 100%;
  height: 82px;
  min-height: 82px;
  max-height: 82px;
  border: 0;
  display: block;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.audio-player-clean .live-player-note {
  margin: 0;
  border-top: 1px solid var(--border);
  background: var(--card);
}

/* Stronger specificity to override older full-height iframe values */
.audio-player-card.audio-player-clean iframe.audio-player-frame-clean,
.audio-player-cropped iframe.audio-player-frame-clean,
.audio-player-full iframe.audio-player-frame-clean {
  height: 82px !important;
  min-height: 82px !important;
  max-height: 82px !important;
}

@media (max-width: 940px) {
  .audio-player-card.audio-player-clean iframe.audio-player-frame-clean,
  .audio-player-cropped iframe.audio-player-frame-clean,
  .audio-player-full iframe.audio-player-frame-clean {
    height: 82px !important;
    min-height: 82px !important;
    max-height: 82px !important;
  }
}

@media (max-width: 640px) {
  .audio-player-card.audio-player-clean iframe.audio-player-frame-clean,
  .audio-player-cropped iframe.audio-player-frame-clean,
  .audio-player-full iframe.audio-player-frame-clean {
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
  }
}


/* v57: testimonial carousel */
.testimonial-carousel {
  position: relative;
  margin-top: 48px;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 6px 18px;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel .testimonial-card {
  scroll-snap-align: start;
  min-width: 0;
  min-height: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  box-shadow: var(--shadow);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.06);
  border-color: rgba(248, 96, 32, .45);
  background: rgba(248, 96, 32, .08);
}

.carousel-btn-prev {
  left: -22px;
}

.carousel-btn-next {
  right: -22px;
}

@media (min-width: 900px) {
  .testimonial-track {
    grid-auto-columns: calc((100% - 66px) / 4);
  }
}

@media (max-width: 899px) {
  .testimonial-track {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

  .carousel-btn-prev {
    left: -10px;
  }

  .carousel-btn-next {
    right: -10px;
  }
}

@media (max-width: 620px) {
  .testimonial-track {
    grid-auto-columns: 92%;
  }

  .carousel-btn {
    display: none;
  }
}





/* =========================================================
   Global Hostlive v70 - refinamiento comercial y confianza
   ========================================================= */

.hero-copy .lead {
  max-width: 720px;
}

.home-plans-section .section-heading p {
  max-width: 760px;
}

.authority-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 30px;
}

.authority-bar span {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px 18px 18px 46px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 14px 34px rgba(0,95,152,.06);
}

.authority-bar span::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(248,96,32,.10);
}

.use-cases-section {
  background: var(--bg);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.use-case-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

html.dark .use-case-card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
}

.use-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(248,96,32,.32);
  box-shadow: 0 22px 54px rgba(0,95,152,.10);
}

.use-case-card strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.use-case-card span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.access-section {
  padding-top: 66px;
  padding-bottom: 66px;
}

.access-grid a {
  min-height: 92px;
}

.contact-mini a,
.contact-mini span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color: white;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.contact-mini a:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-1px);
}

.footer-grid > div:nth-child(4) a {
  word-break: break-word;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .authority-bar,
  .use-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .authority-bar,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .authority-bar span {
    min-height: auto;
  }

  .use-case-card {
    min-height: auto;
  }

  .contact-mini {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-mini a,
  .contact-mini span {
    width: 100%;
  }
}

/* ==========================================================
   v70.1 - Restauración de microanimaciones en "Para diferentes proyectos"
   Mantiene la base comercial de v70 y recupera la capa visual de v69.
   ========================================================== */
.audience-cards div {
  --audience-glow: rgba(63, 146, 201, .14);
  --audience-orange-glow: rgba(248, 96, 32, .22);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
  will-change: transform;
}

.audience-cards.reveal div {
  opacity: 0;
  transform: translateY(18px) scale(.985);
}

.audience-cards.visible div {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-property: opacity, transform, box-shadow, border-color, background;
  transition-duration: .55s, .55s, .28s, .28s, .28s;
  transition-timing-function: cubic-bezier(.2, .7, .2, 1), cubic-bezier(.2, .7, .2, 1), ease, ease, ease;
}

.audience-cards.visible div:nth-child(1) { transition-delay: .02s; }
.audience-cards.visible div:nth-child(2) { transition-delay: .08s; }
.audience-cards.visible div:nth-child(3) { transition-delay: .14s; }
.audience-cards.visible div:nth-child(4) { transition-delay: .20s; }
.audience-cards.visible div:nth-child(5) { transition-delay: .26s; }
.audience-cards.visible div:nth-child(6) { transition-delay: .32s; }

.audience-cards div:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(63, 146, 201, .34);
  box-shadow: 0 24px 70px rgba(0, 95, 150, .13);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  transition-delay: 0s !important;
}

html.dark .audience-cards div:hover {
  background: linear-gradient(180deg, rgba(17,40,55,.98), rgba(9,26,38,.94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.audience-cards div::before {
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.audience-cards div:hover::before {
  transform: scale(1.08);
  background: rgba(63, 146, 201, .16);
  box-shadow: 0 12px 30px var(--audience-glow);
}

.audience-cards div::after {
  z-index: 1;
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

/* Radios online: barras de audio / señal en vivo */
.audience-cards div:nth-child(1)::after {
  width: 6px;
  height: 20px;
  border-radius: 999px;
  top: 31px;
  left: 34px;
  box-shadow: 10px -7px 0 var(--orange), 20px -2px 0 var(--orange);
  animation: ghlRadioBars 1.3s ease-in-out infinite alternate;
}
.audience-cards div:nth-child(1):hover::after {
  animation-duration: .75s;
}

/* Iglesias: halo sereno de transmisión / comunidad */
.audience-cards div:nth-child(2)::after {
  animation: ghlSoftHalo 2.6s ease-out infinite;
}
.audience-cards div:nth-child(2):hover::after {
  box-shadow: 0 0 0 10px rgba(248,96,32,.10), 0 0 28px rgba(248,96,32,.24);
}

/* Empresas: crecimiento y estructura corporativa */
.audience-cards div:nth-child(3)::after {
  width: 28px;
  height: 18px;
  border-radius: 3px;
  top: 31px;
  left: 29px;
  background: transparent;
  border-left: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  transform: skew(-12deg);
  animation: ghlBusinessRise 2.2s ease-in-out infinite;
}
.audience-cards div:nth-child(3):hover::after {
  transform: skew(-12deg) translate(3px, -3px);
}

/* Academias: progreso de aprendizaje */
.audience-cards div:nth-child(4)::after {
  width: 32px;
  height: 9px;
  border-radius: 999px;
  top: 37px;
  left: 27px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 48%, rgba(248,96,32,.22) 48%, rgba(248,96,32,.22) 100%);
  background-size: 220% 100%;
  animation: ghlLearningProgress 2.4s ease-in-out infinite;
}
.audience-cards div:nth-child(4):hover::after {
  animation-duration: 1.25s;
}

/* Eventos: pulso tipo directo / spotlight */
.audience-cards div:nth-child(5)::after {
  width: 16px;
  height: 16px;
  top: 33px;
  left: 33px;
  box-shadow: 0 0 0 0 rgba(248,96,32,.18), 0 0 18px rgba(248,96,32,.18);
  animation: ghlEventPulse 1.9s ease-out infinite;
}
.audience-cards div:nth-child(5):hover::after {
  box-shadow: 0 0 0 12px rgba(248,96,32,.12), 0 0 28px rgba(248,96,32,.28);
}

/* Creadores: chispa creativa */
.audience-cards div:nth-child(6)::after {
  width: 18px;
  height: 18px;
  top: 32px;
  left: 32px;
  border-radius: 5px;
  clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
  animation: ghlCreatorSpark 2.8s ease-in-out infinite;
}
.audience-cards div:nth-child(6):hover::after {
  transform: rotate(20deg) scale(1.18);
}

@keyframes ghlRadioBars {
  0% { transform: scaleY(.55); opacity: .82; }
  55% { transform: scaleY(1.18); opacity: 1; }
  100% { transform: scaleY(.82); opacity: .92; }
}

@keyframes ghlSoftHalo {
  0% { box-shadow: 0 0 0 0 rgba(248,96,32,.22), 0 0 0 0 rgba(248,96,32,.10); }
  70% { box-shadow: 0 0 0 13px rgba(248,96,32,0), 0 0 22px rgba(248,96,32,.18); }
  100% { box-shadow: 0 0 0 0 rgba(248,96,32,0), 0 0 0 0 rgba(248,96,32,0); }
}

@keyframes ghlBusinessRise {
  0%, 100% { transform: skew(-12deg) translate(0, 0); opacity: .92; }
  50% { transform: skew(-12deg) translate(3px, -4px); opacity: 1; }
}

@keyframes ghlLearningProgress {
  0% { background-position: 100% 0; opacity: .84; }
  50% { background-position: 0 0; opacity: 1; }
  100% { background-position: 100% 0; opacity: .9; }
}

@keyframes ghlEventPulse {
  0% { box-shadow: 0 0 0 0 rgba(248,96,32,.25), 0 0 18px rgba(248,96,32,.18); }
  70% { box-shadow: 0 0 0 14px rgba(248,96,32,0), 0 0 30px rgba(248,96,32,.24); }
  100% { box-shadow: 0 0 0 0 rgba(248,96,32,0), 0 0 18px rgba(248,96,32,.08); }
}

@keyframes ghlCreatorSpark {
  0%, 100% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 0 rgba(248,96,32,0)); }
  45% { transform: rotate(12deg) scale(1.16); filter: drop-shadow(0 0 10px rgba(248,96,32,.28)); }
  70% { transform: rotate(-8deg) scale(1.05); }
}

@media (max-width: 720px) {
  .audience-cards div:hover {
    transform: translateY(-5px) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-cards.reveal div,
  .audience-cards.visible div,
  .audience-cards div,
  .audience-cards div::before,
  .audience-cards div::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
  .audience-cards.reveal div,
  .audience-cards.visible div {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* v70.6 — Animaciones visibles en páginas internas */
.service-summary-card {
  position: relative;
  overflow: hidden;
}
.service-summary-card::after {
  content: "";
  position: absolute;
  inset: auto -22% -28% auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(63,146,201,.14), transparent 62%);
  pointer-events: none;
}
.internal-service-animation {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  min-height: 142px;
  border: 1px solid rgba(201,212,225,.76);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 18%, rgba(249,96,32,.10), transparent 26%),
    radial-gradient(circle at 86% 20%, rgba(63,146,201,.14), transparent 28%),
    linear-gradient(180deg, rgba(245,250,253,.84), rgba(255,255,255,.78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 18px 48px rgba(15,23,42,.06);
  overflow: hidden;
}
html.dark .internal-service-animation {
  border-color: rgba(101,132,159,.34);
  background:
    radial-gradient(circle at 18% 20%, rgba(249,96,32,.13), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(63,146,201,.18), transparent 30%),
    linear-gradient(180deg, rgba(8,25,37,.88), rgba(5,18,28,.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 58px rgba(0,0,0,.22);
}
.live-badge {
  position: absolute;
  left: 18px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(201,212,225,.72);
  color: var(--text);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -.01em;
  backdrop-filter: blur(12px);
}
html.dark .live-badge { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.10); }
.live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(249,96,32,.35);
  animation: ghlPulseDot 1.65s ease-out infinite;
}
@keyframes ghlPulseDot { 0% { box-shadow: 0 0 0 0 rgba(249,96,32,.38); } 70% { box-shadow: 0 0 0 11px rgba(249,96,32,0); } 100% { box-shadow: 0 0 0 0 rgba(249,96,32,0); } }

.internal-eq-bars {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 76px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
}
.internal-eq-bars span {
  width: 12px;
  flex: 0 0 12px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, #7cc7f7, #3f92c9 55%, var(--blue));
  box-shadow: 0 8px 18px rgba(0,95,150,.10);
  transform-origin: bottom;
  animation: ghlEqFine 1.35s ease-in-out infinite;
}
.internal-eq-bars span:nth-child(1){height:18%;animation-delay:.04s}
.internal-eq-bars span:nth-child(2){height:28%;animation-delay:.08s}
.internal-eq-bars span:nth-child(3){height:46%;animation-delay:.13s}
.internal-eq-bars span:nth-child(4){height:66%;animation-delay:.18s}
.internal-eq-bars span:nth-child(5){height:44%;animation-delay:.22s}
.internal-eq-bars span:nth-child(6){height:34%;animation-delay:.27s}
.internal-eq-bars span:nth-child(7){height:52%;animation-delay:.31s}
.internal-eq-bars span:nth-child(8){height:78%;animation-delay:.36s}
.internal-eq-bars span:nth-child(9){height:60%;animation-delay:.41s}
.internal-eq-bars span:nth-child(10){height:40%;animation-delay:.46s}
.internal-eq-bars span:nth-child(11){height:70%;animation-delay:.51s}
.internal-eq-bars span:nth-child(12){height:54%;animation-delay:.56s}
.internal-eq-bars span:nth-child(13){height:38%;animation-delay:.60s}
.internal-eq-bars span:nth-child(14){height:26%;animation-delay:.65s}
.internal-eq-bars span:nth-child(15){height:18%;animation-delay:.70s}
@keyframes ghlEqFine { 0%,100%{ transform: scaleY(.78); opacity:.74; } 50%{ transform: scaleY(1.15); opacity:1; } }
.radio-wave-orbit {
  position:absolute;
  right:26px;
  top:40px;
  width:72px;
  height:52px;
}
.radio-wave-orbit::before {
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--orange);
  transform:translate(-50%,-50%);
  box-shadow: 0 0 0 6px rgba(249,96,32,.08);
}
.radio-wave-orbit i {
  position:absolute;
  top:50%;
  left:50%;
  border-radius:50%;
  border: 1.5px solid rgba(249,96,32,.55);
  border-top-color: transparent;
  border-bottom-color: transparent;
  transform: translate(-50%,-50%) scale(.86);
  animation: ghlSoundWave 1.9s ease-in-out infinite;
}
.radio-wave-orbit i:nth-child(1){ width:22px; height:22px; }
.radio-wave-orbit i:nth-child(2){ width:36px; height:36px; animation-delay:.28s; }
.radio-wave-orbit i:nth-child(3){ width:50px; height:50px; animation-delay:.56s; }
@keyframes ghlSoundWave {
  0%,100% { opacity:.42; transform:translate(-50%,-50%) scale(.94); }
  50% { opacity:.95; transform:translate(-50%,-50%) scale(1.02); }
}

.video-frame-mini { position:absolute; left:24px; right:24px; bottom:22px; height:70px; border-radius:20px; border:1px solid rgba(63,146,201,.34); background: linear-gradient(135deg, rgba(63,146,201,.22), rgba(255,255,255,.08)); overflow:hidden; }
.video-frame-mini::before { content:""; position:absolute; inset:10px; border-radius:16px; border:1px solid rgba(255,255,255,.28); }
.play-dot { position:absolute; left:50%; top:50%; width:0; height:0; border-top:11px solid transparent; border-bottom:11px solid transparent; border-left:17px solid var(--orange); transform:translate(-38%,-50%); z-index:2; filter: drop-shadow(0 8px 12px rgba(249,96,32,.22)); }
.video-scan { position:absolute; left:-30%; top:0; width:30%; height:100%; background:linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent); animation: ghlScan 2.4s linear infinite; }
@keyframes ghlScan { to { left:110%; } }
.video-signal-lines { position:absolute; right:28px; top:24px; display:flex; gap:5px; align-items:center; }
.video-signal-lines i { width:7px; height:20px; border-radius:99px; background:var(--orange); animation: ghlSignal 1.2s ease-in-out infinite; }
.video-signal-lines i:nth-child(2){height:32px;animation-delay:.16s}.video-signal-lines i:nth-child(3){height:24px;animation-delay:.32s}
@keyframes ghlSignal { 0%,100%{transform:scaleY(.62);opacity:.55}50%{transform:scaleY(1);opacity:1} }

.server-stack { position:absolute; left:24px; right:24px; bottom:22px; display:grid; gap:10px; }
.server-stack i { height:24px; border-radius:12px; background:linear-gradient(90deg, rgba(0,95,150,.16), rgba(63,146,201,.34)); border:1px solid rgba(63,146,201,.24); position:relative; overflow:hidden; }
.server-stack i::after { content:""; position:absolute; right:14px; top:50%; width:8px; height:8px; border-radius:50%; background:#15b981; transform:translateY(-50%); animation: ghlBlink 1.6s ease-in-out infinite; }
.server-stack i:nth-child(2)::after{animation-delay:.35s}.server-stack i:nth-child(3)::after{animation-delay:.7s}
@keyframes ghlBlink { 0%,100%{opacity:.35; box-shadow:none;} 50%{opacity:1; box-shadow:0 0 14px rgba(21,185,129,.42);} }
.speed-line { position:absolute; left:24px; right:24px; top:66px; height:8px; border-radius:99px; background:rgba(201,212,225,.62); overflow:hidden; }
.speed-line span { display:block; height:100%; width:45%; border-radius:inherit; background:linear-gradient(90deg, var(--blue), #65b9ea); animation: ghlSpeed 2.2s ease-in-out infinite; }
@keyframes ghlSpeed { 0%{width:28%;} 50%{width:88%;} 100%{width:56%;} }

.browser-wireframe { position:absolute; inset:58px 22px 22px; border-radius:18px; border:1px solid rgba(63,146,201,.28); background:rgba(255,255,255,.34); overflow:hidden; }
html.dark .browser-wireframe { background:rgba(255,255,255,.045); }
.browser-wireframe b { display:block; height:22px; background:linear-gradient(90deg, rgba(63,146,201,.22), rgba(249,96,32,.14)); }
.browser-wireframe i { display:block; height:12px; margin:12px 16px; border-radius:99px; background:rgba(63,146,201,.20); animation: ghlWire 2s ease-in-out infinite; }
.browser-wireframe i:nth-child(3){width:72%;animation-delay:.25s}.browser-wireframe i:nth-child(4){width:52%;animation-delay:.5s}
.browser-wireframe span { position:absolute; right:18px; bottom:18px; width:54px; height:34px; border-radius:12px; background:rgba(249,96,32,.25); }
.cursor-pulse { position:absolute; right:56px; bottom:44px; width:18px; height:18px; border-radius:50%; background:var(--orange); animation: ghlCursor 2.1s ease-in-out infinite; }
@keyframes ghlWire { 0%,100%{opacity:.45; transform:scaleX(.74); transform-origin:left;} 50%{opacity:1; transform:scaleX(1);} }
@keyframes ghlCursor { 0%,100%{transform:translate(0,0) scale(.8); box-shadow:0 0 0 0 rgba(249,96,32,.28);} 50%{transform:translate(-42px,-22px) scale(1); box-shadow:0 0 0 10px rgba(249,96,32,0);} }

.phone-pair {
  position:absolute;
  left:50%;
  bottom:18px;
  width:170px;
  height:112px;
  transform:translateX(-50%);
}
.phone-pair i {
  position:absolute;
  bottom:0;
  width:68px;
  height:112px;
  border-radius:20px;
  border: 2px solid rgba(255,255,255,.48);
  background: linear-gradient(180deg, rgba(30,67,102,.16), rgba(18,53,84,.46));
  box-shadow: 0 18px 34px rgba(0,95,150,.12), inset 0 1px 0 rgba(255,255,255,.24);
  animation: ghlPhoneFloat 3s ease-in-out infinite;
  overflow: hidden;
}
.phone-pair i:first-child { left:18px; transform:rotate(-4deg); }
.phone-pair i:last-child { right:18px; transform:rotate(4deg); animation-delay:.35s; }
.phone-pair i::before {
  content:"";
  position:absolute;
  inset:8px;
  border-radius:14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88) 0 12px, rgba(230,239,247,.92) 12px 100%),
    linear-gradient(180deg, rgba(63,146,201,.14), rgba(63,146,201,.08));
  box-shadow: inset 0 0 0 1px rgba(63,146,201,.10);
}
.phone-pair i::after {
  content:"";
  position:absolute;
  left:50%;
  top:12px;
  width:18px;
  height:3px;
  border-radius:99px;
  background: rgba(67,83,104,.48);
  transform: translateX(-50%);
  box-shadow:
    -10px 18px 0 0 rgba(63,146,201,.18),
    -10px 28px 0 0 rgba(63,146,201,.12),
    -10px 38px 0 0 rgba(63,146,201,.16),
    -10px 52px 0 0 rgba(249,96,32,.18),
    8px 18px 0 0 rgba(249,96,32,.14),
    8px 28px 0 0 rgba(63,146,201,.15),
    8px 38px 0 0 rgba(63,146,201,.10),
    8px 52px 0 0 rgba(63,146,201,.18);
}
.notification-dot {
  position:absolute;
  right:22px;
  top:48px;
  width:58px;
  height:42px;
  border-radius:16px;
  border:1px solid rgba(201,212,225,.76);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 26px rgba(15,23,42,.08);
  animation: ghlNotifyCard 2.2s ease-in-out infinite;
}
html.dark .notification-dot {
  background: rgba(16,31,45,.82);
  border-color: rgba(101,132,159,.34);
}
.notification-dot::before {
  content:"";
  position:absolute;
  left:13px;
  top:11px;
  width:18px;
  height:18px;
  border-radius:50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(249,96,32,.30);
  animation: ghlNotifyPing 1.8s ease-out infinite;
}
.notification-dot::after {
  content:"";
  position:absolute;
  left:36px;
  top:13px;
  width:10px;
  height:4px;
  border-radius:99px;
  background: rgba(63,146,201,.40);
  box-shadow: 0 8px 0 0 rgba(63,146,201,.24);
}
@keyframes ghlPhoneFloat { 0%,100%{ translate:0 0; } 50%{ translate:0 -8px; } }
@keyframes ghlNotifyCard { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-4px); } }
@keyframes ghlNotifyPing { 0%{box-shadow:0 0 0 0 rgba(249,96,32,.35)} 75%{box-shadow:0 0 0 13px rgba(249,96,32,0)} 100%{box-shadow:0 0 0 0 rgba(249,96,32,0)} }

.node-map { position:absolute; inset:44px 26px 20px; }
.node-map i { position:absolute; width:20px; height:20px; border-radius:50%; background:linear-gradient(180deg, #4fa2d7, var(--blue)); box-shadow:0 0 0 7px rgba(63,146,201,.10); animation: ghlNode 1.8s ease-in-out infinite; }
.node-map i:nth-child(1){left:8%; top:52%;}.node-map i:nth-child(2){left:38%; top:16%; animation-delay:.2s}.node-map i:nth-child(3){left:65%; top:62%; animation-delay:.4s}.node-map i:nth-child(4){right:4%; top:28%; animation-delay:.6s}
.node-map span { position:absolute; inset:18px 18px 22px; background:linear-gradient(120deg, transparent 0 28%, rgba(63,146,201,.28) 29% 31%, transparent 32% 49%, rgba(249,96,32,.24) 50% 52%, transparent 53% 72%, rgba(63,146,201,.20) 73% 75%, transparent 76%); opacity:.85; animation: ghlMap 2.8s ease-in-out infinite; }
@keyframes ghlNode { 0%,100%{transform:scale(.82); opacity:.72} 50%{transform:scale(1.08); opacity:1} }
@keyframes ghlMap { 0%,100%{opacity:.45; filter:blur(.2px)} 50%{opacity:1; filter:blur(0)} }

@media (max-width: 720px) {
  .internal-service-animation { min-height: 128px; margin-top: 22px; border-radius: 24px; }
  .internal-eq-bars { height: 58px; }
}
@media (prefers-reduced-motion: reduce) {
  .internal-service-animation *, .internal-service-animation *::before, .internal-service-animation *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* v70.7 — Corrección de destello al navegar hacia páginas internas */
html.ghl-prepaint,
html.ghl-prepaint body {
  background: var(--bg);
}

.internal-service-animation {
  opacity: 0;
  transform: translateY(8px);
  animation: ghlInternalSoftEnter .62s cubic-bezier(.22,1,.36,1) .12s forwards;
  will-change: opacity, transform;
  background:
    radial-gradient(circle at 16% 18%, rgba(249,96,32,.055), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(63,146,201,.075), transparent 30%),
    linear-gradient(180deg, rgba(248,251,253,.72), rgba(255,255,255,.68)) !important;
}

html.dark .internal-service-animation {
  background:
    radial-gradient(circle at 18% 20%, rgba(249,96,32,.08), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(63,146,201,.10), transparent 32%),
    linear-gradient(180deg, rgba(8,25,37,.94), rgba(5,18,28,.90)) !important;
}

@keyframes ghlInternalSoftEnter {
  to { opacity: 1; transform: translateY(0); }
}

.video-scan {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent) !important;
  opacity: .62;
  animation-delay: .45s !important;
}
html.dark .video-scan {
  background: linear-gradient(90deg, transparent, rgba(124,199,247,.10), transparent) !important;
  opacity: .52;
}

.live-badge,
.video-signal-lines,
.radio-wave-orbit,
.internal-eq-bars,
.video-frame-mini,
.server-stack,
.speed-line,
.browser-wireframe,
.phone-pair,
.node-map {
  animation-delay: .18s;
}

.service-summary-card::after {
  opacity: .55;
}

@media (prefers-reduced-motion: reduce) {
  .internal-service-animation {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}


/* v70.8 — Limpieza de labels sueltos en animaciones internas */
.internal-service-animation .live-badge {
  display: none !important;
}

.internal-service-animation {
  display: block;
  contain: layout paint;
}

.service-summary-card .use-case-chips + .internal-service-animation {
  margin-top: 28px;
}

@media (max-width: 720px) {
  .internal-service-animation {
    margin-top: 22px;
    min-height: 118px;
  }
}


/* v70.10 — Ajustes finales de producción */
.footer-contact-list {
  display: grid;
  gap: 10px;
}
.footer .footer-contact-list a:not(.brand) {
  margin-bottom: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.hp-field,
.honeypot,
[aria-hidden="true"] input[name="company_website"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-grid [aria-hidden="true"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}


/* v70.11 — Cookie configuration modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.cookie-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 29, .58);
  backdrop-filter: blur(10px);
}
.cookie-modal-panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(90vh, 760px);
  overflow: auto;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--card);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}
.cookie-modal-panel h2 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
}
.cookie-modal-panel p {
  color: var(--muted);
  line-height: 1.7;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--section);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}
.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0,95,152,.05), rgba(248,96,32,.04));
}
.cookie-setting-row strong,
.cookie-setting-row span {
  display: block;
}
.cookie-setting-row > div span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.cookie-required {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(21,185,129,.12);
  color: #047857;
  font-size: 12px;
  font-weight: 900;
}
html.dark .cookie-required { color: #6ee7b7; }
.cookie-toggle-row { cursor: pointer; }
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cookie-toggle span {
  position: relative;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: rgba(100,116,139,.28);
  box-shadow: inset 0 0 0 1px var(--border);
  transition: background .22s ease;
}
.cookie-toggle span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(15,23,42,.18);
  transition: transform .22s ease;
}
.cookie-toggle input:checked + span {
  background: linear-gradient(135deg, var(--blue), var(--orange));
}
.cookie-toggle input:checked + span::after {
  transform: translateX(26px);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.cookie-modal-links {
  margin-top: 18px;
  font-size: 14px;
}
.cookie-modal-links a {
  color: var(--blue);
  font-weight: 850;
}
html.dark .cookie-modal-links a { color: #7cc7f7; }
body.cookie-modal-open { overflow: hidden; }
@media (max-width: 640px) {
  .cookie-modal-panel { padding: 26px 20px; border-radius: 26px; }
  .cookie-setting-row { align-items: flex-start; flex-direction: column; }
  .cookie-modal-actions { display: grid; grid-template-columns: 1fr; }
}
