/* ============================================
   FGPS — Premium Rebuild
   Dark Navy + Teal + Amber Design System
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --navy-950: #080d18;
  --navy-900: #101828;
  --navy-800: #0d1526;
  --navy-700: #121e35;
  --navy-600: #182540;
  --navy-500: #1e2e4f;
  --navy-400: #2d4170;
  --navy-300: #4a6090;
  --navy-200: #7a93b8;
  --navy-100: #b8c8e0;
  --navy-50:  #dde6f2;

  --teal:     #00d4aa;
  --teal-dim: #00b893;
  --teal-glow: rgba(0, 212, 170, 0.15);
  --teal-border: rgba(0, 212, 170, 0.25);

  --amber:      #f5a623;
  --amber-dim:  #d98c14;
  --amber-glow: rgba(245, 166, 35, 0.18);

  --white:  #ffffff;
  --text-primary:   #edf1f7;
  --text-secondary: #a8b7cc;
  --text-muted:     #94a4ba;

  --border: rgba(255,255,255,0.12);
  --border-hover: rgba(0, 212, 170, 0.35);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

  --section-pad: 112px;
  --container-max: 1200px;
  --radius: 12px;
  --radius-lg: 20px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition: 0.28s var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: #33ddb8; }
h1, h2, h3, h4, h5, h6 { color: var(--white); font-weight: 700; line-height: 1.18; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ---------- Preview Banner ---------- */
.preview-banner {
  background: linear-gradient(90deg, var(--navy-800), var(--navy-700));
  border-bottom: 1px solid var(--teal-border);
  padding: 10px 0;
  position: relative;
  z-index: 200;
}
.preview-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.preview-banner-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.preview-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal); }
  50% { opacity: 0.6; box-shadow: 0 0 16px var(--teal); }
}
.preview-banner-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  border: 1px solid rgba(245, 166, 35, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  transition: all var(--transition);
  white-space: nowrap;
}
.preview-banner-cta:hover { background: var(--amber-glow); color: var(--amber); }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 15, 28, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
}
.logo-mark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  font-family: var(--font-mono);
}
.logo-tagline {
  font-size: 11px;
  color: var(--teal);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  font-weight: 500;
  opacity: 0.8;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links li a.active { color: var(--teal); }
.nav-cta {
  background: var(--amber) !important;
  color: #0a0f1c !important;
  font-weight: 600 !important;
  padding: 7px 18px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--amber-dim) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    position: fixed;
    top: 24px;
    right: 20px;
    z-index: 10001;
  }
  .navbar.scrolled .nav-toggle {
    top: 14px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-900);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10000;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 18px; padding: 12px 32px; }

  /* Hamburger → X animation when menu is open */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: #0a0f1c;
}
.btn-primary:hover { background: var(--amber-dim); color: #0a0f1c; box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35); }

.btn-teal {
  background: var(--teal);
  color: #0a0f1c;
}
.btn-teal:hover { background: var(--teal-dim); color: #0a0f1c; box-shadow: 0 8px 24px rgba(0, 212, 170, 0.3); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal-border);
}
.btn-outline:hover { border-color: var(--teal); background: var(--teal-glow); color: var(--teal); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.15); }

.btn-lg { font-size: 16px; padding: 13px 30px; }

/* ---------- Section Base ---------- */
.section {
  padding: var(--section-pad) 0;
}
.section-dark {
  background: var(--navy-950);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  padding: 5px 12px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 20px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 40%;
  transform-origin: center center;
  will-change: transform;
  filter: saturate(1.25) brightness(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(6, 11, 22, 0.55) 0%,
      rgba(6, 11, 22, 0.3) 55%,
      rgba(6, 11, 22, 0.05) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(6, 11, 22, 0.1) 0%,
      rgba(10, 15, 28, 0.25) 45%,
      rgba(16, 24, 40, 0.92) 100%
    );
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 24px;
  background: rgba(10, 15, 28, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  will-change: opacity, transform;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
h1.hero-headline {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.06;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
  will-change: opacity, transform;
}
.text-gradient {
  background: linear-gradient(135deg, var(--teal) 0%, #4de8c4 60%, #a0f0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-top: 0.15em;
  padding-top: 0.05em;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 40px;
  max-width: 620px;
  will-change: opacity, transform;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  will-change: opacity, transform;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: rgba(10, 15, 28, 0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  will-change: opacity, transform;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-number {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.hero-scroll span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.1); }
}

/* ---------- Problem Section ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 40px 32px;
  background: var(--navy-700);
  border: 1px solid var(--border);
  will-change: opacity, transform;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}
.problem-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.problem-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-size: cover;
  background-position: center;
  transition: opacity var(--transition), transform var(--transition);
  will-change: transform;
}
.problem-card:hover .problem-card-bg {
  opacity: 0.18;
  transform: scale(1.04);
}
.problem-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.problem-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.problem-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* ---------- Products Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 40px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border);
  cursor: default;
  will-change: opacity, transform;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.product-showcase-card:hover {
  border-color: var(--teal-border);
  box-shadow: 0 20px 64px rgba(0,0,0,0.55);
  transform: translateY(-4px) scale(1.02);
}
.product-showcase-card.card-cloud {
  grid-column: span 2;
  min-height: 260px;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.product-card-pattern {
  position: absolute;
  inset: 0;
  will-change: transform;
  transition: transform 0.5s var(--ease);
}
.product-showcase-card:hover .product-card-pattern {
  transform: scale(1.05);
}

/* Unique gradient patterns per card */
.card-seispos .product-card-pattern {
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 212, 170, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, #0d1a30 0%, #0a1220 100%);
}
.card-seispos .product-card-pattern::after { display: none; }
.card-spspro .product-card-pattern {
  background:
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(0, 212, 170, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0f1a2e 0%, #091218 100%);
}
.card-spspro .product-card-pattern::after { display: none; }
.card-seisbin .product-card-pattern {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 166, 35, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #12180a 0%, #101828 100%);
}
.card-seisbin .product-card-pattern::after { display: none; }
.card-cloud .product-card-pattern {
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0, 212, 170, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #081422 0%, #101828 100%);
}
.card-cloud .product-card-pattern::after { display: none;
}

.product-showcase-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  opacity: 0.8;
}
.product-showcase-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.product-showcase-card p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 380px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.product-showcase-label, .product-showcase-card h3, .product-showcase-card p,
.product-card-link { position: relative; z-index: 1; }
.product-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.product-card-link:hover { gap: 10px; color: #33ddb8; }

/* ---------- SeisCloudNAV Spotlight ---------- */
.spotlight {
  background: var(--navy-950);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.spotlight-copy .section-label { margin-bottom: 20px; }
.spotlight-copy h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 16px; }
.spotlight-lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.spotlight-copy p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 16px;
}
.check-list {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
}
.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--teal);
  margin-top: 1px;
}

.browser-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(0, 212, 170, 0.12),
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(0, 212, 170, 0.07);
  will-change: transform, opacity;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--navy-600);
  border-bottom: 1px solid var(--border);
}
.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #28ca41; }
.browser-url {
  margin-left: 8px;
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.browser-frame img {
  width: 100%;
  display: block;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ---------- Social Proof ---------- */
.trust-section {
  background: var(--navy-900);
  padding: var(--section-pad) 0;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.trust-badge {
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.trust-badge:hover { border-color: var(--teal-border); color: var(--teal); background: var(--teal-glow); }
.trust-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.trust-quote-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  will-change: opacity, transform;
}
.trust-quote-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}
.trust-quote-meta strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
}
.trust-quote-meta span {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.trust-number-card {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  will-change: opacity, transform;
}
.trust-big-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-num-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Why FGPS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  will-change: opacity, transform;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.why-card:hover {
  border-color: var(--teal-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-4px);
  z-index: 2;
  position: relative;
}
.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ---------- CTA Section ---------- */
.section-cta {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-950) 100%);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.cta-content p { font-size: 18px; color: var(--text-secondary); margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-micro { font-size: 14px; color: var(--text-muted); }
.cta-micro a { color: var(--teal); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover { color: var(--teal); border-color: var(--teal-border); background: var(--teal-glow); }
.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--teal); }

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--navy-950);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
}
.page-hero .section-label { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  max-width: 700px;
  margin: 0 auto 20px;
  letter-spacing: -1px;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
}

/* ---------- Products Page ---------- */
.product-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.guide-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition);
  will-change: opacity, transform;
}
.guide-card:hover { border-color: var(--teal-border); }
.guide-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  opacity: 0.8;
}
.guide-card h3 { font-size: 16px; margin-bottom: 10px; }
.guide-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.guide-card strong { color: var(--teal); font-weight: 600; }

.products-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-detail-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.product-detail-card:hover {
  border-color: var(--teal-border);
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.34);
  z-index: 2;
  position: relative;
}
.product-name-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.product-detail-card h3 { font-size: 24px; margin-bottom: 6px; }
.product-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 16px;
}
.product-detail-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.product-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.product-features li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 7px;
}

/* ---------- Services Page ---------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-full {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}
.service-full:last-child { border-bottom: none; }
.service-full:nth-child(even) { background: var(--navy-950); }
.service-full-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-full-inner.reverse { direction: rtl; }
.service-full-inner.reverse > * { direction: ltr; }
.service-number-large {
  font-family: var(--font-mono);
  font-size: 80px;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -20px;
}
.service-content .section-label { margin-bottom: 16px; }
.service-content h2 { font-size: clamp(24px, 3vw, 38px); margin-bottom: 16px; }
.service-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.service-visual {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual-pattern {
  width: 100%;
  height: 100%;
  position: relative;
}
.service-visual-grid-bg {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 212, 170, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- About Page ---------- */
.about-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 28, 0.7) 0%,
    rgba(10, 15, 28, 0.9) 100%
  );
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.about-hero-content .section-label { margin-bottom: 20px; }
.about-hero-content h1 {
  font-size: clamp(32px, 5vw, 58px);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.about-hero-content p { font-size: 18px; color: var(--text-secondary); }

.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  will-change: opacity, transform;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-weight: 500;
}
.timeline-item h3 { font-size: 18px; margin-bottom: 6px; }
.timeline-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}
.team-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  will-change: opacity, transform;
}
.team-card:hover { border-color: var(--teal-border); transform: translateY(-4px); z-index: 2; position: relative; }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--teal-glow);
  border: 2px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--teal);
}
.team-card h3 { font-size: 20px; margin-bottom: 6px; }
.team-card .team-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.team-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.principle-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  will-change: opacity, transform;
}
.principle-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.7;
}
.principle-card h3 { font-size: 16px; margin-bottom: 8px; }
.principle-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info h2 { font-size: 32px; margin-bottom: 12px; }
.contact-info p { color: var(--text-secondary); font-size: 16px; margin-bottom: 36px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-detail:hover { border-color: var(--teal-border); }
.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.contact-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}
.contact-detail-value a { color: var(--white); }
.contact-detail-value a:hover { color: var(--teal); }

.contact-form-wrapper {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-form-wrapper h3 { font-size: 22px; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--navy-700);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Claim Page ---------- */
.claim-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 212, 170, 0.07) 0%, transparent 60%),
    var(--navy-950);
  padding: 160px 0 80px;
  text-align: center;
}
.claim-hero-content { max-width: 640px; margin: 0 auto; }
.claim-hero-content .section-label { margin-bottom: 20px; }
.claim-hero-content h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; letter-spacing: -1px; }
.claim-hero-content p { font-size: 18px; color: var(--text-secondary); margin-bottom: 36px; }
.claim-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}
.claim-benefits h3 { font-size: 22px; margin-bottom: 24px; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-icon { flex-shrink: 0; color: var(--teal); margin-top: 1px; }
.benefit-item h4 { font-size: 15px; margin-bottom: 4px; }
.benefit-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.claim-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.claim-note a { color: var(--teal); }

/* ---------- Animations / Shared ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}
/* Fallback: if GSAP fails or hasn't loaded after 3s, show content anyway */
@keyframes reveal-fallback {
  to { opacity: 1; transform: none; }
}
.reveal {
  animation: reveal-fallback 0.5s ease forwards;
  animation-delay: 3s;
}
/* GSAP overrides this animation when it loads */
.gsap-loaded .reveal {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-quote-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .claim-content-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-full-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-full-inner.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  /* Hero image: reposition to show vessel on mobile portrait */
  .hero-bg img {
    object-position: 32% 52%;
    filter: saturate(1.4) brightness(1.25);
  }
  .hero {
    min-height: 100svh;
    padding-top: 80px;
  }
  /* Mobile overlay: dark enough for text, lighter at bottom for vessel */
  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(6, 11, 22, 0.35) 0%,
        rgba(10, 15, 28, 0.55) 35%,
        rgba(10, 15, 28, 0.5) 55%,
        rgba(10, 15, 28, 0.3) 70%,
        rgba(16, 24, 40, 0.9) 100%
      ) !important;
  }

  .problem-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-showcase-card.card-cloud { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .product-guide-grid { grid-template-columns: 1fr 1fr; }
  .products-list { grid-template-columns: 1fr; }
  .trust-quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px 0; flex-direction: column; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; margin: 4px 0; }
  .stat { padding: 4px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1.hero-headline { letter-spacing: -0.5px; }
  .hero-sub { color: #fff; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .product-guide-grid { grid-template-columns: 1fr; }
}

/* ---------- Video Background ---------- */
.network-bg-video { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: hidden; }
.network-bg-video video { width: 100%; height: 100%; object-fit: cover; }

/* Ensure all content sits above the video background */
.preview-banner,
.hero,
.section,
.spotlight,
.trust-section,
.footer,
.page-hero,
.about-hero,
.claim-hero {
  position: relative;
  z-index: 1;
}
/* Navbar stays fixed (defined above); just ensure it's above the video */

/* ── Floating Claim Widget ─────────────────────────────── */
.claim-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(10, 15, 28, 0.92);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 12px;
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,170,0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  animation: claimSlideUp 0.6s ease-out 2s both;
}
.claim-widget:hover {
  border-color: rgba(0, 212, 170, 0.5);
  box-shadow: 0 8px 32px rgba(0,212,170,0.15), 0 0 0 1px rgba(0,212,170,0.2);
}
.claim-widget-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00d4aa;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.claim-widget-btn:hover { color: #fff; }
.claim-widget-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 2px;
  margin-left: 4px;
  line-height: 0;
  transition: color 0.2s;
}
.claim-widget-close:hover { color: rgba(255,255,255,0.7); }
@keyframes claimSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  .claim-widget {
    bottom: 16px;
    right: 16px;
    left: 16px;
    justify-content: center;
  }
}
