/* ==========================================================
   ABIRA SOLUTION — Landing Page Stylesheet
   ========================================================== */

/* ===== Design Tokens ===== */
:root {
  /* Brand */
  --navy: #0A1F44;
  --navy-2: #122a55;
  --navy-3: #1B3266;
  --navy-light: #2a4580;
  --amber: #F5A623;
  --amber-bright: #FFB81C;
  --amber-soft: #FEF3D9;
  --coral: #FF6B6B;
  --red: #DC2626;
  --green: #10B981;
  --purple: #7C3AED;
  --blue: #2563EB;

  /* Surface */
  --bg: #FAF8F3;        /* warm cream */
  --bg-2: #FFFFFF;
  --bg-3: #F1EDE3;
  --surface: #FFFFFF;

  /* Text */
  --text: #0F172A;
  --text-2: #334155;
  --text-3: #64748B;
  --text-4: #94A3B8;

  /* Lines */
  --line: rgba(15, 23, 42, 0.08);
  --line-2: rgba(15, 23, 42, 0.14);

  /* Type */
  --display: 'Bricolage Grotesque', Georgia, serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Layout */
  --maxw: 1280px;
  --gutter: 24px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
em { font-style: italic; }

/* ===== Layout helpers ===== */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.section-head { max-width: 800px; margin: 0 auto 64px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--amber-bright); }

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-title em {
  background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.section-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-3);
  margin-top: 20px;
  line-height: 1.65;
}

/* ===== Custom Cursor (desktop only) ===== */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform .15s var(--ease), width .25s var(--ease), height .25s var(--ease), opacity .2s ease;
  opacity: 0;
}
.cursor-dot { width: 6px; height: 6px; background: var(--amber); }
.cursor-ring { width: 38px; height: 38px; border: 1.5px solid rgba(245,166,35,0.5); }
@media (hover: hover) and (pointer: fine) {
  body.cursor-ready .cursor-dot, body.cursor-ready .cursor-ring { opacity: 1; }
  body.cursor-ready { cursor: none; }
  body.cursor-ready a, body.cursor-ready button { cursor: none; }
  body.cursor-ready .cursor-ring.hover { width: 60px; height: 60px; border-color: var(--amber); }
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  z-index: 9998;
  transition: width .1s linear;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all .35s var(--ease);
  background: rgba(250, 248, 243, 0);
  backdrop-filter: blur(0);
}
.nav.scrolled {
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 9px;
  transition: transform .4s var(--ease);
  flex-shrink: 0;
}
.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.05); }

.brand-text { display: flex; align-items: baseline; gap: 0; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand-name.light { color: var(--bg-2); }
.brand-suffix {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  color: var(--amber);
}

.nav-links {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 100px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all .2s var(--ease);
}
.nav-links a:hover { background: var(--navy); color: var(--bg-2); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--bg-2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all .25s var(--ease);
}
.nav-cta:hover { background: var(--amber); color: var(--navy); transform: translateY(-2px); }
.nav-cta i { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.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); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  color: var(--bg-2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu-inner a {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  color: var(--bg-2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.mobile-menu.open .mobile-menu-inner a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-menu-inner a:nth-child(1) { transition-delay: .1s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(2) { transition-delay: .15s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(3) { transition-delay: .2s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(4) { transition-delay: .25s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(5) { transition-delay: .3s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(6) { transition-delay: .35s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(7) { transition-delay: .4s; }
.mobile-cta {
  margin-top: 20px;
  color: var(--amber) !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.mesh-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.mesh-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 20s infinite ease-in-out;
}
.blob-1 { top: -10%; left: -15%; background: var(--amber); }
.blob-2 { top: 30%; right: -10%; background: var(--navy); animation-delay: -7s; }
.blob-3 { bottom: -15%; left: 30%; background: var(--coral); animation-delay: -14s; opacity: 0.25; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,31,68,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,31,68,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-watermark {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(180px, 30vw, 420px);
  color: rgba(10, 31, 68, 0.035);
  letter-spacing: -0.05em;
  z-index: -1;
  pointer-events: none;
  user-select: none;
  animation: watermarkDrift 30s linear infinite;
}
@keyframes watermarkDrift {
  0%, 100% { transform: translate(-50%, -50%) translateX(0); }
  50% { transform: translate(-50%, -50%) translateX(20px); }
}

.hero-inner { text-align: left; position: relative; max-width: 1000px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-2);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.dot.pulse {
  box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 7.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero-title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.grad-text {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--amber) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--text-2);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn i { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn-primary {
  background: var(--navy);
  color: var(--bg-2);
}
.btn-primary:hover {
  background: var(--amber);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(245,166,35,0.5);
}
.btn-primary:hover i { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line-2);
  color: var(--navy);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--bg-2);
  border-color: var(--navy);
}
.btn-amber {
  background: var(--amber);
  color: var(--navy);
}
.btn-amber:hover {
  background: var(--amber-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(245,166,35,0.6);
}
.btn-amber:hover i { transform: translateX(4px); }
.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--bg-2);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--amber);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 700px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -10px rgba(10,31,68,0.15);
  z-index: 2;
}
.card-1 {
  top: 22%;
  right: 6%;
  animation: bob 5s ease-in-out infinite;
}
.card-2 {
  top: 55%;
  right: 12%;
  animation: bob 6s ease-in-out infinite -2s;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-icon {
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 10px;
  display: grid; place-items: center;
}
.fc-icon.green { background: rgba(16,185,129,0.12); color: var(--green); }
.fc-icon i { width: 18px; height: 18px; }
.fc-title { font-weight: 700; font-size: 14px; color: var(--text); }
.fc-sub { font-size: 11px; color: var(--text-3); margin-top: 2px; }

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-3);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--text-3), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--amber);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -20px; }
  100% { top: 100%; }
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 50px 0;
  background: var(--navy);
  color: var(--bg-2);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--amber);
  margin-bottom: 24px;
}
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 45s linear infinite;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
}
.marquee-track span:not(:nth-child(2n)) { color: var(--bg-2); }
.marquee-track span:nth-child(2n) { color: var(--amber); }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about-intro { padding: 120px 0 80px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.about-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 22px;
}
.about-text p strong { color: var(--text); font-weight: 700; }
.about-text p em {
  color: var(--navy);
  font-weight: 600;
  font-style: italic;
}

.visual-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10,31,68,0.2);
  transform: rotate(-1deg);
  transition: transform .5s var(--ease);
}
.visual-card:hover { transform: rotate(0) translateY(-8px); }
.vc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.vc-dots { display: flex; gap: 6px; }
.vc-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--text-4);
}
.vc-dots span:nth-child(1) { background: #FF5F57; }
.vc-dots span:nth-child(2) { background: #FFBD2E; }
.vc-dots span:nth-child(3) { background: #28C840; }
.vc-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
  margin-left: auto;
}

.vc-body { padding: 24px; }
.vc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.vc-row:last-child { border-bottom: 0; }
.vc-row > i {
  width: 22px; height: 22px;
  color: var(--amber);
  flex-shrink: 0;
}
.vc-row > div:nth-of-type(1) { flex: 1; }
.vc-label { font-weight: 600; font-size: 15px; color: var(--text); }
.vc-meta { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.vc-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,185,129,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}
.vc-footer {
  padding: 12px 18px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--mono);
}
.vc-pulse-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ===== ADVANTAGES ===== */
.advantages { padding: 80px 0 100px; }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.adv-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: all .4s var(--ease);
  overflow: hidden;
}
.adv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(245,166,35,0.1) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.adv-card:hover {
  transform: translateY(-8px);
  border-color: var(--amber);
  box-shadow: 0 20px 40px -10px rgba(10,31,68,0.15);
}
.adv-card:hover::before { opacity: 1; }
.adv-num {
  font-family: var(--display);
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 28px;
}
.adv-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform .4s var(--ease);
}
.adv-card:hover .adv-icon { transform: rotate(-8deg) scale(1.05); }
.adv-icon i { width: 26px; height: 26px; }
.adv-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.adv-card p { font-size: 14px; color: var(--text-3); line-height: 1.6; }

/* ===== WHY US ===== */
.why-us { padding: 80px 0 100px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.why-head { text-align: left; }
.why-head .eyebrow { margin-bottom: 14px; }
.why-head .section-title { text-align: left; }

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all .35s var(--ease);
  position: relative;
}
.why-card:hover {
  transform: translateX(8px);
  background: var(--navy);
  color: var(--bg-2);
  border-color: var(--navy);
}
.why-card:hover h3 { color: var(--amber); }
.why-card:hover p { color: rgba(255,255,255,0.7); }
.why-card:hover .why-icon { background: var(--amber); color: var(--navy); }
.why-icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  background: var(--amber-soft);
  color: var(--amber);
  border-radius: 18px;
  display: grid;
  place-items: center;
  transition: all .35s var(--ease);
}
.why-icon i { width: 28px; height: 28px; }
.why-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  transition: color .35s ease;
}
.why-card p { font-size: 14px; color: var(--text-3); line-height: 1.6; transition: color .35s ease; }

/* ===== PRODUCTS ===== */
.products { padding: 100px 0; background: var(--bg-2); position: relative; }
.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(245,166,35,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(10,31,68,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.product-row:first-of-type { border-top: 0; }
.product-row.reverse { grid-template-columns: 1.1fr 1fr; }
.product-row.reverse .product-text { order: 2; }
.product-row.reverse .product-visual { order: 1; }

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--bg-2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}
.product-tag.amber { background: var(--amber); color: var(--navy); }
.product-tag.purple { background: var(--purple); }
.product-tag.red { background: var(--red); }
.tag-num {
  font-family: var(--mono);
  font-weight: 700;
  opacity: 0.8;
}

.product-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: -0.025em;
}
.product-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 500;
}
.product-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.product-desc strong { color: var(--navy); }

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 28px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}
.product-features li i {
  width: 18px; height: 18px;
  color: var(--green);
  flex-shrink: 0;
}
.product-features.amber li i { color: var(--amber); }
.product-features.purple li i { color: var(--purple); }
.product-features.red li i { color: var(--red); }

.product-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.product-tags span {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text-2);
}
.product-tags.amber span { background: var(--amber-soft); border-color: rgba(245,166,35,0.3); color: #92560F; }
.product-tags.purple span { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); color: var(--purple); }
.product-tags.red span { background: rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.2); color: var(--red); }

/* ===== Product Mockups ===== */
.mockup {
  position: relative;
  perspective: 1500px;
}
.mockup-screen {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(10,31,68,0.2);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .6s var(--ease);
}
.product-row:hover .mockup-screen { transform: rotateY(0deg) rotateX(0deg) scale(1.02); }
.product-row.reverse .mockup-screen { transform: rotateY(4deg) rotateX(2deg); }
.product-row.reverse:hover .mockup-screen { transform: rotateY(0deg) rotateX(0deg) scale(1.02); }

.mockup-nav {
  background: var(--bg-3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.mn-dots { display: flex; gap: 6px; }
.mn-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--text-4); }
.mn-dots span:nth-child(1) { background: #FF5F57; }
.mn-dots span:nth-child(2) { background: #FFBD2E; }
.mn-dots span:nth-child(3) { background: #28C840; }
.mn-url {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  margin-left: auto;
  background: var(--bg-2);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

/* ERP Mockup */
.erp-dashboard {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 380px;
}
.erp-sidebar {
  background: var(--navy);
  color: var(--bg-2);
  padding: 18px 10px;
}
.erp-logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  color: var(--amber);
  margin-bottom: 24px;
  text-align: center;
}
.erp-logo small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 2px;
}
.erp-menu { display: flex; flex-direction: column; gap: 4px; }
.erp-mi {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all .2s ease;
}
.erp-mi i { width: 12px; height: 12px; }
.erp-mi.active { background: rgba(245,166,35,0.15); color: var(--amber); }
.erp-mi:hover { background: rgba(255,255,255,0.05); color: white; }

.erp-main { padding: 20px; }
.erp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.erp-stat {
  padding: 14px;
  border-radius: 10px;
  border-left: 3px solid;
}
.erp-stat.blue { background: rgba(37,99,235,0.05); border-color: var(--blue); }
.erp-stat.amber { background: rgba(245,166,35,0.06); border-color: var(--amber); }
.erp-stat.green { background: rgba(16,185,129,0.06); border-color: var(--green); }
.es-label { font-size: 10px; color: var(--text-3); margin-bottom: 6px; }
.es-value { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--text); }
.es-trend { font-size: 10px; font-weight: 600; margin-top: 4px; }
.es-trend.up { color: var(--green); }
.es-trend.down { color: var(--red); }

.erp-chart {
  background: var(--bg);
  border-radius: 10px;
  padding: 14px;
}
.ec-title { font-size: 11px; font-weight: 600; margin-bottom: 12px; color: var(--text-2); }
.ec-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}
.ec-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--amber), rgba(245,166,35,0.3));
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.5s var(--ease-out) backwards;
}
.ec-bar:nth-child(1) { animation-delay: .1s; }
.ec-bar:nth-child(2) { animation-delay: .15s; }
.ec-bar:nth-child(3) { animation-delay: .2s; }
.ec-bar:nth-child(4) { animation-delay: .25s; }
.ec-bar:nth-child(5) { animation-delay: .3s; }
.ec-bar:nth-child(6) { animation-delay: .35s; }
.ec-bar:nth-child(7) { animation-delay: .4s; }
@keyframes barGrow {
  from { height: 0 !important; opacity: 0; }
}

/* SPMB Mockup */
.spmb-dashboard { min-height: 380px; padding: 24px; }
.spmb-hero {
  background: linear-gradient(135deg, var(--amber), #FF9C2A);
  border-radius: 12px;
  padding: 22px;
  color: var(--navy);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.spmb-hero::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px; height: 140px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.sh-school {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
.sh-stats { display: flex; gap: 24px; }
.sh-stat span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  display: block;
}
.sh-stat small { font-size: 11px; opacity: 0.8; }

.spmb-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sf-item {
  background: var(--bg);
  border-radius: 10px;
  padding: 16px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
  cursor: default;
}
.sf-item i { width: 22px; height: 22px; color: var(--amber); }
.sf-item:hover { background: var(--amber); color: var(--navy); transform: translateY(-3px); }
.sf-item:hover i { color: var(--navy); }

/* AI Chat Mockup */
.mockup-chat {
  display: flex;
  justify-content: center;
}
.chat-window {
  background: var(--bg-2);
  border-radius: 24px;
  border: 1px solid var(--line);
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(124,58,237,0.25);
  transform: rotateY(-3deg);
  transition: transform .5s var(--ease);
}
.product-row:hover .chat-window { transform: rotateY(0); }
.chat-header {
  background: linear-gradient(135deg, var(--purple), #5B21B6);
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ch-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
}
.ch-name { font-weight: 700; font-size: 14px; }
.ch-status {
  font-size: 11px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.dot-online {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
  animation: pulse 2s infinite;
}
.chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
  background:
    radial-gradient(circle at 30% 30%, rgba(124,58,237,0.03), transparent 50%),
    var(--bg-2);
}
.msg {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  animation: msgIn .5s var(--ease-out) forwards;
}
.msg.user {
  align-self: flex-end;
  background: var(--purple);
  color: white;
  border-bottom-right-radius: 4px;
  animation-delay: .3s;
}
.msg.bot {
  align-self: flex-start;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  animation-delay: .6s;
}
.msg.bot:nth-of-type(4) { animation-delay: 1.2s; }
.msg.user:nth-of-type(3) { animation-delay: 1s; }
.msg.typing { display: flex; gap: 4px; padding: 14px 16px; }
.msg.typing span {
  width: 6px; height: 6px;
  background: var(--text-3);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}
.msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.msg.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 80%, 100% { transform: scale(0.5); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Election Mockup */
.elec-dashboard {
  background: var(--bg);
  padding: 20px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.elec-map {
  background: var(--bg-2);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 16px;
  position: relative;
  min-height: 180px;
}
.elec-map svg { width: 100%; height: 100%; }
.elec-map circle[r="2"] { animation: pingDot 2.5s ease-in-out infinite; }
.elec-map circle:nth-of-type(4) { animation-delay: .5s; }
.elec-map circle:nth-of-type(5) { animation-delay: 1s; }
.elec-map circle:nth-of-type(6) { animation-delay: 1.5s; }
@keyframes pingDot {
  0%, 100% { r: 2; opacity: 1; }
  50% { r: 4; opacity: 0.6; }
}
.map-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.elec-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.es-card {
  background: var(--bg-2);
  border-radius: 10px;
  padding: 12px;
  border-top: 3px solid var(--red);
}
.es-l { font-size: 10px; color: var(--text-3); margin-bottom: 6px; }
.es-v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

/* ===== SERVICES ===== */
.services { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.srv-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all .4s var(--ease);
}
.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(10,31,68,0.15);
  border-color: var(--navy);
}
.srv-card.featured {
  background: var(--navy);
  color: var(--bg-2);
  border-color: var(--navy);
  transform: scale(1.02);
}
.srv-card.featured:hover { transform: scale(1.02) translateY(-8px); }
.srv-card.featured h3 { color: var(--amber); }
.srv-card.featured p { color: rgba(255,255,255,0.7); }
.srv-card.featured ul li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.srv-card.featured .srv-icon { background: var(--amber); color: var(--navy); }
.srv-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--amber);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 100px;
}
.srv-icon {
  width: 60px; height: 60px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: transform .4s var(--ease);
}
.srv-icon i { width: 28px; height: 28px; }
.srv-card:hover .srv-icon { transform: rotate(-8deg) scale(1.05); }
.srv-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.srv-card p {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 22px;
  line-height: 1.6;
}
.srv-card ul li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

/* ===== JOURNEY ===== */
.journey { padding: 100px 0; background: var(--bg-3); position: relative; overflow: hidden; }
.journey::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--amber);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 80px auto 0;
}
.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--amber), var(--navy));
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}
/* Default (left items): year on left side, card on right side */
.tl-item > .tl-year { grid-column: 1; }
.tl-item > .tl-card { grid-column: 3; }
/* Right items: card on left side, year on right side */
.tl-item.right > .tl-year { grid-column: 3; }
.tl-item.right > .tl-card { grid-column: 1; text-align: right; }
.tl-item.right .tl-dot { right: -28px; left: auto; }

.tl-year {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
}
.tl-year.future { color: var(--amber); font-size: clamp(60px, 7vw, 96px); }

.tl-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  position: relative;
  transition: all .4s var(--ease);
}
.tl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(10,31,68,0.15);
}
.tl-card.highlight {
  background: var(--navy);
  color: var(--bg-2);
  border-color: var(--navy);
}
.tl-card.highlight h3 { color: var(--amber); }
.tl-card.highlight p { color: rgba(255,255,255,0.75); }
.tl-card.future {
  background: transparent;
  border: 2px dashed var(--line-2);
}
.tl-card.future h3 { color: var(--text-2); }
.tl-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.tl-card p { font-size: 14px; color: var(--text-3); line-height: 1.6; }
.tl-card p strong { color: inherit; font-weight: 700; }
.tl-card p em { color: var(--amber); font-style: italic; }

.tl-dot {
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--bg-2);
  border: 3px solid var(--navy);
  border-radius: 50%;
}
.tl-dot.active {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 6px rgba(245,166,35,0.2);
  animation: pulse 2s infinite;
}
.tl-dot.future { border-style: dashed; opacity: 0.5; }

.tl-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ===== TEAM ===== */
.team { padding: 100px 0; }
.org-tree {
  max-width: 900px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.org-level {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.org-level.row { flex-wrap: wrap; }
.org-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
  transition: all .4s var(--ease);
}
.org-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(10,31,68,0.18);
}
.org-card.chairman { border-color: var(--navy); border-width: 2px; }
.org-card.ceo { border-color: var(--amber); border-width: 2px; }
.org-avatar {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--navy);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
}
.org-card.ceo .org-avatar { background: var(--amber); color: var(--navy); }
.org-card.cmo .org-avatar { background: var(--purple); color: white; }
.org-card.gm .org-avatar { background: var(--amber-bright); color: var(--navy); }
.org-card.coo .org-avatar { background: #14B8A6; color: white; }

.org-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.org-info h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.org-tag {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}
.org-connector {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, var(--line), var(--line-2), var(--line));
}

/* ===== PORTFOLIO ===== */
.portfolio { padding: 100px 0; background: var(--bg-2); }
.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
}
.ptab {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: all .25s var(--ease);
}
.ptab:hover { border-color: var(--navy); }
.ptab.active {
  background: var(--navy);
  color: var(--bg-2);
  border-color: var(--navy);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pf-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all .35s var(--ease);
  cursor: pointer;
}
.pf-card:hover {
  transform: translateY(-6px);
  background: var(--navy);
  color: var(--bg-2);
  border-color: var(--navy);
}
.pf-card:hover .pf-cat { color: var(--amber); }
.pf-card:hover p { color: rgba(255,255,255,0.7); }
.pf-card:hover .pf-arrow { background: var(--amber); color: var(--navy); transform: translate(2px, -2px); }
.pf-card.highlight {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--bg-2);
  border: 0;
}
.pf-card.highlight .pf-cat { color: var(--amber); }
.pf-card.highlight p { color: rgba(255,255,255,0.75); }
.pf-card.highlight .pf-arrow { background: var(--amber); color: var(--navy); }

.pf-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}
.pf-cat.amber { color: var(--amber); }
.pf-cat.purple { color: var(--purple); }
.pf-cat.red { color: var(--red); }
.pf-cat.green { color: var(--green); }
.pf-card h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.pf-card p { font-size: 13px; color: var(--text-3); line-height: 1.5; }
.pf-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: all .3s var(--ease);
}
.pf-arrow i { width: 18px; height: 18px; }

.pf-card.hidden { display: none; }

/* Testimoni */
.testi-block { margin-top: 100px; }
.testi-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all .35s var(--ease);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(10,31,68,0.15);
}
.quote-icon {
  width: 36px; height: 36px;
  color: var(--amber);
  margin-bottom: 20px;
  opacity: 0.6;
}
.testi-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.ta-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: white;
}
.ta-avatar.mc { background: var(--blue); }
.ta-avatar.fg { background: var(--red); }
.ta-avatar.dm { background: var(--green); }
.testi-author strong { font-size: 14px; color: var(--text); display: block; }
.testi-author small { font-size: 12px; color: var(--text-3); }

/* ===== NEWS ===== */
.news { padding: 100px 0; }
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
.news-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(10,31,68,0.18);
}
.news-card.featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.news-image {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.news-image.small { min-height: 140px; flex: 0 0 140px; }
.ni-bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: transform .8s var(--ease);
}
.news-card:hover .ni-bg { transform: scale(1.08); }
.ni-bg-1 { background: linear-gradient(135deg, #DC2626 0%, #7F1D1D 100%); }
.ni-bg-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(245,166,35,0.3) 0%, transparent 50%);
}
.ni-bg-2 { background: linear-gradient(135deg, #7C3AED, #4C1D95); }
.ni-bg-3 { background: linear-gradient(135deg, #F5A623, #C46A0F); }
.ni-bg-4 { background: linear-gradient(135deg, #0A1F44, #1B3266); }
.news-meta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: white;
}
.news-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.news-date { font-size: 12px; opacity: 0.9; }

.news-content {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-content h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--text);
}
.news-card.featured .news-content h3 { font-size: 26px; }
.news-content p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: color .25s ease;
}
.news-link i { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.news-link:hover { color: var(--amber); }
.news-link:hover i { transform: translateX(4px); }

/* ===== CTA ===== */
.cta-section { padding: 60px 0 100px; }
.cta-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  color: var(--bg-2);
  text-align: center;
}
.cta-bg-deco { position: absolute; inset: 0; overflow: hidden; }
.cta-blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-blob:not(.b2) {
  top: -50%; left: -20%;
  background: var(--amber);
  opacity: 0.25;
}
.cta-blob.b2 {
  bottom: -50%; right: -20%;
  background: var(--coral);
  opacity: 0.2;
}
.cta-content { position: relative; max-width: 700px; margin: 0 auto; }
.cta-content h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 12px 0 20px;
  color: var(--bg-2);
}
.cta-content h2 em {
  color: var(--amber);
  font-style: italic;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== CONTACT ===== */
.contact { padding: 80px 0 100px; background: var(--bg-3); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { text-align: left; margin-bottom: 20px; }
.contact-info .section-lead { margin-bottom: 40px; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all .3s var(--ease);
  color: inherit;
}
a.ci-item:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}
.ci-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--amber);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.ci-icon i { width: 20px; height: 20px; }
.ci-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ci-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 2px;
}

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 30px 60px -20px rgba(10,31,68,0.1);
}
.form-header h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--text);
}
.form-header p { font-size: 14px; color: var(--text-3); margin-bottom: 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
  font-family: var(--mono);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--bg);
  font-size: 14px;
  transition: all .25s ease;
  resize: vertical;
  font-family: var(--body);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--amber);
  background: var(--bg-2);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.1);
}

.form-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { cursor: pointer; }
.chip input { display: none; }
.chip span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: var(--bg);
  border: 1px solid var(--line-2);
  transition: all .2s ease;
}
.chip:hover span { border-color: var(--amber); }
.chip input:checked + span {
  background: var(--navy);
  color: var(--bg-2);
  border-color: var(--navy);
}

.form-btn { width: 100%; justify-content: center; padding: 16px 24px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand .brand-name { color: var(--bg-2); }
.footer-tag {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 380px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all .25s var(--ease);
}
.footer-socials a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-3px);
}
.footer-socials a i { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--bg-2);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ===========================================================
   RESPONSIVE — Tablet
   =========================================================== */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-grid { grid-template-columns: 1fr; gap: 50px; }

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

  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 0;
  }
  .product-row.reverse .product-text { order: 1; }
  .product-row.reverse .product-visual { order: 2; }

  .services-grid { grid-template-columns: 1fr; }
  .srv-card.featured { transform: none; }
  .srv-card.featured:hover { transform: translateY(-8px); }

  .timeline { padding: 0 20px; }
  .tl-item,
  .tl-item.right {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .tl-item > .tl-year,
  .tl-item.right > .tl-year { grid-column: 1; }
  .tl-item > .tl-card,
  .tl-item.right > .tl-card {
    grid-column: 2;
    text-align: left;
  }
  .tl-item.right .tl-dot { left: -28px; right: auto; }
  .tl-line { left: 30px; transform: none; }
  .tl-dot { left: -22px !important; }

  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-row: span 1; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 50px; }

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

  .float-card { display: none; }
}

/* ===========================================================
   RESPONSIVE — Mobile
   =========================================================== */
@media (max-width: 640px) {
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }

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

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

  .testi-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

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

  .org-card { min-width: auto; padding: 16px 18px; flex-direction: row; }
  .org-info h3 { font-size: 17px; }
  .org-level.row { gap: 12px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }

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

  .cta-card { padding: 50px 28px; }

  .section-head { margin-bottom: 40px; }
  .about-intro,
  .advantages,
  .why-us,
  .products,
  .services,
  .journey,
  .team,
  .portfolio,
  .news,
  .cta-section,
  .contact { padding: 70px 0; }

  .product-row { padding: 50px 0; }

  .marquee-track { font-size: 18px; gap: 20px; }

  .visual-card { transform: none; }

  .tl-card { padding: 22px 20px; }

  .scroll-cue { display: none; }
}

/* ===== Print / Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}