:root {
    --black: #080808;
    --white: #f5f5f0;
    --blue: #485DAA;
    --blue-light: #5b72c4;
    --blue-dim: rgba(72,93,170,0.15);
    --gray-dark: #111111;
    --gray-mid: #1a1a1a;
    --gray-line: rgba(255,255,255,0.07);
    --text-muted: rgba(245,245,240,0.45);
    --text-secondary: rgba(245,245,240,0.72);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1000; opacity: 0.4;
  }

  /* ── CURSOR ── */
  .cursor {
    width: 8px; height: 8px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    width: 32px; height: 32px;
    border: 1px solid rgba(72,93,170,0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  }

  /* ── NAV ── */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  border-bottom: 1px solid var(--gray-line);
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
  line-height: 1;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* ── Dropdown (desktop hover) ── */
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px); left: 0;
  background: #111;
  border: 1px solid var(--gray-line);
  border-radius: 10px;
  padding: 8px;
  min-width: 240px;
  list-style: none;
  z-index: 1000;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
/* Bridge gap so hover doesn't break */
.nav-links .has-dropdown::after {
  content: '';
  position: absolute; top: 100%; left: 0;
  width: 100%; height: 16px;
}
.nav-links .has-dropdown:hover .dropdown { display: block; }
.nav-links .dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-links .dropdown li a::after { display: none; }
.nav-links .dropdown li a:hover {
  background: var(--blue-dim);
  color: var(--white);
}

/* ── CTA ── */
.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }

/* ── Hamburger (hidden on desktop) ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--gray-line);
  border-radius: 8px; cursor: pointer; flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block; width: 18px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════
   MOBILE ≤ 768px
══════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .mobile-menu-btn { display: flex; }
	
	  /* Fix logo */
  .nav-logo img {
    height: 28px !important;
  }

  /* Stack product cards to single column */
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* Fix card padding */
  .product-card {
    padding: 24px 20px;
  }

  /* Prevent text overflow in cards */
  .product-name {
    font-size: 1.25rem;
  }

  .product-desc {
    font-size: 0.9rem;
  }

  /* Fix feature list alignment */
  .product-features {
    padding-left: 16px;
  }

  .product-features li {
    font-size: 0.85rem;
  }

  /* Fix why-features grid */
  .why-features {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Stack hero stats */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    margin-top: 32px;
    padding-top: 24px;
  }

  .hero-stat {
    flex: unset !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
    border-right: none !important;
    padding: 16px 12px;
    border: 1px solid var(--gray-line);
    border-radius: 8px;
  }

  .hero-stat-num { font-size: 1.8rem; }
  .hero-stat-label { font-size: 0.75rem; }
	


  /* Slide-down panel */
  .nav-links {
    flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    border-bottom: 1px solid var(--gray-line);
    padding: 0 16px;
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }
  .nav-links.open {
    max-height: 600px;
    padding: 12px 16px 24px;
  }

  /* Top-level links */
  .nav-links > li > a {
    display: block;
    padding: 13px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-line);
  }
  .nav-links > li:last-child > a { border-bottom: none; }

  /* Underline animation off on mobile */
  .nav-links a::after { display: none; }

  /* Dropdown — tap to open, stacked below parent */
  .nav-links .has-dropdown::after { display: none; } /* remove bridge */
  .nav-links .dropdown {
    position: static;
    display: none; /* JS toggles .open */
    box-shadow: none;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    padding: 4px 0 8px 12px;
    margin-bottom: 8px;
    min-width: unset;
  }
  .nav-links .has-dropdown.open .dropdown { display: block; }
  .nav-links .dropdown li a {
    padding: 9px 10px;
    font-size: 0.9rem;
    border-bottom: none;
  }

  /* CTA full-width on mobile */
  .nav-cta {
    display: block; text-align: center;
    margin-top: 8px; padding: 13px 20px !important;
  }
	.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-contact {
    flex-direction: column !important;
    gap: 8px !important;
  }
}


  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 72px 48px 0;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--gray-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--gray-line) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72,93,170,0.18) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
  }
  .hero-glow-2 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72,93,170,0.1) 0%, transparent 70%);
    bottom: 10%; left: -100px;
    pointer-events: none;
    animation: glowPulse 12s ease-in-out infinite reverse;
  }



  @keyframes glowPulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
  }

  .hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; width: 100%;
    padding: 100px 0 80px;
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-dim);
    border: 1px solid rgba(72,93,170,0.3);
    color: var(--blue-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
  }
  .hero-tag .dot {
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
  }
  @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

  .hero-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3.2rem, 7vw, 7.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.4s;
  }
  .hero-headline .line-accent { color: var(--blue); display: block; }
  .hero-headline .line-outline {
    -webkit-text-stroke: 1px rgba(245,245,240,0.25);
    color: transparent;
    display: block;
  }

  .hero-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.6s;
  }

  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.8s;
  }

  .btn-primary {
    background: var(--blue);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
  }
  .btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(72,93,170,0.4);
  }
  .btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s ease;
    border: 1px solid var(--gray-line);
  }
  .btn-ghost:hover {
    border-color: rgba(72,93,170,0.5);
    background: var(--blue-dim);
    transform: translateY(-2px);
  }

  .hero-stats {
    margin-top: 80px;
    display: flex; gap: 0;
    border-top: 1px solid var(--gray-line);
    padding-top: 40px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1s;
  }
  .hero-stat {
    flex: 1;
    padding-right: 40px;
    border-right: 1px solid var(--gray-line);
    margin-right: 40px;
  }
  .hero-stat:last-child { border-right: none; margin-right: 0; }
  .hero-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .hero-stat-num span { color: var(--blue); }
  .hero-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── MARQUEE ── */
  .marquee-wrap {
    border-top: 1px solid var(--gray-line);
    border-bottom: 1px solid var(--gray-line);
    padding: 18px 0;
    overflow: hidden;
    background: var(--gray-mid);
  }
  .marquee-track {
    display: flex; gap: 64px;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  .marquee-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex; align-items: center; gap: 24px;
  }
  .marquee-item::after {
    content: '·';
    color: var(--blue);
    font-size: 1.5rem;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── SECTIONS ── */
  section { padding: 120px 48px; }

  .container { max-width: 1200px; margin: 0 auto; }

  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--blue);
  }

  .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .section-body {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.75;
    font-weight: 300;
  }

  /* ── PRODUCTS ── */
  .products-section { background: var(--gray-mid); }

  .products-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 64px;
    gap: 40px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-line);
    border: 1px solid var(--gray-line);
    border-radius: 16px;
    overflow: hidden;
  }

  .product-card {
    background: var(--gray-mid);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    display: flex; flex-direction: column;
  }
  .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .product-card:hover { background: #1f1f1f; }
  .product-card:hover::before { transform: scaleX(1); }

  .product-icon {
    width: 52px; height: 52px;
    background: var(--blue-dim);
    border: 1px solid rgba(72,93,170,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    font-size: 1.25rem;
    color: var(--blue);
    transition: background 0.3s, border-color 0.3s;
  }
  .product-card:hover .product-icon {
    background: rgba(72,93,170,0.25);
    border-color: rgba(72,93,170,0.4);
  }

  .product-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
  }

  .product-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 32px;
    flex: 1;
  }

  .product-features {
    list-style: none;
    margin-bottom: 36px;
  }
  .product-features li {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-line);
    display: flex; align-items: center; gap: 10px;
  }
  .product-features li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .product-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: gap 0.2s;
    letter-spacing: 0.02em;
  }
  .product-link:hover { gap: 14px; }

  /* ── WHY US ── */
  .why-section { background: var(--black); }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
  }

  .why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--gray-line);
    border: 1px solid var(--gray-line);
    border-radius: 12px;
    overflow: hidden;
  }

  .why-feature {
    background: var(--black);
    padding: 32px 28px;
    transition: background 0.2s;
  }
  .why-feature:hover { background: var(--gray-mid); }

  .why-feature-icon {
    font-size: 1.25rem;
    color: var(--blue);
    margin-bottom: 16px;
  }

  .why-feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .why-feature-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .why-content .section-body { max-width: 440px; }

  .why-highlights {
    margin-top: 48px;
    display: flex; flex-direction: column; gap: 0;
  }

  .why-highlight {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-line);
  }
  .why-highlight:first-child { border-top: 1px solid var(--gray-line); }

  .why-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.05em;
    padding-top: 3px;
    flex-shrink: 0;
  }

  .why-highlight-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .why-highlight-text p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ── STEPS ── */
  .steps-section { background: var(--gray-mid); }

  .steps-list {
    margin-top: 64px;
    display: flex; flex-direction: column; gap: 0;
    position: relative;
  }
  .steps-list::before {
    content: '';
    position: absolute;
    left: 23px; top: 0; bottom: 0;
    width: 1px;
    background: var(--gray-line);
  }

  .step-item {
    display: flex; gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-line);
    position: relative;
  }

  .step-num-wrap {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: var(--gray-mid);
    border: 1px solid var(--gray-line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--blue);
    position: relative; z-index: 1;
    transition: background 0.3s, border-color 0.3s;
  }
  .step-item:hover .step-num-wrap {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
  }

  .step-content { flex: 1; }
  .step-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    padding-top: 8px;
  }
  .step-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--black);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72,93,170,0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .cta-inner { position: relative; z-index: 2; }

  .cta-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
  }
  .cta-headline span { color: var(--blue); }

  .cta-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
  }

  /* ── OTHER SOLUTIONS ── */
  .other-section { background: var(--gray-mid); }

  .other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .other-card {
    background: var(--black);
    border: 1px solid var(--gray-line);
    border-radius: 12px;
    padding: 32px 28px;
    text-decoration: none;
    color: var(--white);
    display: block;
    transition: border-color 0.25s, transform 0.25s;
  }
  .other-card:hover {
    border-color: rgba(72,93,170,0.4);
    transform: translateY(-4px);
  }

  .other-icon {
    font-size: 1.375rem;
    margin-bottom: 20px;
    display: block;
  }

  .other-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .other-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--gray-dark);
    border-top: 1px solid var(--gray-line);
    padding: 80px 48px 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
  }

  .footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-top: 20px;
    max-width: 280px;
    font-weight: 300;
  }

  .footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid var(--gray-line);
    padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
  }

  .footer-bottom p {
    font-size: 0.8125rem;
    color: var(--text-muted);
  }

  .footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--blue); }


  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 0 28px; }
    section { padding: 80px 28px; }
    .hero { padding: 72px 28px 0; }
    .hero-inner { padding: 80px 0 60px; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 60px; }
    .why-grid .why-features { order: 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    footer { padding: 60px 28px 40px; }
    cta-section { padding: 80px 28px; }
  }

  }

  @media (max-width: 480px) {
    section { padding: 60px 20px; }
    .hero { padding: 72px 20px 0; }
    .hero-inner { padding: 60px 0 40px; }
    nav { padding: 0 20px; }
    .other-grid { grid-template-columns: 1fr; }
    footer { padding: 48px 20px 32px; }
  }@charset "UTF-8";
/* CSS Document */

/* ── COOKIE CONSENT ── */
.cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(17,17,17,.97); border-top: 1px solid var(--gray-line);
  padding: 18px 48px; transform: translateY(100%); transition: transform .5s ease;
  backdrop-filter: blur(12px);
}
.cookie-consent.show { transform: translateY(0); }
.cookie-content {
  max-width: 1200px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-content p { margin: 0; font-size: .875rem; color: var(--text-secondary); }
.cookie-content a { color: var(--blue-light); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 22px; border-radius: 6px; font-size: .875rem; font-weight: 600;
  cursor: pointer; border: none; transition: all .2s ease;
}
.accept-btn { background: var(--blue); color: white; }
.accept-btn:hover { background: var(--blue-light); }
.decline-btn { background: transparent; color: var(--text-secondary); border: 1px solid var(--gray-line); }
.decline-btn:hover { background: var(--gray-mid); color: var(--white); }


/* INSIGHTS SECTION */
.insights-section {
  padding: 100px 0;
  background: #0f0f12;
}

.insights-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.insights-header .section-label,
.insights-header .section-title,
.insights-header .section-body {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.insight-card {
  background: #16161b;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(72,93,170,.5);
}

.insight-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.insight-body {
  padding: 22px;
}

.insight-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #485daa;
  font-weight: 700;
}

.insight-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  margin: 10px 0;
  color: #fff;
}

.insight-body p {
  font-size: 0.9rem;
  color: #b5b5b5;
  line-height: 1.6;
}

.insight-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: #6f8cff;
}

