/* ============ TOKENS & RESET ============ */
:root {
  --navy: #080d21;
  --navy-card: #0c1433;
  --ink: #0f172a;
  --ink-soft: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --blue: #2f6fed;
  --blue-dark: #1d4ed8;
  --cyan: #06b6d4;
  --cyan-light: #e0f2fe;
  --grad: linear-gradient(135deg, #2f6fed 0%, #0284c7 100%);
  --grad-radial: radial-gradient(ellipse at center, #0f1942 0%, #080d21 100%);
  --green: #10b981;
  --amber: #f59e0b;
  --purple: #8b5cf6;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 50px rgba(15, 23, 42, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.accent {
  color: var(--blue);
}

.accent-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: #eef4ff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.eyebrow-light {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
}

.underline-mark {
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad);
  margin-top: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn .arrow {
  transition: transform .25s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 111, 237, 0.28);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(47, 111, 237, 0.38);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline-blue {
  background: #fff;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  box-shadow: var(--shadow-sm);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 111, 237, 0.25);
}

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-tagline {
  font-size: 8px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--muted);
}

.brand-tagline.light {
  color: #94a3b8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-cta {
  padding: 11px 22px;
  font-size: 14px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s ease;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  padding: 72px 0 50px;
  overflow: hidden;
  background:
    radial-gradient(700px 450px at 80% 20%, rgba(47, 111, 237, 0.06), transparent 70%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.hero-desc {
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 490px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Hero Visual Orbit Platform Stage */
.hero-visual {
  position: relative;
  height: 540px;
}

.platform-orbit-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orbit-ring-outer {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
}

.orbit-ring-inner {
  fill: none;
  stroke: #cbd5e1;
  stroke-width: 1;
  stroke-dasharray: 4 4;
  opacity: 0.6;
}

.orbit-ray {
  stroke: #e2e8f0;
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

/* 3D Platform Center Container */
.platform-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 485px;
  height: auto;
  z-index: 2;
  border-radius: 50%;
  animation: platformFloat 6s ease-in-out infinite;
}

.platform-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 15px 30px rgba(47, 111, 237, 0.2));
}

@keyframes platformFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

/* Floating Glass Orbit Nodes */
.orbit-node {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  animation: nodeBob 5s ease-in-out infinite;
}

.node-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.node-icon-box svg {
  width: 16px;
  height: 16px;
}

.box-cyan {
  background: #e0f2fe;
  color: #0284c7;
}

.box-blue {
  background: #eff6ff;
  color: #2563eb;
}

.box-indigo {
  background: #e0e7ff;
  color: #4338ca;
}

.box-sky {
  background: #e0f2fe;
  color: #0369a1;
}

.box-slate {
  background: #f1f5f9;
  color: #475569;
}

.box-teal {
  background: #ccfbf1;
  color: #0d9488;
}

.coming-soon {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.node-1 {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: .2s;
}

.node-2 {
  top: 22%;
  right: -2%;
  animation-delay: .6s;
}

.node-3 {
  top: 50%;
  right: -5%;
  animation-delay: 1s;
}

.node-4 {
  bottom: 18%;
  right: 0%;
  animation-delay: 1.4s;
}

.node-5 {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.8s;
}

.node-6 {
  bottom: 18%;
  left: -2%;
  animation-delay: 2.2s;
}

@keyframes nodeBob {

  0%,
  100% {
    transform: translateY(0) translateX(var(--tx, 0));
  }

  50% {
    transform: translateY(-7px) translateX(var(--tx, 0));
  }
}

.node-1,
.node-5 {
  --tx: -50%;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--muted);
}

.scroll-arrow {
  font-size: 15px;
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ============ WHAT WE DO ============ */
.what-we-do {
  background: var(--navy);
  padding: 60px 48px;
  margin: 48px auto;
  border-radius: 24px;
  max-width: 1280px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(8, 13, 33, 0.4);
}

.what-we-do::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 90% 0%, rgba(6, 182, 212, 0.15), transparent 70%);
  pointer-events: none;
}

.wwd-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.wwd-copy h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: #fff;
}

.wwd-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.wwd-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 10px;
  text-align: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wwd-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 189, 248, 0.4);
}

.wwd-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.wwd-icon-box svg {
  width: 22px;
  height: 22px;
}

.wwd-item p {
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.4;
}

.wwd-item .soon {
  display: block;
  font-size: 10px;
  color: #64748b;
  margin-top: 2px;
}

/* ============ FEATURED SOLUTION: KONEKPH360 ============ */
.konek-featured-banner{
  background: linear-gradient(135deg, #f2fbf6 0%, #e5f6ec 100%);
  border: 1px solid #bce6cf;
  border-radius: 24px;
  padding: 44px 48px;
  margin-bottom: 72px;
  box-shadow: 0 16px 40px rgba(10, 58, 34, 0.05);
}
.konek-featured-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.eyebrow-green{
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #15803d;
  background: #dcfce7;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.konek-title{
  font-size: 38px;
  font-weight: 900;
  color: #052e16;
  line-height: 1.1;
  margin-bottom: 2px;
  font-family: var(--font-display);
}
.konek-subtitle{
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #166534;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.konek-desc{
  color: #374151;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 24px;
}

.konek-features-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 28px;
}
.konek-feature-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #14532d;
}
.konek-feature-icon{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(22, 101, 52, 0.08);
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.konek-feature-icon svg{ width: 16px; height: 16px; }

.btn-green-dark{
  background: #052e16;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 8px 20px rgba(5, 46, 22, 0.2);
}
.btn-green-dark:hover{
  background: #14532d;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(5, 46, 22, 0.3);
}

/* Konek Visual Stage */
.konek-visual{ position: relative; }
.konek-stage{ position: relative; width: 100%; }

.konek-command-frame{
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}
.command-header-bar{
  height: 30px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}
.command-dots{ display: flex; gap: 5px; align-items: center; }
.command-title-badge{ font-size: 10px; font-weight: 700; color: #94a3b8; letter-spacing: 0.08em; }
.live-pill{ font-size: 10px; font-weight: 800; color: #ef4444; letter-spacing: 0.05em; }
.command-img{ width: 100%; height: auto; display: block; object-fit: cover; }

.konek-phone-frame{
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 210px;
  background: #000;
  border: 5px solid #1e293b;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
  z-index: 5;
}
.phone-notch{
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 14px;
  background: #000;
  border-radius: 999px;
  z-index: 6;
}
.phone-img{ width: 100%; height: auto; display: block; }

/* ============ PRODUCTS SECTION ============ */
.products {
  padding: 80px 0 50px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  margin-bottom: 6px;
}

.section-sub-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-featured {
  border: 2px solid var(--blue);
  box-shadow: 0 16px 40px rgba(47, 111, 237, 0.15);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.badge-popular {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.product-icon svg {
  width: 24px;
  height: 24px;
}

.icon-blue {
  background: #eff6ff;
  color: #2563eb;
}

.icon-green {
  background: #ecfdf5;
  color: #059669;
}

.icon-gradient {
  background: var(--grad);
  padding: 10px;
}

.mini-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.product-card h3 {
  font-size: 18.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Framed UI Dashboard Screenshot Mockup */
.dashboard-mockup-frame {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.mockup-bar {
  height: 24px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  padding-left: 10px;
  gap: 5px;
  border-bottom: 1px solid #cbd5e1;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot-red {
  background: #ef4444;
}

.dot-yellow {
  background: #f59e0b;
}

.dot-green {
  background: #10b981;
}

.dashboard-img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-features li {
  font-size: 12.8px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  font-weight: 500;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  margin-top: auto;
}

.link-cta .arrow {
  transition: transform .25s ease;
}

.link-cta:hover .arrow {
  transform: translateX(4px);
}

/* Custom AI Solution Banner */
.custom-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, #eef4ff 0%, #e6efff 100%);
  border: 1px solid #d5e4ff;
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-sm);
}

.custom-cta-stage {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cube-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(47, 111, 237, 0.2));
}

.custom-cta-copy {
  flex-grow: 1;
}

.custom-cta-copy h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.custom-cta-copy p {
  color: var(--muted);
  font-size: 14px;
  max-width: 620px;
  line-height: 1.6;
}

.custom-cta .btn {
  flex-shrink: 0;
}

/* Stats Bar */
.stats-bar {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 20px;
  box-shadow: var(--shadow-sm);
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef4ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.stat-icon-box svg {
  width: 22px;
  height: 22px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ============ WHY CHOOSE US ============ */
.why-us {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.why-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.why-wheel {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-orbit-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.why-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(47, 111, 237, 0.18);
  border: 2px solid #e0e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.why-center-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.why-item {
  position: absolute;
  width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon-box svg {
  width: 18px;
  height: 18px;
}

.box-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.box-amber {
  background: #fef3c7;
  color: #d97706;
}

.why-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.why-item p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.item-tl {
  top: 2%;
  left: -4%;
}

.item-tr {
  top: 2%;
  right: -4%;
}

.item-bl {
  bottom: 2%;
  left: -4%;
}

.item-br {
  bottom: 2%;
  right: -4%;
}

/* ============ TRUSTED BY ============ */
.trusted {
  padding: 0 0 80px;
}

.trusted-eyebrow {
  display: block;
  text-align: left;
  margin-bottom: 24px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.trusted-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.trusted-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: var(--blue);
}

.trusted-icon {
  font-size: 18px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 60px 0 0;
  margin-top: 20px;
  border-radius: 28px 28px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 16px 0 20px;
  color: #94a3b8;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}

.footer-socials a:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: #94a3b8;
  margin-bottom: 10px;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
  color: #64748b;
}

/* ============ REVEAL ANIM ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .konek-featured-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .konek-phone-frame {
    right: 0;
    bottom: -15px;
    width: 165px;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
  }

  .wwd-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-wheel {
    margin-top: 40px;
    aspect-ratio: auto;
    flex-direction: column;
    gap: 14px;
  }

  .item-tl,
  .item-tr,
  .item-bl,
  .item-br {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .why-orbit-stage {
    display: none;
  }

  .why-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .trusted-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 20px 32px;
    gap: 18px;
    display: none;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 420px;
    order: -1;
  }

  .orbit-node {
    font-size: 11px;
    padding: 6px 12px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .custom-cta {
    flex-direction: column;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 20px;
  }

  .konek-featured-banner {
    padding: 28px 18px;
    border-radius: 18px;
  }
  .konek-title {
    font-size: 28px;
  }
  .konek-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .konek-phone-frame {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -20px auto 0;
    width: 170px;
  }

  .wwd-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trusted-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .what-we-do {
    border-radius: 20px;
    padding: 44px 20px;
  }

  .hero {
    padding-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}