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

:root {
  --blue: #3b82f6;
  --blue-dark: #2563EB;
  --blue-glow: rgba(59,130,246,0.15);
  --bg: #0a0f1e;
  --bg2: #0d1426;
  --bg3: #111827;
  --card: #111827;
  --card-border: #1e2d45;
  --dark: #f1f5f9;
  --gray: #94a3b8;
  --gray2: #64748b;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(59,130,246,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; gap: 32px; }
.logo-img { height: 78px; object-fit: contain; }
.nav-links { display: flex; list-style: none; gap: 28px; margin-left: auto; }
.nav-links a {
  text-decoration: none; color: var(--gray); font-size: 0.92rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: 16px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray); border-radius: 2px; transition: 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--blue); color: #fff;
  padding: 11px 26px; border-radius: 8px; font-weight: 600;
  font-size: 0.92rem; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}
.btn-primary:hover { background: #2563eb; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(59,130,246,0.5); }

.btn-outline {
  display: inline-block; background: transparent; color: var(--blue);
  padding: 11px 26px; border-radius: 8px; font-weight: 600;
  font-size: 0.92rem; text-decoration: none;
  border: 1.5px solid rgba(59,130,246,0.5); transition: all 0.2s;
}
.btn-outline:hover { background: var(--blue-glow); border-color: var(--blue); color: #fff; transform: translateY(-1px); }

.btn-white {
  display: inline-block; background: var(--blue); color: #fff;
  padding: 14px 36px; border-radius: 8px; font-weight: 700;
  font-size: 1rem; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(59,130,246,0.4);
  width: 100%;
}
.btn-white:hover { background: #2563eb; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,0.55); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 110px 0 80px; position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.13) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(139,92,246,0.09) 0%, transparent 70%);
  bottom: 0; left: -60px;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.1); color: var(--blue);
  padding: 6px 16px; border-radius: 100px; font-size: 0.82rem;
  font-weight: 600; margin-bottom: 22px; border: 1px solid rgba(59,130,246,0.25);
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 800;
  line-height: 1.18; color: #fff; margin-bottom: 18px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem; color: var(--gray); max-width: 480px;
  margin-bottom: 32px; line-height: 1.75;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-trust span {
  font-size: 0.82rem; color: var(--gray); font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.hero-trust span { color: #94a3b8; }

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
  transition: transform 0.15s ease;
}
.hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.12);
  border: 1px solid #1e2d45;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ── FLOATING CARDS ── */
.float-card {
  position: absolute; background: #111827;
  border: 1px solid #1e2d45; border-radius: 10px;
  padding: 8px 14px; font-size: 0.78rem; font-weight: 600;
  color: #e2e8f0; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 10; pointer-events: none;
}
.float-card strong { color: #3b82f6; }
.fc-1 { top: -18px; left: -30px; animation: floatA 3.5s ease-in-out infinite; }
.fc-2 { top: 30px; right: -36px; animation: floatB 4s ease-in-out infinite; }
.fc-3 { bottom: 120px; right: -40px; animation: floatA 3.8s 0.5s ease-in-out infinite; }
.fc-4 { bottom: -18px; left: -20px; animation: floatB 4.2s 0.3s ease-in-out infinite; }
.fc-5 { bottom: 60px; left: -44px; animation: floatA 3.6s 0.8s ease-in-out infinite; }
.fc-6 { top: 50%; right: -38px; animation: floatB 3.9s 0.2s ease-in-out infinite; }

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px; border: 2px solid rgba(59,130,246,0.3);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px; background: var(--blue);
  border-radius: 2px; animation: scrollDot 1.8s ease-in-out infinite;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatA {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-10px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(8px); }
}
@keyframes scrollDot {
  0%,100% { opacity: 1; transform: translateY(0); }
  50%     { opacity: 0.3; transform: translateY(8px); }
}

/* ── PRODUCT OVERVIEW ── */
.po-section { background: var(--bg2); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.po-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 56px; }

.po-left { display: flex; flex-direction: column; gap: 0; }
.po-title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800;
  color: #fff; line-height: 1.25; margin: 12px 0 18px;
}
.po-desc { font-size: 0.97rem; color: var(--gray); line-height: 1.8; margin-bottom: 32px; }

.po-highlights { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.po-highlights li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 500; color: #e2e8f0;
}
.po-check {
  width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0;
  background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.po-check svg { width: 13px; height: 13px; stroke-width: 3; }

/* Stats Grid */
.po-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.po-stat-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}
.po-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.3);
}
.po-stat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.po-stat-icon svg { width: 20px; height: 20px; }
.po-stat-val { font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.2; }
.po-stat-lbl { font-size: 0.78rem; color: var(--gray); font-weight: 500; }

/* Bottom Strip */
.po-strip {
  display: flex; align-items: center; gap: 18px;
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: var(--radius); padding: 22px 28px;
}
.po-strip-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.po-strip-icon svg { width: 22px; height: 22px; }
.po-strip p { font-size: 0.97rem; color: var(--gray); line-height: 1.6; }
.po-strip p strong { color: #fff; font-weight: 600; }

@media (max-width: 1024px) {
  .po-grid { grid-template-columns: 1fr; gap: 40px; }
  .po-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .po-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .po-strip { flex-direction: column; text-align: center; }
}


/* ── INDUSTRIES ── */
.ind-section { background: var(--bg); border-top: 1px solid var(--card-border); }

.ind-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-bottom: 40px; align-items: stretch;
}
.ind-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.ind-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(59,130,246,0.13);
  border-color: rgba(59,130,246,0.28);
}
.ind-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: color-mix(in srgb, var(--ic) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--ic);
}
.ind-icon svg { width: 22px; height: 22px; }
.ind-card h4 { font-size: 0.92rem; font-weight: 700; color: #fff; line-height: 1.3; }
.ind-card p  { font-size: 0.8rem; color: var(--gray); line-height: 1.65; }

/* Supply Chain */
.ind-chain {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 36px 28px;
  margin-bottom: 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.ind-chain-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray2); margin-bottom: 28px;
}
.ind-chain-flow {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.ind-chain-node { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ind-chain-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: color-mix(in srgb, var(--cc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--cc); transition: transform 0.2s;
}
.ind-chain-icon:hover { transform: scale(1.08); }
.ind-chain-icon svg { width: 26px; height: 26px; }
.ind-chain-node span { font-size: 0.82rem; font-weight: 600; color: #e2e8f0; }
.ind-chain-arrow { color: rgba(59,130,246,0.4); }
.ind-chain-arrow svg { width: 18px; height: 18px; animation: floatA 2s ease-in-out infinite; }
.ind-chain-badge {
  display: inline-block; margin-top: 24px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  color: var(--blue); font-size: 0.8rem; font-weight: 600;
  padding: 6px 18px; border-radius: 100px;
}

/* On desktop show chain horizontally */
@media (min-width: 769px) {
  .ind-chain-flow { flex-direction: row; gap: 8px; }
  .ind-chain-arrow svg { animation: floatB 2s ease-in-out infinite; }
}

/* Benefit highlights */
.ind-benefits {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-bottom: 40px;
}
.ind-benefit {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 20px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform 0.22s, border-color 0.22s;
}
.ind-benefit:hover { transform: translateY(-3px); border-color: rgba(59,130,246,0.28); }
.ind-ben-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.ind-ben-icon svg { width: 18px; height: 18px; }
.ind-benefit h5 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ind-benefit p  { font-size: 0.78rem; color: var(--gray); line-height: 1.55; }

/* Bottom CTA */
.ind-cta {
  text-align: center; padding: 48px 32px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.06));
  border: 1px solid rgba(59,130,246,0.15); border-radius: var(--radius);
}
.ind-cta h3 { font-size: clamp(1.2rem,2.2vw,1.7rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.ind-cta p  { font-size: 0.95rem; color: var(--gray); max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }

@media (max-width: 1024px) { .ind-grid { grid-template-columns: repeat(3,1fr); } .ind-benefits { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .ind-grid { grid-template-columns: repeat(2,1fr); } .ind-benefits { grid-template-columns: 1fr; } }
@media (max-width: 400px)  { .ind-grid { grid-template-columns: 1fr; } }


.wc-section { background: var(--bg2); border-top: 1px solid var(--card-border); }

.wc-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-bottom: 48px; align-items: stretch;
}
.wc-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.wc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(59,130,246,0.14);
  border-color: rgba(59,130,246,0.28);
}
.wc-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.wc-icon svg { width: 22px; height: 22px; }
.wc-card h4 { font-size: 0.95rem; font-weight: 700; color: #fff; }
.wc-card p  { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

/* Comparison Table */
.wc-table-wrap {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 40px;
}
.wc-table-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--card-border);
  display: flex; flex-direction: column; gap: 8px;
}
.wc-table-header h3 { font-size: 1.1rem; font-weight: 800; color: #fff; }
.wc-table { width: 100%; }
.wc-table-head {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  padding: 12px 28px; background: rgba(59,130,246,0.06);
  border-bottom: 1px solid var(--card-border);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gray2);
}
.wc-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  padding: 14px 28px; border-bottom: 1px solid rgba(30,45,69,0.5);
  align-items: center; transition: background 0.2s;
}
.wc-row:last-child { border-bottom: none; }
.wc-row:hover { background: rgba(59,130,246,0.04); }
.wc-capability {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; color: #e2e8f0;
}
.wc-capability svg { width: 15px; height: 15px; stroke: var(--blue); flex-shrink: 0; }
.wc-old {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: #f87171;
}
.wc-old svg { width: 15px; height: 15px; stroke: #f87171; flex-shrink: 0; }
.wc-new {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: #34d399; font-weight: 500;
}
.wc-new svg { width: 15px; height: 15px; stroke: #34d399; flex-shrink: 0; }

/* Trust Banner */
.wc-banner {
  background: linear-gradient(135deg, #0d1f3c 0%, #0a1628 100%);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius); padding: 48px 40px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.wc-banner-content h3 { font-size: clamp(1.2rem,2.2vw,1.7rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.wc-banner-content p  { font-size: 0.95rem; color: var(--gray); line-height: 1.7; max-width: 520px; margin-bottom: 24px; }
.wc-banner-stats { display: flex; flex-direction: column; gap: 20px; }
.wc-bstat { text-align: center; }
.wc-bnum { display: block; font-size: 1.6rem; font-weight: 800; color: var(--blue); }
.wc-blbl { font-size: 0.75rem; color: var(--gray); font-weight: 500; }

@media (max-width: 1024px) { .wc-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) {
  .wc-grid { grid-template-columns: repeat(2,1fr); }
  .wc-banner { grid-template-columns: 1fr; gap: 28px; }
  .wc-banner-stats { flex-direction: row; justify-content: center; }
  .wc-table-head, .wc-row { grid-template-columns: 1fr 1fr 1fr; padding: 12px 16px; }
  .wc-capability svg { display: none; }
}
@media (max-width: 480px) {
  .wc-grid { grid-template-columns: 1fr; }
  .wc-table-head div:first-child, .wc-row .wc-capability { font-size: 0.75rem; }
  .wc-old, .wc-new { font-size: 0.72rem; }
}


.hw-section { background: var(--bg2); border-top: 1px solid var(--card-border); }

/* Steps grid - 4 per row, 2 rows */
.hw-steps {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  gap: 0 0;
  row-gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}
.hw-step {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.hw-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.3);
}
.hw-step-num {
  font-size: 0.68rem; font-weight: 800; color: var(--blue);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hw-step-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.hw-step-icon svg { width: 20px; height: 20px; }
.hw-step h4 { font-size: 0.9rem; font-weight: 700; color: #fff; line-height: 1.3; }
.hw-step p  { font-size: 0.8rem; color: var(--gray); line-height: 1.65; }

/* Row 2 steps span correctly */
.hw-row2:nth-child(5)  { grid-column: 1; grid-row: 2; }
.hw-row2:nth-child(6)  { grid-column: 2; grid-row: 2; }
.hw-row2:nth-child(7)  { grid-column: 3; grid-row: 2; }
.hw-row2:nth-child(8)  { grid-column: 4; grid-row: 2; }
.hw-row2:nth-child(9)  { grid-column: 5; grid-row: 2; }
.hw-row2:nth-child(10) { grid-column: 6; grid-row: 2; }
.hw-row2:nth-child(11) { grid-column: 7; grid-row: 2; }

.hw-connector {
  display: flex; align-items: center; justify-content: center;
  color: rgba(59,130,246,0.45); padding-top: 36px;
}
.hw-connector svg { width: 18px; height: 18px; animation: pulseArrow 2s ease-in-out infinite; }

/* Integration diagram */
.hw-integration {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 24px; margin-bottom: 40px;
}
.hw-int-label {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray2); margin-bottom: 20px;
}
.hw-int-row {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.hw-int-node {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform 0.2s;
}
.hw-int-node:hover { transform: translateY(-3px); }
.hw-int-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(var(--nc-rgb, 59,130,246), 0.12);
  border: 1px solid rgba(var(--nc-rgb, 59,130,246), 0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--nc, var(--blue));
  background: color-mix(in srgb, var(--nc) 12%, transparent);
  border-color: color-mix(in srgb, var(--nc) 25%, transparent);
}
.hw-int-icon svg { width: 22px; height: 22px; }
.hw-int-node span { font-size: 0.7rem; font-weight: 600; color: var(--gray); white-space: nowrap; }
.hw-int-arrow { color: rgba(59,130,246,0.4); }
.hw-int-arrow svg { width: 16px; height: 16px; }

/* Benefit cards */
.hw-benefits {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-bottom: 40px;
}
.hw-benefit {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.hw-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(59,130,246,0.14);
  border-color: rgba(59,130,246,0.28);
}
.hw-ben-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.hw-ben-icon svg { width: 20px; height: 20px; }
.hw-benefit h4 { font-size: 0.92rem; font-weight: 700; color: #fff; }
.hw-benefit p  { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

/* CTA */
.hw-cta {
  text-align: center; padding: 48px 32px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.06));
  border: 1px solid rgba(59,130,246,0.15); border-radius: var(--radius);
}
.hw-cta h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.hw-cta p  { font-size: 0.97rem; color: var(--gray); max-width: 560px; margin: 0 auto 28px; line-height: 1.7; }

@media (max-width: 1024px) {
  .hw-steps { grid-template-columns: 1fr 28px 1fr; row-gap: 0; gap: 16px; }
  .hw-row2 { grid-column: unset !important; grid-row: unset !important; }
  .hw-connector.hw-row2 { display: flex; }
  .hw-benefits { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .hw-steps { grid-template-columns: 1fr; gap: 12px; }
  .hw-connector { display: none; }
  .hw-benefits { grid-template-columns: 1fr; }
  .hw-int-row { gap: 6px; }
}


.cf-section { background: var(--bg); }

.cf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}
.cf-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.cf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(59,130,246,0.14);
  border-color: rgba(59,130,246,0.28);
}
.cf-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.cf-icon svg { width: 22px; height: 22px; }
.cf-card h3 { font-size: 0.97rem; font-weight: 800; color: #fff; }
.cf-card > p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }
.cf-card ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 7px; flex: 1;
}
.cf-card ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: #94a3b8;
}
.cf-card ul li svg { width: 12px; height: 12px; stroke: #3b82f6; stroke-width: 3; flex-shrink: 0; }

/* Feature Strip */
.cf-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-bottom: 40px;
}
.cf-strip-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 100px; padding: 9px 18px;
  font-size: 0.82rem; font-weight: 600; color: #e2e8f0;
  transition: all 0.2s;
}
.cf-strip-item:hover { border-color: rgba(59,130,246,0.4); background: rgba(59,130,246,0.08); color: #fff; }
.cf-strip-item svg { width: 15px; height: 15px; stroke: var(--blue); }

/* Bottom CTA */
.cf-cta {
  text-align: center; padding: 48px 32px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(124,58,237,0.06) 100%);
  border: 1px solid rgba(59,130,246,0.15); border-radius: var(--radius);
}
.cf-cta h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cf-cta p { font-size: 0.97rem; color: var(--gray); max-width: 580px; margin: 0 auto 28px; line-height: 1.7; }

@media (max-width: 1100px) { .cf-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .cf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cf-grid { grid-template-columns: 1fr; } }


.eco-section { background: var(--bg2); border-top: 1px solid var(--card-border); }

.eco-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  align-items: stretch;
}
.eco-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}
.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.3);
}
.eco-card-top { display: flex; align-items: center; justify-content: space-between; }
.eco-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  flex-shrink: 0;
}
.eco-icon svg { width: 22px; height: 22px; }
.eco-card-label {
  font-size: 0.68rem; font-weight: 700; color: var(--gray2);
  text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(255,255,255,0.04); border: 1px solid var(--card-border);
  padding: 3px 8px; border-radius: 100px;
}
.eco-card h3 { font-size: 1rem; font-weight: 800; color: #fff; line-height: 1.3; }
.eco-card > p { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

.eco-features {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.eco-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: #94a3b8;
}
.eco-features li svg { width: 13px; height: 13px; stroke: #3b82f6; stroke-width: 3; flex-shrink: 0; }

.eco-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--blue);
  text-decoration: none; margin-top: auto; padding-top: 4px;
  transition: gap 0.2s;
}
.eco-btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
.eco-btn:hover { gap: 10px; }
.eco-btn:hover svg { transform: translateX(3px); }

/* Workflow */
.eco-flow {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 32px; margin-bottom: 40px;
}
.eco-flow-title {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray2); margin-bottom: 20px; text-align: center;
}
.eco-flow-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.eco-flow-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.eco-flow-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.eco-flow-icon svg { width: 20px; height: 20px; }
.eco-flow-step span { font-size: 0.72rem; font-weight: 600; color: var(--gray); white-space: nowrap; }
.eco-flow-arrow { color: rgba(59,130,246,0.5); }
.eco-flow-arrow svg { width: 18px; height: 18px; }

/* Bottom highlight */
.eco-bottom {
  text-align: center; padding: 48px 32px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(124,58,237,0.06) 100%);
  border: 1px solid rgba(59,130,246,0.15); border-radius: var(--radius);
}
.eco-bottom h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.eco-bottom p { font-size: 0.97rem; color: var(--gray); max-width: 600px; margin: 0 auto 28px; line-height: 1.7; }

@media (max-width: 1100px) { .eco-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .eco-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .eco-cards { grid-template-columns: 1fr; } .eco-flow-steps { gap: 6px; } }


.cs-section { background: var(--bg); }
.cs-grid {
  display: grid; grid-template-columns: 1fr 48px 1fr;
  gap: 0; align-items: start; margin-bottom: 56px;
}
.cs-col-header {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 10px 16px; border-radius: 8px; margin-bottom: 16px;
}
.cs-col-header svg { width: 15px; height: 15px; }
.cs-col-header.challenge { background: rgba(239,68,68,0.08); color: #f87171; border: 1px solid rgba(239,68,68,0.15); }
.cs-col-header.solution  { background: rgba(16,185,129,0.08); color: #34d399; border: 1px solid rgba(16,185,129,0.15); }
.cs-cards { display: flex; flex-direction: column; gap: 12px; }
.cs-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--card); border-radius: 12px; padding: 18px;
  border: 1px solid var(--card-border);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.cs-card h4 { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cs-card p  { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }
.challenge-card:hover { transform: translateX(-4px); box-shadow: -4px 8px 24px rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.2); }
.solution-card:hover  { transform: translateX(4px);  box-shadow:  4px 8px 24px rgba(16,185,129,0.1);  border-color: rgba(16,185,129,0.2); }
.cs-card-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.15);
}
.cs-card-icon svg { width: 17px; height: 17px; }
.cs-card-icon.sol { background: rgba(16,185,129,0.1); color: #34d399; border-color: rgba(16,185,129,0.15); }
.cs-divider {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start; padding-top: 56px; position: relative;
}
.cs-divider-line {
  position: absolute; top: 56px; bottom: 0; left: 50%; width: 1px;
  background: linear-gradient(to bottom, rgba(59,130,246,0.3), transparent);
  transform: translateX(-50%);
}
.cs-arrows { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.cs-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  animation: pulseArrow 2s ease-in-out infinite;
}
.cs-arrow:nth-child(2) { animation-delay: 0.2s; }
.cs-arrow:nth-child(3) { animation-delay: 0.4s; }
.cs-arrow:nth-child(4) { animation-delay: 0.6s; }
.cs-arrow:nth-child(5) { animation-delay: 0.8s; }
.cs-arrow:nth-child(6) { animation-delay: 1.0s; }
.cs-arrow svg { width: 13px; height: 13px; }
@keyframes pulseArrow {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.cs-cta {
  text-align: center; padding: 40px 32px;
  background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--radius);
}
.cs-cta p { font-size: 1.05rem; color: var(--gray); line-height: 1.7; max-width: 680px; margin: 0 auto 24px; }
.cs-cta p strong { color: #fff; }
@media (max-width: 900px) {
  .cs-grid { grid-template-columns: 1fr; gap: 32px; }
  .cs-divider { display: none; }
  .challenge-card:hover { transform: translateY(-3px); }
  .solution-card:hover  { transform: translateY(-3px); }
}

.section { padding: 96px 0; }
.bg-light { background: var(--bg2); }
.bg-blue {
  background: linear-gradient(135deg, #0d1f3c 0%, #0a1628 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: rgba(59,130,246,0.1); color: var(--blue);
  padding: 4px 14px; border-radius: 100px; font-size: 0.8rem;
  font-weight: 600; margin-bottom: 12px; text-transform: uppercase;
  letter-spacing: 0.05em; border: 1px solid rgba(59,130,246,0.2);
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 520px; margin: 0 auto; }
.section-title.white { color: #fff; }
.section-sub.white { color: var(--gray); }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--card); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--card-border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(59,130,246,0.3); }
.card-icon {
  width: 48px; height: 48px; background: rgba(59,130,246,0.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--blue); border: 1px solid rgba(59,130,246,0.2);
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ── MODULES ── */
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.module-item {
  background: var(--card); border-radius: 12px; padding: 20px 18px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--card-border);
  font-weight: 600; font-size: 0.9rem; color: var(--gray);
  transition: all 0.2s; cursor: default;
}
.module-item:hover { background: rgba(59,130,246,0.1); color: #fff; border-color: rgba(59,130,246,0.35); transform: translateY(-2px); }
.module-item:hover svg { stroke: var(--blue); }
.module-item svg { width: 20px; height: 20px; stroke: var(--gray2); flex-shrink: 0; transition: stroke 0.2s; }

/* ── SOLUTIONS ── */
.solution-card {
  background: var(--card); border-radius: var(--radius); padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  border: 1px solid var(--card-border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(59,130,246,0.3); }
.solution-icon {
  width: 52px; height: 52px; background: rgba(59,130,246,0.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0; border: 1px solid rgba(59,130,246,0.2);
}
.solution-icon svg { width: 24px; height: 24px; }
.solution-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.solution-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ── INDUSTRIES ── */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card {
  background: var(--card); border-radius: var(--radius); padding: 28px 20px;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 12px; font-size: 2rem;
  border: 1px solid var(--card-border);
  transition: all 0.25s; cursor: default;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.07); }
.industry-card span { font-size: 0.9rem; font-weight: 600; color: var(--gray); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border-radius: 12px; border: 1px solid var(--card-border); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-size: 0.97rem; font-weight: 600; color: #fff; text-align: left; gap: 12px;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(59,130,246,0.07); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; stroke: var(--blue); }
.faq-q.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 24px;
  font-size: 0.9rem; color: var(--gray); line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open { max-height: 200px; padding: 0 24px 20px; }

/* ── CONTACT FORM ── */
.contact-form { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-input {
  width: 100%; padding: 13px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  color: #fff; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border 0.2s, background 0.2s;
}
.form-input::placeholder { color: var(--gray2); }
.form-input:focus { border-color: rgba(59,130,246,0.6); background: rgba(59,130,246,0.07); }
.form-input option { color: #1f2937; background: #fff; }
.form-success {
  text-align: center; color: #fff; font-weight: 600;
  font-size: 1rem; margin-top: 16px; padding: 16px;
  background: rgba(59,130,246,0.15); border-radius: 8px;
  border: 1px solid rgba(59,130,246,0.3);
}
.hidden { display: none !important; }

/* ── FOOTER ── */
.footer { background: #060b16; color: #64748b; padding: 64px 0 0; border-top: 1px solid #1e2d45; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { height: 73px; object-fit: contain; margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.88rem; }
.footer-col ul a { color: #64748b; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1e2d45; padding: 20px 0;
  text-align: center; font-size: 0.82rem;
}

/* ── DEMO POPUP ── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box {
  background: #0d1426; border: 1px solid #1e2d45;
  border-radius: 20px; width: 100%; max-width: 560px;
  padding: 40px 36px; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease;
  max-height: 90vh; overflow-y: auto;
}
.popup-overlay.active .popup-box { transform: translateY(0) scale(1); }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray); transition: all 0.2s;
}
.popup-close:hover { background: rgba(239,68,68,0.15); color: #f87171; border-color: rgba(239,68,68,0.3); }
.popup-close svg { width: 16px; height: 16px; }
.popup-head { text-align: center; margin-bottom: 28px; }
.popup-icon {
  font-size: 2rem; margin: 0 auto 16px;
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25);
  display: flex; align-items: center; justify-content: center;
}
.popup-head h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.popup-head p  { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.popup-form { display: flex; flex-direction: column; gap: 12px; }
.popup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.popup-input {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  color: #fff; font-size: 0.92rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border 0.2s, background 0.2s;
}
.popup-input::placeholder { color: var(--gray2); }
.popup-input:focus { border-color: rgba(59,130,246,0.5); background: rgba(59,130,246,0.07); }
.popup-input option { color: #1f2937; background: #fff; }

/* Success state */
.popup-success {
  text-align: center; padding: 16px 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.ps-icon { font-size: 3rem; }
.popup-success h3 { font-size: 1.3rem; font-weight: 800; color: #fff; }
.popup-success p  { font-size: 0.92rem; color: var(--gray); line-height: 1.65; max-width: 360px; }
.popup-success p strong { color: #fff; }

/* Contact form success */
.form-success {
  text-align: center; padding: 40px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.fs-icon { font-size: 2.8rem; }
.form-success h4 { font-size: 1.15rem; font-weight: 800; color: #fff; }
.form-success p  { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.form-success p strong { color: #fff; }

@media (max-width: 480px) {
  .popup-box { padding: 28px 20px; }
  .popup-row { grid-template-columns: 1fr; }
}

/* ── FLOATING BUTTONS ── */
.float-btns {
  position: fixed; right: 20px; bottom: 32px;
  display: flex; flex-direction: column; gap: 12px; z-index: 999;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.float-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 28px rgba(0,0,0,0.45); }
.float-btn svg { width: 24px; height: 24px; }
.float-btn.whatsapp { background: #25d366; color: #fff; }
.float-btn.call     { background: var(--blue); color: #fff; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { align-items: center; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .fc-1,.fc-2,.fc-3,.fc-4,.fc-5,.fc-6 { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,15,30,0.98);
    backdrop-filter: blur(16px);
    padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid var(--card-border);
  }
  .hamburger { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 20px; padding: 20px 24px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2rem; }
}
