/* OmniStack Philippines — Tech Company Website
   Brand: Hardware. Software. Built to Scale.
   Palette: Philippine flag blue (#0038A8) + red (#CE1126) on deep navy slate
   Type: Inter (UI) + Space Grotesk (display)
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* PH flag blue family */
  --primary: #0038A8;
  --primary-light: #2563d4;
  --primary-dark: #002A82;
  --primary-deeper: #001E66;

  /* PH flag red family — used as accent / CTA */
  --accent: #CE1126;
  --accent-light: #ef3146;
  --accent-dark: #A60D1E;
  --accent-deeper: #840A18;

  /* Wordmark navy */
  --navy: #1A3D78;

  --ink: #0a0f1d;
  --ink-soft: #111827;
  --ink-muted: #1f2937;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --white: #ffffff;
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;

  --grad-primary: linear-gradient(135deg, #0038A8 0%, #2563d4 100%);
  --grad-primary-soft: linear-gradient(135deg, rgba(0,56,168,0.10) 0%, rgba(37,99,212,0.10) 100%);
  --grad-flag: linear-gradient(135deg, #0038A8 0%, #1A3D78 50%, #CE1126 100%);
  --grad-dark: linear-gradient(135deg, #0a0f1d 0%, #001E66 50%, #0a0f1d 100%);
  --grad-hero: radial-gradient(ellipse at 20% 0%, rgba(0,56,168,0.28) 0%, transparent 50%),
               radial-gradient(ellipse at 80% 100%, rgba(206,17,38,0.18) 0%, transparent 50%),
               linear-gradient(180deg, #050816 0%, #0a0f1d 100%);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(2,6,23,0.06);
  --shadow-lg: 0 20px 50px rgba(2,6,23,0.10);
  --shadow-xl: 0 30px 80px rgba(0,56,168,0.22);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1240px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }
.section { padding: 110px 0; }
.section-sm { padding: 80px 0; }
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 18px;
}
.section-title .grad {
  background: linear-gradient(135deg, #0038A8 0%, #CE1126 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.08rem;
  color: var(--slate-500);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-head { text-align: center; margin-bottom: 64px; }
.section-head.left { text-align: left; }
.section-head.left .section-subtitle { margin: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem; font-weight: 600;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(206,17,38,0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-light);
  box-shadow: 0 14px 40px rgba(206,17,38,0.45);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--slate-200);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0,56,168,0.32);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,56,168,0.45);
}

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(10,15,29,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-ph {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-left: -2px;
  align-self: end;
  padding-bottom: 4px;
}
.logo-mark {
  width: 38px; height: 44px;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-links {
  display: flex; gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 600;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--white);
}
.nav-toggle {
  display: none;
  color: var(--white);
  font-size: 1.4rem;
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,15,29,0.96);
    backdrop-filter: blur(20px);
    padding: 24px 28px; gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background:
    linear-gradient(135deg, rgba(5,8,22,0.94) 0%, rgba(10,15,29,0.86) 50%, rgba(30,27,75,0.82) 100%),
    url('../img/hero-datacenter.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-orb-1, .hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: rgba(0,56,168,0.32);
  top: -120px; right: -120px;
  animation: float 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: rgba(206,17,38,0.22);
  bottom: -100px; left: -80px;
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-pill .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: grid; place-items: center;
  font-size: 0.65rem;
  color: var(--white);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #ef3146 0%, #2563d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p.lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, #ef3146 0%, #2563d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* Hero visual — stacked terminal + chip card */
.hero-visual { position: relative; }
.hv-card {
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.hv-terminal { padding: 0; }
.hv-term-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hv-term-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.hv-term-bar .dot.r { background: #ff5f57; }
.hv-term-bar .dot.y { background: #febc2e; }
.hv-term-bar .dot.g { background: #28c840; }
.hv-term-bar .lbl {
  margin-left: auto;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}
.hv-term-body {
  padding: 22px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.84rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
}
.hv-term-body .prompt { color: #60a5fa; }
.hv-term-body .cmd { color: var(--white); }
.hv-term-body .out { color: rgba(255,255,255,0.55); }
.hv-term-body .ok { color: #4ade80; }
.hv-term-body .key { color: #fda4af; }
.hv-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: #60a5fa;
  vertical-align: -2px;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hv-chip {
  position: absolute;
  bottom: -36px; right: -28px;
  width: 240px;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.hv-chip-row { display: flex; align-items: center; gap: 12px; }
.hv-chip-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  color: var(--white); font-size: 1rem;
}
.hv-chip-title { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.hv-chip-sub { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.hv-chip-bar {
  margin-top: 14px;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.hv-chip-bar .fill {
  height: 100%;
  width: 78%;
  background: var(--grad-primary);
  border-radius: 3px;
  animation: load 2.4s ease-in-out infinite alternate;
}
@keyframes load { from { width: 32%; } to { width: 92%; } }

@media (max-width: 980px) {
  .hv-chip { right: 16px; bottom: -24px; }
}

/* ── Marquee / Trust strip ── */
.trust {
  background: var(--slate-50);
  padding: 50px 0;
  border-bottom: 1px solid var(--slate-200);
}
.trust-label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-500);
  text-align: center;
  font-weight: 600;
  margin-bottom: 28px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
  justify-items: center;
}
.trust-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate-400);
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.trust-item i { font-size: 1.1rem; color: var(--slate-300); }
.trust-item:hover, .trust-item:hover i { color: var(--slate-700); }

/* ── Services ── */
.services { background: var(--white); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.svc-card {
  position: relative;
  padding: 36px 30px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-lg); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 1.45rem;
  margin-bottom: 24px;
}
.svc-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.92rem; color: var(--slate-500); line-height: 1.7; margin-bottom: 18px; }
.svc-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.svc-meta span {
  font-size: 0.72rem;
  padding: 4px 10px;
  background: var(--slate-100);
  color: var(--slate-600);
  border-radius: 999px;
  font-weight: 500;
}

/* ── Solutions split ── */
.split {
  background: var(--slate-50);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) {
  .split-grid { grid-template-columns: 1fr; }
}
.split-card {
  position: relative;
  padding: 48px 42px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 460px;
  display: flex; flex-direction: column;
  color: var(--white);
}
.split-card.hardware {
  background:
    linear-gradient(135deg, rgba(10,15,29,0.92) 0%, rgba(0,56,168,0.78) 100%),
    url('../img/hardware-racks.jpg') center/cover no-repeat;
}
.split-card.software {
  background:
    linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(206,17,38,0.72) 100%),
    url('../img/software-coding.jpg') center/cover no-repeat;
}
.split-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at top right, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 20%, transparent 70%);
  pointer-events: none;
}
.split-inner { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; }
.split-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  padding: 6px 12px; border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 24px;
}
.split-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 14px;
}
.split-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}
.split-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.split-list li {
  display: flex; gap: 12px; align-items: center;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.split-list i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: grid; place-items: center;
  font-size: 0.7rem;
  color: var(--white);
}
.split-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 600;
  color: #fda4af;
}
.split-link i { transition: transform 0.2s; }
.split-link:hover i { transform: translateX(4px); }

/* ── Industries ── */
.industries { background: var(--white); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.ind-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--slate-200);
  display: flex; flex-direction: column; gap: 14px;
  transition: all 0.25s var(--ease);
}
.ind-card:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--white), rgba(0,56,168,0.04));
  transform: translateY(-3px);
}
.ind-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--grad-primary);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(0,56,168,0.28);
}
.ind-card h4 { font-size: 1rem; margin-bottom: 4px; }
.ind-card p { font-size: 0.84rem; color: var(--slate-500); line-height: 1.55; }
.ind-count {
  margin-top: auto;
  font-size: 0.74rem; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ── Featured Products ── */
.products-feat { background: var(--slate-50); }
.feat-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 48px; gap: 32px; flex-wrap: wrap;
}
.feat-head .left { max-width: 600px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feat-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 24px 24px;
  border: 1px solid var(--slate-200);
  transition: all 0.3s var(--ease);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feat-card-media {
  position: relative;
  height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  display: grid; place-items: center;
}
.feat-card-media i {
  position: relative; z-index: 1;
  font-size: 2.4rem;
  color: var(--white);
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.feat-card-media::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.bg-1 { background: linear-gradient(135deg, #002A82, #0038A8); }
.bg-2 { background: linear-gradient(135deg, #A60D1E, #CE1126); }
.bg-3 { background: linear-gradient(135deg, #1A3D78, #2563d4); }
.bg-4 { background: linear-gradient(135deg, #d97706, #f59e0b); }
.bg-5 { background: linear-gradient(135deg, #840A18, #ef3146); }
.bg-6 { background: linear-gradient(135deg, #001E66, #1e54c4); }

.feat-card .tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  padding: 3px 10px;
  background: var(--slate-100);
  color: var(--slate-600);
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.feat-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 0.86rem;
  color: var(--slate-500);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.feat-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 600;
  color: var(--accent);
  align-self: flex-start;
}
.feat-card .more i { transition: transform 0.2s; }
.feat-card:hover .more i { transform: translateX(3px); }

.feat-cta { text-align: center; margin-top: 48px; }

/* ── Stats band ── */
.stats {
  position: relative;
  padding: 100px 0;
  background: var(--grad-dark);
  color: var(--white);
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.stats-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,56,168,0.32) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  text-align: center;
}
.stats-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ef3146 0%, #2563d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stats-item p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}

/* ── Why us ── */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
}
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}
.why-num {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  border: 1px solid rgba(0,56,168,0.18);
}
.why-item h4 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 0.92rem;
  color: var(--slate-500);
  line-height: 1.65;
}

.why-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: var(--grad-dark);
  overflow: hidden;
  padding: 36px;
  display: flex; flex-direction: column;
  gap: 16px;
}
.why-visual::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.why-visual > * { position: relative; z-index: 1; }
.wv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(10px);
}
.wv-card-i {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.wv-card-text { flex: 1; min-width: 0; }
.wv-card h5 { color: var(--white); font-size: 0.88rem; margin-bottom: 2px; }
.wv-card p { color: rgba(255,255,255,0.55); font-size: 0.78rem; line-height: 1.5; }
.wv-card .pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74,222,128,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

/* ── Process ── */
.process { background: var(--slate-50); }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 880px) {
  .proc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .proc-grid { grid-template-columns: 1fr; }
}
.proc-step {
  position: relative;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
}
.proc-step .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.proc-step .ic {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--grad-primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.proc-step h4 { font-size: 1rem; margin-bottom: 6px; }
.proc-step p { font-size: 0.85rem; color: var(--slate-500); line-height: 1.55; }

/* ── Testimonial ── */
.testimonials { background: var(--white); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: all 0.25s var(--ease);
}
.test-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.test-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.test-card blockquote {
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Space Grotesk', sans-serif;
}
.test-name { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.test-role { font-size: 0.78rem; color: var(--slate-500); }

/* ── CTA ── */
.cta-band {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(10,15,29,0.92) 0%, rgba(30,27,75,0.88) 100%),
    url('../img/team-meeting.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,56,168,0.32) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(206,17,38,0.22) 0%, transparent 60%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
@media (max-width: 768px) {
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
}
.cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 540px;
}
.cta-inner .actions {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .cta-inner .actions { justify-content: center; }
}

/* ── Footer ── */
footer {
  background: #050816;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; }
}
.foot-brand { max-width: 320px; }
.foot-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 18px;
}
.foot-social {
  display: flex; gap: 10px;
  margin-top: 22px;
}
.foot-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.foot-social a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.foot-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--accent-light); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.foot-bottom-links { display: flex; gap: 24px; }

/* ── Page header (for inner pages) ── */
.page-head {
  position: relative;
  padding: 160px 0 72px;
  background: var(--grad-hero);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 14px;
}
.page-head h1 .grad {
  background: linear-gradient(135deg, #ef3146 0%, #2563d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-head p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}
.page-head .crumbs {
  display: inline-flex; gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.page-head .crumbs a { color: rgba(255,255,255,0.85); }

/* ── Products page filter bar ── */
.filter-bar {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 20px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
  background: var(--accent);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(206,17,38,0.32);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 12px; }
.contact-info p { color: var(--slate-500); line-height: 1.7; }
.contact-card {
  display: flex; gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
}
.contact-card .ic {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--grad-primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 0.94rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.86rem; color: var(--slate-600); line-height: 1.5; }
.contact-card a { color: var(--primary); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-form .grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 600px) {
  .contact-form .grid-2 { grid-template-columns: 1fr; }
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,56,168,0.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.contact-form button[type="submit"] {
  width: 100%;
  justify-content: center;
}

/* ── Utilities ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.spacer-1 { height: 8px; } .spacer-2 { height: 16px; } .spacer-3 { height: 24px; }
