:root {
  --blue: #2f8fd4;
  --blue-deep: #1f6fb8;
  --blue-soft: #4aa6e8;
  --blue-glow: #74c8ff;
  --nav-blue: linear-gradient(180deg, rgba(39,132,202,0.98) 0%, rgba(31,111,184,0.97) 55%, rgba(25,93,158,0.96) 100%);
  --bg: linear-gradient(180deg, #2d8fd7 0%, #2378bf 16%, #1b5f9d 34%, #12385f 58%, #0a1422 78%, #070b12 100%);
  --panel: linear-gradient(180deg, rgba(18,40,69,0.88), rgba(10,20,36,0.94));
  --panel-soft: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  --border: rgba(255,255,255,0.12);

  --muted: rgba(255,255,255,0.74);
  --shadow: 0 18px 50px rgba(3, 22, 45, 0.18);
}
* { 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);
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }
.containerx { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,0.10);
  background: var(--nav-blue); backdrop-filter: blur(10px);
}
.navx-shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 84px; }
.brand img { height: 48px; width: auto; }
.navx-links { display: flex; align-items: center; gap: 26px; }
.navx-links > a, .navx-dropdown-trigger {
  color: rgba(255,255,255,0.92); font-size: 16px; background: transparent; border: 0; cursor: pointer; padding: 8px 0;
}
.navx-links > a.is-active, .navx-dropdown-trigger.is-active { color: white; font-weight: 700; }
.navx-dropdown { position: relative; }
.navx-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 220px; padding: 10px; margin-top: 8px;
  background: rgba(12,24,42,0.96); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow);
}
.navx-dropdown:hover .navx-dropdown-menu { display: grid; }
.navx-dropdown-menu a { padding: 10px 12px; border-radius: 12px; color: var(--muted); }
.navx-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: white; }
.client-btn, .primary-btn, .secondary-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 14px; font-weight: 700;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.client-btn:hover, .primary-btn:hover, .secondary-btn:hover { transform: translateY(-1px); }
.client-btn {
  padding: 12px 18px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.12);
}
.mobile-toggle { display: none; background: transparent; border: 0; color: white; font-size: 28px; }

.primary-btn {
  padding: 15px 22px; color: white; border: 1px solid rgba(255,255,255,0.20);
  background: linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06)), linear-gradient(135deg, #3ea0e2 0%, #2f8fd4 45%, #1f6fb8 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.secondary-btn { padding: 15px 22px; color: white; border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.07); backdrop-filter: blur(6px); }
.section { padding: 80px 0; }
.section-tight { padding-top: 50px; margin-top: -36px; position: relative; z-index: 2; }
.section-title { text-align: center; margin-bottom: 36px; }
.section-title h2 { margin: 0; font-size: clamp(32px, 4vw, 50px); letter-spacing: -0.03em; }
.section-title p { margin: 12px auto 0; max-width: 860px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.cardx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cardx {
  border: 1px solid rgba(255,255,255,0.14); border-radius: 26px; overflow: hidden;
  background: var(--panel-soft); box-shadow: var(--shadow); backdrop-filter: blur(12px);
}
.cardx:hover { transform: translateY(-4px); transition: transform .2s ease; }
.cardx .price-strip { padding: 14px 18px; background: rgba(47,143,212,0.14); border-bottom: 1px solid var(--border); color: var(--muted); }
.cardx .body { padding: 28px; }
.cardx .body img { height: 68px; width: auto; }
.cardx h3 { margin: 20px 0 12px; font-size: 30px; line-height: 1.1; }
.cardx p { margin: 0; color: var(--muted); line-height: 1.75; }
.feature-band { border-top: 1px solid rgba(255,255,255,0.10); border-bottom: 1px solid rgba(255,255,255,0.10); background: linear-gradient(180deg, rgba(23,55,95,0.36), rgba(12,24,42,0.68)); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  border: 1px solid rgba(255,255,255,0.10); border-radius: 24px; padding: 28px; text-align: center;
  background: var(--panel); box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}
.feature img { height: 56px; width: auto; margin: 0 auto; }
.feature h3 { margin: 18px 0 10px; font-size: 22px; }
.feature p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 15px; }

.badge-loc { display: inline-flex; align-items: center; gap: 8px; }
.small-btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 16px; border-radius: 12px; background: var(--blue); font-weight: 700; }


.panelx {
  border: 1px solid var(--border); border-radius: 26px; padding: 34px; background: rgba(255,255,255,0.03);
}



.support-strip { border-top: 1px solid var(--border); background: rgba(255,255,255,0.03); }
.support-inner { padding: 48px 0; display: flex; align-items: center; justify-content: center; gap: 20px; text-align: center; flex-wrap: wrap; }
.support-inner h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); }


.site-footer { border-top: 1px solid var(--border); }
.footerx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; padding: 60px 0 34px; }
.site-footer h3 { margin-top: 0; font-size: 24px; }
.footerx-box {
  display: flex; align-items: center; gap: 12px; padding: 14px; margin-bottom: 12px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,0.03); color: var(--muted);
}
.footerx-box img { width: 24px; height: 24px; object-fit: contain; }
.footerx-bottom { text-align: center; padding: 0 0 50px; color: rgba(255,255,255,0.68); }
.footerx-bottom img { width: 44px; margin: 0 auto 18px; }
.footerx-bottom p { margin: 8px 0; }
.footerx-bottom a { color: rgba(255,255,255,0.78); }
.home-table-cta { margin-top: 16px; }
.sheet-note { margin: 18px 0 0; color: rgba(255,255,255,0.66); font-size: 14px; text-align: center; }
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cardx-grid { grid-template-columns: 1fr; }
  .footerx-grid, .two-col, .simple-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .mobile-toggle { display: block; }
  .navx-links { display: none; position: absolute; top: 84px; left: 16px; right: 16px; padding: 16px; border: 1px solid var(--border); border-radius: 22px; background: rgba(12,24,42,0.96); flex-direction: column; align-items: stretch; }
  .navx-links.is-open { display: flex; }
  .client-btn { display: none; }
  .navx-dropdown-menu { position: static; display: grid; margin-top: 10px; }
  .navx-dropdown:hover .navx-dropdown-menu { display: grid; }
  .feature-grid { grid-template-columns: 1fr; }
}

/* SEO/content refinements */
.seo-copy { max-width: 980px; margin: -12px auto 28px; color: var(--muted); font-size: 17px; line-height: 1.8; text-align: center; }
.support-inner p { margin: 8px 0 0; color: var(--muted); }

