: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: 100;
  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; }
.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 .2s ease;
}
.nav-dropdown-trigger:hover,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--blue); }
html.dark .nav-dropdown-trigger:hover,
html.dark .nav-dropdown:focus-within .nav-dropdown-trigger,
html.dark .nav-dropdown:hover .nav-dropdown-trigger { color: white; }
.nav-dropdown-trigger span { font-size: 10px; opacity: .7; transform: translateY(1px); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px; padding: 10px; border: 1px solid var(--border);
  border-radius: 22px; background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(15,23,42,.14);
  backdrop-filter: blur(18px); opacity: 0; visibility: hidden;
  pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
html.dark .nav-dropdown-menu { background: rgba(11,30,43,.96); box-shadow: 0 24px 70px rgba(0,0,0,.34); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.nav-dropdown-menu a {
  display: block; padding: 12px 14px; border-radius: 14px;
  color: var(--text); font-weight: 850; font-size: 14px;
}
.nav-dropdown-menu a:hover { background: var(--section); color: var(--blue); }
html.dark .nav-dropdown-menu a { color: var(--text); }
html.dark .nav-dropdown-menu a:hover { background: rgba(255,255,255,.07); color: white; }

.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;
  }
}

/* v68 - Ajustes visuales de respiración y equilibrio (2026-05-23)
   Objetivo: mantener la home completa, pero con más aire visual y menos sensación de bloque cargado. */

/* Más separación entre el texto de "Soluciones en acción" y las imágenes */
.visual-showcase .section-heading {
  max-width: 820px;
  margin-bottom: 0;
}

.visual-showcase .section-heading p {
  max-width: 820px;
  line-height: 1.78;
}

.visual-showcase .section-heading + .visual-showcase-grid {
  margin-top: 44px;
}

.visual-showcase-grid {
  gap: 28px;
  align-items: stretch;
}

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

.visual-card-copy p {
  line-height: 1.72;
}

/* Pequeño ajuste de ritmo para que la home conserve fuerza sin verse pesada */
.seo-difference {
  padding-bottom: 66px;
}

.trust.section-tight {
  padding-bottom: 78px;
}

.services-grid,
.pricing-grid,
.blog-grid,
.access-grid,
.steps-grid {
  row-gap: 24px;
}

/* Tarjetas ligeramente más ligeras visualmente */
.service-card,
.trust-card,
.blog-card,
.step-card,
.testimonial-card,
.price-card,
.access-grid a {
  box-shadow: 0 10px 30px rgba(0, 95, 150, .055);
}

/* Blog y accesos rápidos: siguen presentes, pero con menor peso visual en la home */
#blog .blog-grid {
  margin-top: 38px;
}

#blog .blog-art {
  height: 145px;
  font-size: 46px;
}

.access-section .section-heading p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.access-grid {
  margin-top: 34px;
}

.access-grid a {
  padding: 20px;
}

/* Mejor respiración en tablets y móviles */
@media (max-width: 900px) {
  .visual-showcase .section-heading + .visual-showcase-grid {
    margin-top: 34px;
  }

  .visual-showcase-grid {
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .visual-showcase .section-heading + .visual-showcase-grid {
    margin-top: 30px;
  }

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

  #blog .blog-art {
    height: 128px;
  }

  .access-grid {
    margin-top: 28px;
  }
}

