:root {
  --bg: #07111f;
  --bg-soft: #0c1930;
  --bg-elev: rgba(15, 30, 55, 0.82);
  --card: rgba(12, 24, 44, 0.88);
  --card-2: rgba(15, 33, 59, 0.92);
  --text: #f5f8fc;
  --muted: #a8b9ce;
  --muted-2: #c4d2e1;
  --border: rgba(116, 157, 208, 0.18);
  --accent: #1f72c7;
  --accent-2: #37b6ff;
  --gold: #c8973a;
  --gold-2: #dfb457;
  --success: #3cc78a;
  --max: 1240px;
  --radius: 22px;
  --radius-sm: 16px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(55, 182, 255, 0.12), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(215, 168, 74, 0.08), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #081424 35%, #06101d 100%);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

section { padding: 6rem 0; }
.section-head {
  display: grid;
  gap: 1rem;
  max-width: 780px;
  margin-bottom: 2.4rem;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(31, 114, 199, 0.13);
  border: 1px solid rgba(55, 182, 255, 0.22);
  color: var(--accent-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}
.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-2);
}
.section-title {
  font-size: clamp(2rem, 4.1vw, 3.6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.section-subtitle {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 720px;
}
.section-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--gold-2));
}

.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 40px rgba(31, 114, 199, 0.26);
}
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.btn-secondary:hover { border-color: rgba(55, 182, 255, 0.3); background: rgba(31, 114, 199, 0.08); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111c2c;
  box-shadow: 0 16px 34px rgba(215, 168, 74, 0.28);
}

.site-shell {
  position: relative;
  overflow: clip;
}
.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(55, 182, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 182, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 88%);
  opacity: 0.45;
}

#main-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(6, 12, 21, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.nav-brand img { width: 178px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted-2);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--text); }
.nav-chip {
  padding: 0.66rem 1rem;
  border-radius: 999px;
  background: rgba(31, 114, 199, 0.11);
  border: 1px solid rgba(55, 182, 255, 0.18);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle::before { margin-bottom: 5px; }
.nav-toggle::after { margin-top: 5px; }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 12, 21, 0.96);
}
.mobile-nav .container {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 0 1.2rem;
}
.mobile-nav a {
  text-decoration: none;
  color: var(--muted-2);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav.is-open { display: block; }

.hero {
  padding: 4rem 0 3rem;
}
.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.6rem;
  align-items: center;
  padding: 3.2rem;
  border-radius: 34px;
  background: linear-gradient(155deg, rgba(10, 20, 38, 0.88), rgba(11, 24, 45, 0.98));
  border: 1px solid rgba(116, 157, 208, 0.16);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(55, 182, 255, 0.05), transparent 38%, rgba(215, 168, 74, 0.03));
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 850;
  margin: 1rem 0 1.15rem;
}
.hero-copy p {
  font-size: 1.04rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 1.8rem;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.metric {
  padding: 1rem 1rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}
.metric strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}
.metric span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-visual img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(116, 157, 208, 0.16);
}
.hero-badges {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero-badge {
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-2);
  font-size: 0.78rem;
}

.band {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 19, 35, 0.72);
  overflow: hidden;
}
.band-track {
  display: flex;
  gap: 1.8rem;
  min-width: max-content;
  animation: marquee 28s linear infinite;
}
.band-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: var(--muted-2);
  font-weight: 700;
}
.band-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--gold-2));
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}
.info-panel,
.card,
.surface {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2);
}
.info-panel {
  padding: 1.6rem;
}
.info-stack {
  display: grid;
  gap: 1rem;
}
.info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(31, 114, 199, 0.14);
  border: 1px solid rgba(55, 182, 255, 0.16);
  color: var(--accent-2);
  font-weight: 800;
}
.info-item h3 { font-size: 1.04rem; margin-bottom: 0.25rem; }
.info-item p { color: var(--muted); font-size: 0.93rem; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-card {
  padding: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 32, 58, 0.95), rgba(11, 24, 42, 0.9));
  border: 1px solid rgba(116, 157, 208, 0.18);
}
.stat-card strong {
  font-size: 2rem;
  line-height: 1;
  display: block;
}
.stat-card span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 0.4rem;
}
.stat-card.wide { grid-column: span 2; }

.cards-3,
.cards-4,
.cards-2 {
  display: grid;
  gap: 1.1rem;
}
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  padding: 1.45rem;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(55, 182, 255, 0.28);
  background: linear-gradient(180deg, rgba(14, 31, 56, 0.96), rgba(10, 22, 40, 0.98));
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(55, 182, 255, 0.12);
  border: 1px solid rgba(55, 182, 255, 0.18);
  display: grid;
  place-items: center;
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.04rem; margin-bottom: 0.55rem; }
.card p { color: var(--muted); font-size: 0.93rem; }
.bullets {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}
.bullets li {
  position: relative;
  color: var(--muted-2);
  font-size: 0.88rem;
  padding-left: 1rem;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--gold-2));
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.category-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  text-decoration: none;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(9, 18, 34, 0.98), rgba(10, 23, 41, 0.9));
  border: 1px solid rgba(116, 157, 208, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(55, 182, 255, 0.28);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.25);
}
.category-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}
.category-copy {
  padding: 1.3rem 1.35rem 1.4rem;
}
.category-copy h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.category-copy p { color: var(--muted); font-size: 0.92rem; }
.category-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-2);
  font-size: 0.88rem;
  font-weight: 700;
}

.chip-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.chip {
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-2);
  font-size: 0.83rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.timeline-step {
  padding: 1.3rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 31, 56, 0.88), rgba(9, 20, 36, 0.94));
  border: 1px solid rgba(116, 157, 208, 0.18);
}
.timeline-step strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(55, 182, 255, 0.14);
  border: 1px solid rgba(55, 182, 255, 0.2);
  color: var(--accent-2);
  margin-bottom: 0.8rem;
}
.timeline-step h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.timeline-step p { color: var(--muted); font-size: 0.9rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pricing-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 28, 52, 0.96), rgba(9, 20, 38, 0.96));
  border: 1px solid rgba(116, 157, 208, 0.18);
}
.pricing-card.featured {
  border-color: rgba(55, 182, 255, 0.32);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.22);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-card h3 { margin-top: 0.5rem; font-size: 1.2rem; }
.pricing-card p { color: var(--muted); margin: 0.55rem 0 1rem; font-size: 0.93rem; }
.pricing-card ul { list-style: none; display: grid; gap: 0.6rem; }
.pricing-card li { color: var(--muted-2); font-size: 0.9rem; padding-left: 1rem; position: relative; }
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-2);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 1.2rem;
  align-items: stretch;
}
.contact-panel,
.form-panel {
  padding: 1.5rem;
}
.contact-panel {
  background: linear-gradient(155deg, rgba(13, 29, 54, 0.96), rgba(8, 17, 31, 0.98));
}
.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.3rem;
}
.contact-list div {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-list span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-list strong, .contact-list a {
  color: var(--text);
  text-decoration: none;
}
.form-panel form {
  display: grid;
  gap: 0.9rem;
}
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.field {
  display: grid;
  gap: 0.38rem;
}
.field label {
  font-size: 0.82rem;
  color: var(--muted-2);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.88rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(55, 182, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(31, 114, 199, 0.12);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); }

.page-hero {
  padding: 4rem 0 2rem;
}
.page-hero-card {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(11, 23, 42, 0.98), rgba(9, 19, 35, 0.94));
  border: 1px solid rgba(116, 157, 208, 0.16);
}
.page-hero-card img {
  border-radius: 24px;
  border: 1px solid rgba(116, 157, 208, 0.16);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--muted-2); text-decoration: none; }

.anchor-nav {
  position: sticky;
  top: 88px;
  z-index: 30;
  padding: 0.8rem 0;
  margin-bottom: 1.5rem;
}
.anchor-nav .surface {
  padding: 0.8rem;
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
}
.anchor-nav a {
  white-space: nowrap;
  text-decoration: none;
  color: var(--muted-2);
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}
.anchor-nav a:hover { color: var(--text); border-color: rgba(55, 182, 255, 0.22); }

.catalog {
  display: grid;
  gap: 2rem;
}
.catalog-section {
  padding: 1.25rem;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(10, 20, 38, 0.96), rgba(9, 18, 34, 0.98));
  border: 1px solid rgba(116, 157, 208, 0.16);
}
.catalog-top {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.catalog-thumb {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(116, 157, 208, 0.16);
}
.catalog-copy h2 {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  margin-bottom: 0.5rem;
}
.catalog-copy p { color: var(--muted); }
.catalog-tags {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.catalog-tags span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--muted-2);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.product-card {
  padding: 1.2rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14, 29, 53, 0.95), rgba(10, 22, 38, 0.96));
  border: 1px solid rgba(116, 157, 208, 0.16);
}
.product-card h3 { font-size: 1.06rem; margin-bottom: 0.45rem; }
.product-card p { color: var(--muted); font-size: 0.92rem; }
.product-card ul { list-style: none; display: grid; gap: 0.45rem; margin-top: 0.9rem; }
.product-card li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--muted-2);
  font-size: 0.88rem;
}
.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--gold-2));
}
.product-chip-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}
.product-chip-row span {
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  background: rgba(31, 114, 199, 0.12);
  border: 1px solid rgba(55, 182, 255, 0.16);
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 700;
}

.cta-strip {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(28, 82, 148, 0.22), rgba(10, 22, 40, 0.94) 45%, rgba(215, 168, 74, 0.12));
  border: 1px solid rgba(116, 157, 208, 0.18);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.cta-strip h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); margin-bottom: 0.3rem; }
.cta-strip p { color: var(--muted); }

footer {
  margin-top: 5rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 10, 17, 0.74);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 0.95fr;
  gap: 1.3rem;
}
.footer-brand img { width: 190px; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); max-width: 320px; font-size: 0.9rem; }
.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.9rem;
}
.footer-col a,
.footer-col span {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 1.8rem;
  padding-top: 1.3rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hide { display: none !important; }

@media (max-width: 1080px) {
  .hero-card,
  .page-hero-card,
  .grid-2,
  .catalog-top,
  .contact-shell,
  .cta-strip {
    grid-template-columns: 1fr;
  }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  section { padding: 4.5rem 0; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .hero-card { padding: 1.7rem; }
  .page-hero-card,
  .catalog-section,
  .cta-strip { padding: 1.3rem; }
  .hero-metrics,
  .cards-3,
  .cards-2,
  .category-grid,
  .product-grid,
  .field-grid,
  .cards-4,
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .timeline { grid-template-columns: 1fr; }
  .anchor-nav { top: 74px; }
}

@media (max-width: 560px) {
  .nav-inner { min-height: 70px; }
  .nav-brand img { width: 150px; }
  .hero-title { font-size: 2.35rem; }
  .section-title { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip { text-align: left; }
}


.hero-copy a,
.contact-list a {
  color: var(--accent-2);
}

.hero-copy a:hover,
.contact-list a:hover {
  text-decoration: underline;
}

.catalog-copy h2,
.section-head .section-title {
  text-wrap: balance;
}

@media (min-width: 841px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
