:root {
  --bg: #1e2328;
  --surface: #262d33;
  --ink: #f0f2f5;
  --muted: #919fae;
  --line: #3a4249;
  --accent: #28bee3;
  --accent-2: #d98f3c;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glow: rgba(40,190,227,0.15);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 20% 50%, rgba(40, 190, 227, 0.06), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(217, 143, 60, 0.04), transparent 40%),
    linear-gradient(180deg, #1e2328 0%, #13171a 100%);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
.shell { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(30, 35, 40, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.lang-switcher {
  display: flex;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.lang-switcher a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}
.brand {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ink);
}
.main-nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}
.main-nav a { transition: color 0.2s; }
.main-nav a:hover { color: var(--accent); }
.hero { padding: 4rem 0 2rem; }
.hero-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 2fr 1fr;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}
h1, h2, h3 { font-family: "Space Grotesk", "Inter", system-ui, sans-serif; line-height: 1.08; margin: 0 0 0.8rem; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 18ch; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; }
.gradient-text { background: linear-gradient(135deg, #fff 0%, var(--accent) 50%, #7dd3fc 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lead { font-size: 1.15rem; max-width: 62ch; color: var(--muted); line-height: 1.7; }
.hero-subcopy { max-width: 62ch; color: var(--muted); }
.hero-panel, .card, .product-card, .spec-table, .category-list-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover, .product-card:hover, .brand-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow);
  border-color: rgba(40,190,227,0.2);
}
.solution-card { border-left: 4px solid var(--accent); padding-left: 1.4rem; }
.solution-icon { margin-bottom: 0.6rem; display: flex; align-items: center; }
.solution-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.solution-card p { font-size: 0.92rem; line-height: 1.55; color: var(--muted); margin-bottom: 0.6rem; }
.certifications-strip { background: linear-gradient(135deg, #1a3a4a 0%, #0d2833 100%); color: #fff; padding: 3rem 0; }
.certifications-strip .eyebrow { color: rgba(255,255,255,0.7); }
.certifications-strip h2 { color: #fff; }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.cert-badge { display: flex; align-items: flex-start; gap: 0.8rem; background: rgba(40, 190, 227, 0.08); border: 1px solid rgba(40, 190, 227, 0.2); border-radius: 12px; padding: 1.2rem; transition: background 0.2s; }
.cert-badge:hover { background: rgba(40, 190, 227, 0.15); }
.cert-icon { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(40, 190, 227, 0.15); border-radius: 10px; }
.cert-info { display: flex; flex-direction: column; gap: 0.2rem; }
.cert-level { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
.cert-detail { font-size: 0.85rem; opacity: 0.8; }
.hero-panel { padding: 1.4rem; display: grid; gap: 1rem; align-content: start; }
.product-filters {
  margin-bottom: 2rem;
  display: grid;
  gap: 1rem;
}
.filter-search {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.search-input {
  flex: 1;
  min-width: 220px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border, rgba(255,255,255,0.08));
  background: var(--glass, rgba(255,255,255,0.04));
  color: var(--fg, #fff);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus {
  border-color: var(--accent);
}
.search-input::placeholder {
  color: var(--muted);
}
.product-count {
  font-size: 0.9rem;
  color: var(--muted);
  white-space: nowrap;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-right: 0.25rem;
}
.filter-btn {
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border, rgba(255,255,255,0.08));
  background: var(--glass, rgba(255,255,255,0.04));
  color: var(--fg, #fff);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.filter-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 600;
}
.product-card {
  overflow: hidden;
}
.metric-value { display: block; font-size: 2.3rem; font-weight: 800; }
.metric-label, .panel-note, .product-summary, .product-category, .breadcrumbs, .spec-table td, .spec-table th { color: var(--muted); }
.hero-actions, .card-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.brand-pill {
  display: grid;
  gap: 0.2rem;
  min-width: 160px;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.brand-pill span { color: var(--muted); }
.brand-section-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin: 1.2rem 0 0.5rem; }
.brand-section-label:first-of-type { margin-top: 0; }
.partner-pill { border-color: var(--accent); border-width: 1.5px; }
.partner-pill strong { color: var(--accent); }
.why-icon { margin-bottom: 0.5rem; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.why-card p { font-size: 0.9rem; line-height: 1.55; color: var(--muted); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--accent) 0%, #1a9fd4 100%); color: #fff; font-weight: 700; box-shadow: 0 4px 16px rgba(40,190,227,0.3); }
.button.primary:hover { box-shadow: 0 8px 28px rgba(40,190,227,0.45); transform: translateY(-2px) scale(1.02); }
.button.secondary { border-color: var(--glass-border); background: var(--glass); backdrop-filter: blur(8px); color: var(--ink); }
.button.secondary:hover { border-color: var(--accent); color: var(--accent); background: rgba(40,190,227,0.08); }
.text-link { color: var(--accent); font-weight: 600; transition: opacity 0.2s; }
.text-link:hover { opacity: 0.8; text-decoration: underline; }
.section { padding: 3rem 0; }
.meta-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1rem;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.9rem;
}
.blog-meta-line {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.content-stack {
  display: grid;
  gap: 1rem;
  max-width: 68ch;
}
.content-stack h2 { margin-top: 1.5rem; font-size: 1.5rem; }
.content-stack h3 { margin-top: 1rem; font-size: 1.15rem; }
.content-stack ul, .content-stack ol { padding-left: 1.4rem; }
.content-stack li { margin-bottom: 0.4rem; line-height: 1.65; }
.content-stack blockquote { border-left: 3px solid var(--accent); padding-left: 1rem; margin: 1rem 0; font-style: italic; color: var(--muted); }
.content-stack strong { font-weight: 600; color: var(--ink); }
.content-block {
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.section-head { margin-bottom: 1.2rem; }
.card-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.card, .product-card, .category-list-card { padding: 1.2rem; }
.product-card-image,
.product-hero-image,
.blog-card-image,
.blog-hero-image,
.product-image-fallback {
  display: block;
  width: 100%;
  object-fit: contain;
  background:
    radial-gradient(circle at top right, rgba(40, 190, 227, 0.1), transparent 35%),
    linear-gradient(180deg, #2c3338 0%, #232a30 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.product-card-image,
.product-image-fallback,
.blog-card-image {
  height: 200px;
  margin-bottom: 1rem;
}
.blog-hero-image {
  max-height: 420px;
  margin-bottom: 1.2rem;
  padding: 0.4rem;
}
.product-hero-image {
  height: 320px;
}
.product-image-fallback {
  display: grid;
  place-items: center;
}
.product-image-fallback span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(11, 107, 92, 0.12);
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
}
.feature-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}
.page { padding: 2rem 0 4rem; }
.breadcrumbs { display: flex; gap: 0.5rem; font-size: 0.92rem; margin-bottom: 1.2rem; }
.product-hero {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 1.2rem;
  align-items: start;
  margin-bottom: 1.4rem;
}
.content-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 1.2rem;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.spec-table th, .spec-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(24, 32, 40, 0.08);
  text-align: left;
  vertical-align: top;
}
.quote-section { padding-top: 1rem; }
.quote-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  padding: 1.4rem;
}
.quote-form {
  display: grid;
  gap: 1rem;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #2c3338;
  color: var(--ink);
  padding: 0.8rem 0.95rem;
  font: inherit;
}
.field-block { display: grid; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
}
.form-status[data-state="error"] { color: #9d3524; }
.form-status[data-state="success"] { color: var(--accent); }
@media (max-width: 840px) {
  .hero-grid, .content-grid, .product-hero { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(30, 35, 40, 0.97);
    backdrop-filter: blur(14px);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 100;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 0.7rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .product-hero-image { height: 240px; }
  .hero { padding: 2.5rem 0 1.5rem; }
  .section { padding: 2rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .card-grid, .product-grid { grid-template-columns: 1fr; }
}
.site-footer { background: linear-gradient(180deg, #13171a 0%, #0d1012 100%); color: rgba(255,255,255,0.6); padding: 3rem 0 2rem; margin-top: 3rem; border-top: 2px solid; border-image: linear-gradient(90deg, transparent, var(--accent), transparent) 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer-brand strong { color: #fff; font-size: 1.2rem; letter-spacing: 0.06em; }
.footer-brand p { font-size: 0.85rem; margin-top: 0.3rem; }
.footer-contact { margin-top: 1rem; }
.footer-contact p { margin: 0.2rem 0; font-size: 0.85rem; }
.footer-contact a { color: var(--accent); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col-title { color: #fff; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.25rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.text-link.muted { color: rgba(255,255,255,0.35); cursor: default; }
.nav-cta { background: var(--accent); color: #fff !important; padding: 0.4rem 1rem; border-radius: 6px; font-weight: 600; }
.footer-copy { font-size: 0.75rem; opacity: 0.5; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.2rem; }

/* === Solution Page (sol-*) === */
.sol-nav { position: sticky; top: 56px; z-index: 90; background: rgba(30,35,40,0.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.sol-nav-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding: 0; }
.sol-nav-inner::-webkit-scrollbar { display: none; }
.sol-nav-link { display: inline-block; padding: 0.85rem 1.1rem; font-size: 0.88rem; font-weight: 600; color: var(--muted); white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; text-decoration: none; }
.sol-nav-link:hover { color: var(--ink); }
.sol-nav-link.active { color: var(--accent); border-bottom-color: var(--accent); }
.sol-hero { padding: 3rem 0 2rem; }
.sol-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
.sol-hero-image-wrap { display: flex; justify-content: center; }
.sol-hero-image { width: 100%; max-width: 540px; height: auto; border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.sol-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.sol-feature-card { background: var(--glass); backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 18px; padding: 1.4rem; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.sol-feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 20px var(--glow); border-color: rgba(40,190,227,0.2); }
.sol-feature-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(40,190,227,0.1); border-radius: 12px; margin-bottom: 0; }
.sol-icon-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; }
.sol-brand-logo { height: 20px; width: auto; opacity: 0.6; transition: opacity 0.15s; filter: brightness(0) invert(1); }
.sol-feature-card:hover .sol-brand-logo { opacity: 0.9; }
.sol-feature-card h3 { font-size: 1.05rem; margin: 0 0 0.35rem; }
.sol-feature-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; margin: 0; }
.sol-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.sol-split-image { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.sol-checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(var(--sol-check-cols, 3), 1fr); gap: 0.5rem 1.5rem; }
.sol-checklist-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.sol-check-icon { flex-shrink: 0; }
.sol-tabs { margin-top: 1.5rem; }
.sol-tab-list { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 0; overflow-x: auto; }
.sol-tab { padding: 0.8rem 1.2rem; font: inherit; font-size: 0.95rem; font-weight: 600; color: var(--muted); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; transition: color 0.2s, border-color 0.2s; }
.sol-tab:hover { color: var(--ink); }
.sol-tab[aria-selected="true"] { color: var(--accent); border-bottom-color: var(--accent); }
.sol-tab-panel { padding: 1.5rem; background: var(--surface); border: 1px solid var(--line); border-top: none; border-radius: 0 0 16px 16px; }
.sol-tab-panel[hidden] { display: none; }
.sol-tab-panel h3 { margin: 0 0 0.6rem; font-size: 1.1rem; }
.sol-tab-panel p { color: var(--muted); line-height: 1.65; margin: 0 0 0.6rem; }
.sol-tab-panel p:last-child { margin-bottom: 0; }
.sol-faq { margin-top: 1.5rem; }
.sol-faq-item { border-bottom: 1px solid var(--line); }
.sol-faq-q { padding: 1.1rem 0; font-weight: 600; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.sol-faq-q::after { content: "+"; font-size: 1.3rem; color: var(--accent); transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; }
.sol-faq-item[open] .sol-faq-q::after { content: "\2212"; }
.sol-faq-q::-webkit-details-marker { display: none; }
.sol-faq-a { padding: 0 0 1.1rem; color: var(--muted); line-height: 1.65; }
.sol-faq-a p { margin: 0; }
.sol-section { padding: 3rem 0; }
.sol-section + .sol-section { border-top: 1px solid rgba(255,255,255,0.04); }
@media (max-width: 840px) {
  .sol-hero-grid, .sol-split { grid-template-columns: 1fr; }
  .sol-hero-image-wrap { order: -1; }
  .sol-checklist { grid-template-columns: repeat(2, 1fr); }
  .sol-nav-link { padding: 0.7rem 0.8rem; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .sol-checklist { grid-template-columns: 1fr; }
}

/* === Pricing Page (prc-*) === */
.prc-hero { padding: 3rem 0 1.5rem; text-align: center; }
.prc-hero .lead { margin: 0.5rem auto 0; }
.prc-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 0.8rem; }
.prc-section { padding: 3rem 0; }
.prc-section + .prc-section { border-top: 1px solid rgba(255,255,255,0.04); }
.prc-section-head { margin-bottom: 1.5rem; }
.prc-section-head .eyebrow { margin-bottom: 0.3rem; }
.prc-section-head h2 { margin-bottom: 0.4rem; }
.prc-section-head .lead { font-size: 0.95rem; }
.prc-tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.prc-tier-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; display: flex; flex-direction: column; }
.prc-tier-card.popular { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(40,190,227,0.12); }
.prc-tier-badge { display: inline-block; background: var(--accent); color: #111; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem; width: fit-content; }
.prc-tier-name { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.3rem; }
.prc-tier-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; margin: 0 0 1rem; }
.prc-price-row { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.8rem; }
.prc-price-value { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.prc-price-unit { font-size: 0.85rem; color: var(--muted); }
.prc-tier-features { list-style: none; padding: 0; margin: 0 0 1.2rem; flex: 1; }
.prc-tier-features li { font-size: 0.88rem; color: var(--muted); padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 0.5rem; }
.prc-tier-features li::before { content: ""; display: inline-block; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2328bee3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E") no-repeat center; flex-shrink: 0; }
.prc-tier-cta { margin-top: auto; }
.prc-table-wrap { overflow-x: auto; margin: 0; -webkit-overflow-scrolling: touch; }
.prc-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.prc-table th, .prc-table td { padding: 0.7rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.prc-table thead th { font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); background: var(--surface); position: sticky; top: 0; }
.prc-table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.prc-table .prc-price { text-align: right; font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.prc-table .prc-name { font-weight: 500; }
.prc-table .prc-detail { font-size: 0.82rem; color: var(--muted); margin-top: 0.15rem; }
.prc-quote-btn { display: inline-block; font-size: 0.78rem; font-weight: 600; color: var(--accent); border: 1px solid var(--accent); border-radius: 6px; padding: 0.25rem 0.7rem; text-decoration: none; transition: background 0.2s, color 0.2s; }
.prc-quote-btn:hover { background: var(--accent); color: #111; }
.prc-sub-heading { font-size: 1rem; font-weight: 700; margin: 2rem 0 0.8rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.prc-sub-heading:first-child { margin-top: 0; border-top: none; padding-top: 0; }
@media (max-width: 840px) {
  .prc-tier-grid { grid-template-columns: repeat(2, 1fr); }
  .prc-table { font-size: 0.82rem; }
  .prc-table th, .prc-table td { padding: 0.5rem 0.6rem; }
}
@media (max-width: 480px) {
  .prc-tier-grid { grid-template-columns: 1fr; }
  .prc-price-value { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta { padding: 0.3rem 0.75rem; font-size: 0.9rem; }
}

/* === Scroll Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(40,190,227,0.3); }
  50% { box-shadow: 0 4px 28px rgba(40,190,227,0.5); }
}
@keyframes particleFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(12px, -18px, 0); }
  50% { transform: translate3d(-8px, -30px, 0); }
  75% { transform: translate3d(15px, -12px, 0); }
}
@keyframes particleDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.15; }
  33% { transform: translate3d(20px, -25px, 0) scale(1.2); opacity: 0.3; }
  66% { transform: translate3d(-15px, -40px, 0) scale(0.8); opacity: 0.1; }
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.particle { position: absolute; border-radius: 50%; pointer-events: none; will-change: transform; }
.particle--1 { width: 4px; height: 4px; background: var(--accent); opacity: 0.2; top: 15%; left: 10%; animation: particleFloat 10s ease-in-out infinite; }
.particle--2 { width: 3px; height: 3px; background: var(--accent-2); opacity: 0.15; top: 25%; left: 75%; animation: particleDrift 13s ease-in-out infinite 1s; }
.particle--3 { width: 5px; height: 5px; background: var(--accent); opacity: 0.12; top: 60%; left: 20%; animation: particleFloat 11s ease-in-out infinite 2s; }
.particle--4 { width: 2px; height: 2px; background: #7dd3fc; opacity: 0.25; top: 40%; left: 85%; animation: particleDrift 9s ease-in-out infinite 0.5s; }
.particle--5 { width: 6px; height: 6px; background: var(--accent); opacity: 0.08; top: 70%; left: 55%; animation: particleFloat 14s ease-in-out infinite 3s; }
.particle--6 { width: 3px; height: 3px; background: var(--accent-2); opacity: 0.18; top: 10%; left: 45%; animation: particleDrift 12s ease-in-out infinite 1.5s; }
.particle--7 { width: 4px; height: 4px; background: #7dd3fc; opacity: 0.1; top: 50%; left: 5%; animation: particleFloat 15s ease-in-out infinite 4s; }
.particle--8 { width: 2px; height: 2px; background: var(--accent); opacity: 0.2; top: 80%; left: 90%; animation: particleDrift 10s ease-in-out infinite 2.5s; }
main { animation: pageIn 0.5s ease-out; }
body.page-exit main { opacity: 0; transform: translateY(-8px); transition: opacity 0.3s ease, transform 0.3s ease; }
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* Staggered card animation */
.sol-feature-grid .sol-feature-card { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease, border-color 0.25s ease; }
.sol-feature-grid.visible .sol-feature-card { opacity: 1; transform: translateY(0); }
.sol-feature-grid.visible .sol-feature-card:nth-child(1) { transition-delay: 0s; }
.sol-feature-grid.visible .sol-feature-card:nth-child(2) { transition-delay: 0.08s; }
.sol-feature-grid.visible .sol-feature-card:nth-child(3) { transition-delay: 0.16s; }
.sol-feature-grid.visible .sol-feature-card:nth-child(4) { transition-delay: 0.24s; }
.sol-feature-grid.visible .sol-feature-card:nth-child(n+5) { transition-delay: 0.32s; }
.card-grid .card, .product-grid .product-card { opacity: 1; transform: none; transition: box-shadow 0.25s ease, border-color 0.25s ease; }

/* Hero glow background */
.hero { position: relative; overflow: hidden; }
.hero { --parallax-y: 0px; }
.hero::before { content: ""; position: absolute; top: calc(-40% + var(--parallax-y)); right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(40,190,227,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; animation: pulseGlow 6s ease-in-out infinite; box-shadow: none; will-change: top; }
.hero::after { content: ""; position: absolute; bottom: calc(-30% - var(--parallax-y)); left: -15%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(217,143,60,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; will-change: bottom; }

/* Section gradient dividers */
.section + .section { border-top: 1px solid; border-image: linear-gradient(90deg, transparent, var(--line), transparent) 1; }

/* Button primary pulse */
.button.primary { animation: pulseGlow 3s ease-in-out infinite; }
.button.primary:hover { animation: none; }

/* Text link underline animation */
.text-link { position: relative; }
.text-link::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
.text-link:hover::after { width: 100%; }
.text-link:hover { text-decoration: none; opacity: 1; }

/* Metric value gradient */
.metric-value { background: linear-gradient(135deg, #fff 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: "Space Grotesk", "Inter", sans-serif; }

/* Enhanced quote panel */
.quote-panel { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06); }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1; transform: none; transition: none; }
  .card-grid .card, .product-grid .product-card, .sol-feature-grid .sol-feature-card { opacity: 1; transform: none; transition: box-shadow 0.25s ease, border-color 0.25s ease; }
  .hero::before, .hero::after { animation: none; }
  .particle { animation: none !important; opacity: 0 !important; }
  main { animation: none; }
  body.page-exit main { transition: none; }
  .button.primary { animation: none; }
}
