/* ============================================
   SE:MORE — Global Styles
   Gulf Blue + British Racing Green Theme
   ============================================ */

:root {
  /* Colors - Light Theme (Default) */
  --bg-primary: #f7fafc;
  --bg-secondary: #edf3f8;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f9f4;
  --text-primary: #0a1f2e;
  --text-secondary: #3d6070;
  --text-muted: #7a9aab;
  --gulf-blue: #3a9ad9;
  --gulf-blue-deep: #2b7cb8;
  --gulf-orange: #f28c28;
  --brg: #004d2b;
  --brg-light: #00784a;
  --brg-glow: #00b86e;
  --accent-1: #3a9ad9;
  --accent-2: #00b86e;
  --accent-3: #f28c28;
  --gradient-primary: linear-gradient(135deg, #3a9ad9 0%, #00b86e 50%, #2b7cb8 100%);
  --gradient-fire: linear-gradient(135deg, #f28c28 0%, #ff6b35 100%);
  --gradient-glow: linear-gradient(135deg, rgba(58, 154, 217, 0.12), rgba(0, 184, 110, 0.12));
  --border-color: rgba(0, 77, 43, 0.18);
  --border-hover: rgba(0, 77, 43, 0.35);
  --shadow-card: 0 12px 40px rgba(0, 30, 60, 0.15), 0 2px 8px rgba(0, 77, 43, 0.1);
  --shadow-glow: 0 12px 60px rgba(0, 184, 110, 0.2);
  --shadow-glow-blue: 0 12px 60px rgba(58, 154, 217, 0.2);
  --nav-bg: rgba(247, 250, 252, 0.92);
  --eye-color: #00b86e;
  --eye-glow: rgba(0, 184, 110, 0.5);
  --eye-pupil: #004d2b;

  /* Sizing & Structure (Redesigned) */
  --container-max: 1300px;
  --section-padding: 160px;
  --border-radius: 32px;
  --border-radius-sm: 16px;
  --border-radius-xs: 8px;
}

[data-theme="dark"] {
  --bg-primary: #060d12;
  --bg-secondary: #0b1318;
  --bg-card: #0f1a22;
  --bg-card-hover: #132530;
  --text-primary: #e8f0f4;
  --text-secondary: #8aa4b4;
  --text-muted: #5a7888;
  --gulf-blue: #7dccf8;
  --gulf-blue-deep: #4ba3d9;
  --brg-glow: #00e88a;
  --accent-1: #7dccf8;
  --accent-2: #00e88a;
  --gradient-primary: linear-gradient(135deg, #7dccf8 0%, #00e88a 50%, #4ba3d9 100%);
  --gradient-glow: linear-gradient(135deg, rgba(125, 204, 248, 0.2), rgba(0, 232, 138, 0.2));
  --border-color: rgba(125, 204, 248, 0.06);
  --border-hover: rgba(125, 204, 248, 0.15);
  --shadow-card: 0 12px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 80px rgba(0, 232, 138, 0.15);
  --shadow-glow-blue: 0 0 80px rgba(125, 204, 248, 0.15);
  --nav-bg: rgba(6, 13, 18, 0.85);
  --eye-color: #00e88a;
  --eye-glow: rgba(0, 232, 138, 0.6);
  --eye-pupil: #004d2b;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #0a1f2e;
  box-shadow: 0 8px 24px rgba(0, 232, 138, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(0, 232, 138, 0.45);
  transform: translateY(-4px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
  border-color: var(--gulf-blue);
  color: var(--gulf-blue);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Logo / Colon-Eyes — Cursor Tracking
   ============================================ */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.logo-se, .logo-more {
  color: var(--text-primary);
}

.logo-colon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 3px;
  position: relative;
}

/* Eyeball structure */
.logo-colon .eye {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--eye-color);
  box-shadow: 0 0 10px var(--eye-glow), 0 0 20px var(--eye-glow);
  position: relative;
  overflow: hidden;
}

.logo-colon .eye .pupil {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--eye-pupil);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out;
}

/* Large hero eyes */
.logo-colon.large {
  gap: 10px;
  padding: 0 8px;
}

.logo-colon.large .eye {
  width: 24px;
  height: 24px;
  box-shadow:
    0 0 20px var(--eye-glow),
    0 0 40px var(--eye-glow),
    0 0 80px rgba(0, 232, 138, 0.2);
}

.logo-colon.large .eye .pupil {
  width: 10px;
  height: 10px;
}

.logo-se.large, .logo-more.large {
  font-size: inherit;
}

/* Eye idle blink */
@keyframes blink {
  0%, 94%, 100% { transform: scaleY(1); }
  97% { transform: scaleY(0.05); }
}

.logo-colon .eye {
  animation: blink 4s ease-in-out infinite;
}

.logo-colon .eye:nth-child(2) {
  animation-delay: 0.05s;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-card);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  border-color: var(--gulf-blue);
  color: var(--gulf-blue);
}

/* Light mode (default): show moon icon, hide sun */
.icon-sun { display: none; }
.icon-moon { display: inline; }
/* Dark mode: show sun icon, hide moon */
[data-theme="dark"] .icon-sun { display: inline; }
[data-theme="dark"] .icon-moon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

/* Particle Canvas */
.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 204, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 204, 248, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 77, 43, 0.3);
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(125, 204, 248, 0.12);
  bottom: -50px;
  left: -100px;
  animation-delay: -7s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: rgba(242, 140, 40, 0.08);
  top: 35%;
  right: 15%;
  animation-delay: -14s;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brg-glow), var(--gulf-blue), transparent);
  opacity: 0.2;
  animation: scanDown 8s linear infinite;
}

.scan-line-2 {
  animation: scanDown 12s linear infinite reverse;
  opacity: 0.1;
  background: linear-gradient(90deg, transparent, var(--gulf-orange), var(--gulf-blue), transparent);
}

.shape-4 {
  width: 350px;
  height: 350px;
  background: rgba(0, 232, 138, 0.06);
  top: 60%;
  left: 30%;
  animation-delay: -3s;
}

@keyframes scanDown {
  0% { top: -2px; }
  100% { top: 100%; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 15px) scale(1.02); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border-hover);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gulf-blue);
  margin-bottom: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(125, 204, 248, 0.05);
}

.hero-title {
  font-size: clamp(5rem, 14vw, 12rem);
  margin-bottom: 24px;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.hero-logo-line {
  display: inline-flex;
  align-items: center;
}

/* Large hero eyes — bigger */
.logo-colon.large {
  gap: 14px;
  padding: 0 10px;
}

.logo-colon.large .eye {
  width: 32px;
  height: 32px;
  box-shadow:
    0 0 20px var(--eye-glow),
    0 0 40px var(--eye-glow),
    0 0 80px rgba(0, 232, 138, 0.2);
}

.logo-colon.large .eye .pupil {
  width: 14px;
  height: 14px;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  opacity: 0.9;
  min-height: 1.4em;
}

.typed-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typed-cursor {
  display: inline-block;
  color: var(--brg-glow);
  font-weight: 300;
  animation: cursorBlink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus, .stat-percent, .stat-x {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 1.5s ease 1s both;
}

.mouse {
  width: 26px;
  height: 40px;
  border-radius: 13px;
  border: 2px solid var(--text-muted);
  position: relative;
  opacity: 0.4;
}

.wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--brg-glow);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   Sections — General
   ============================================ */

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-hover);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brg-glow);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 232, 138, 0.04);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */

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

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.8;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.value-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.colon-icon {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.colon-icon::before,
.colon-icon::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--eye-color);
  box-shadow: 0 0 6px var(--eye-glow);
}

/* Vision Graphic */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-graphic {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eye-scanner {
  display: flex;
  gap: 36px;
  z-index: 2;
}

.scanner-eye {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--brg-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--eye-glow), inset 0 0 20px rgba(0, 232, 138, 0.1);
  animation: eyeFloat 4s ease-in-out infinite;
}

.scanner-eye.right {
  animation-delay: 0.4s;
}

.iris {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  transition: transform 0.1s ease-out;
}

@keyframes eyeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scanner-beam {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brg-glow), var(--gulf-blue), transparent);
  opacity: 0.3;
  animation: beamScan 4s ease-in-out infinite;
}

@keyframes beamScan {
  0%, 100% { top: 30%; }
  50% { top: 70%; }
}

.data-points span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gulf-blue);
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: dataReveal 4s ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes dataReveal {
  0%, 20%, 100% { opacity: 0; transform: translateY(5px); }
  40%, 60% { opacity: 0.7; transform: translateY(0); }
  80% { opacity: 0; transform: translateY(-5px); }
}

/* ============================================
   Visionary Orbit Interactive Feature
   ============================================ */

.orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  perspective: 1000px;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.founder-card:hover .orbit-container {
  opacity: 1;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  transform-style: preserve-3d;
}

.orbit-ring::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gulf-blue);
}

.ring-1 {
  border-color: rgba(58, 154, 217, 0.4);
  animation: orbitRotate 12s linear infinite;
}

.ring-2 {
  width: 85%;
  height: 85%;
  top: 7.5%;
  left: 7.5%;
  border-color: rgba(0, 184, 110, 0.3);
  animation: orbitRotateX 15s linear infinite reverse;
}

.ring-3 {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-color: rgba(242, 140, 40, 0.2);
  animation: orbitRotateY 18s linear infinite;
}

@keyframes orbitRotate {
  0% { transform: rotate(0deg) rotateX(60deg) rotateY(0deg); }
  100% { transform: rotate(360deg) rotateX(60deg) rotateY(0deg); }
}

@keyframes orbitRotateX {
  0% { transform: rotate(0deg) rotateX(120deg) rotateY(30deg); }
  100% { transform: rotate(360deg) rotateX(120deg) rotateY(30deg); }
}

@keyframes orbitRotateY {
  0% { transform: rotate(0deg) rotateX(45deg) rotateY(120deg); }
  100% { transform: rotate(360deg) rotateX(45deg) rotateY(120deg); }
}

/* ============================================
   Services Section
   ============================================ */

.services {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-sm);
  background: var(--gradient-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gulf-blue);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.4s ease;
}

.service-card:hover .service-hover-line {
  width: 100%;
}

/* ============================================
   Opportunity Lab
   ============================================ */

.opportunity-lab {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.opportunity-lab-grid,
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.opportunity-panel,
.opportunity-recommendation,
.roi-controls,
.roi-results {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

.opportunity-panel,
.opportunity-recommendation,
.roi-controls {
  padding: 32px;
}

.opportunity-panel-label,
.recommendation-kicker,
.roi-summary-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brg-glow);
}

.signal-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signal-chip {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.signal-chip:hover,
.signal-chip.active {
  border-color: var(--brg-glow);
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(58, 154, 217, 0.12), rgba(0, 184, 110, 0.12));
  transform: translateY(-2px);
}

.opportunity-recommendation {
  position: relative;
  overflow: hidden;
}

.opportunity-recommendation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 184, 110, 0.16), transparent 35%);
  pointer-events: none;
}

.opportunity-recommendation h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.opportunity-recommendation > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 42ch;
}

.recommendation-proof {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.recommendation-proof div {
  padding: 14px 16px;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.recommendation-proof span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommendation-proof strong {
  line-height: 1.5;
}

.recommendation-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   ROI Calculator
   ============================================ */

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

.roi-controls {
  display: grid;
  gap: 18px;
}

.roi-control {
  display: grid;
  gap: 10px;
}

.roi-control span {
  color: var(--text-secondary);
  font-weight: 600;
}

.roi-control strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
}

.roi-control input[type="range"] {
  width: 100%;
  accent-color: var(--brg-glow);
}

.roi-results {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.roi-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(58, 154, 217, 0.08), rgba(0, 184, 110, 0.08));
  border: 1px solid var(--border-color);
}

.roi-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.roi-card strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.1;
}

.roi-summary {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.roi-summary p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   Why Us Section
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.why-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.why-card:hover::before {
  opacity: 1;
}

.why-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Results Strip */
.results-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-card:hover {
  border-color: var(--gulf-blue-deep);
  box-shadow: var(--shadow-glow-blue);
}

.result-card:hover::before {
  opacity: 1;
}

.result-metric {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.result-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works {
  background: var(--bg-secondary);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 48px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gulf-blue);
  letter-spacing: 0.1em;
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brg-glow);
  box-shadow: var(--shadow-glow);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.step:hover .step-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 184, 110, 0.3);
}

.step-eyes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.step-eye {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brg-glow);
  box-shadow: 0 0 15px var(--eye-glow);
  animation: stepEyePulse 3s ease-in-out infinite;
}

.step-eye:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes stepEyePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 15px var(--eye-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 8px var(--eye-glow); }
}

.step-connector {
  position: absolute;
  left: 70px;
  top: 140px;
  width: 2px;
  height: calc(100% - 140px);
  background: rgba(0, 77, 43, 0.1);
  overflow: hidden;
  z-index: 1;
}

.step-connector::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--brg-glow), var(--gulf-blue));
  box-shadow: 0 0 16px var(--brg-glow);
  animation: dataPulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.step:nth-child(2) .step-connector::after {
  animation-delay: 1.5s;
}

@keyframes dataPulse {
  0% { top: -100px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.step:last-child .step-connector {
  display: none;
}

.step-content {
  padding-top: 8px;
}

.step-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brg-glow);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  padding-top: 20px;
}

.contact-info .section-title {
  text-align: left;
}

.contact-info > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-item svg {
  color: var(--brg-glow);
  flex-shrink: 0;
}

.contact-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--gulf-blue);
  color: var(--gulf-blue);
  transform: translateY(-2px);
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gulf-blue);
  box-shadow: 0 0 0 3px rgba(125, 204, 248, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.form-success.visible {
  display: flex;
}

.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a1f2e;
}

.form-success p {
  color: var(--text-secondary);
  font-weight: 500;
}

.booking-funnel-head {
  margin-bottom: 24px;
}

.booking-funnel-head h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.booking-funnel-head p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.booking-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.booking-path {
  text-align: left;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.25s ease;
}

.booking-path:hover,
.booking-path.active {
  border-color: var(--brg-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.booking-path-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brg-glow);
}

.booking-path strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
}

.booking-path small {
  display: block;
  color: var(--text-secondary);
  line-height: 1.6;
}

.booking-route-summary {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(58, 154, 217, 0.08), rgba(0, 184, 110, 0.08));
  border: 1px solid var(--border-color);
}

.booking-route-label {
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brg-glow);
}

.booking-route-summary h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.booking-route-summary p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group select:focus {
  border-color: var(--gulf-blue);
  box-shadow: 0 0 0 3px rgba(125, 204, 248, 0.12);
}

/* Glow CTA button */
.btn-glow {
  position: relative;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}

.btn-glow:hover::before {
  opacity: 0.6;
}

/* Card shine on hover (3D tilt) */
.card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(125, 204, 248, 0.06), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.service-card[data-tilt] {
  transform-style: preserve-3d;
  perspective: 800px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--brg-glow);
}

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

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

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--brg-glow);
}

/* ============================================
   Animations
   ============================================ */

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

.hero-content > * {
  animation: fadeInUp 0.8s ease both;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-headline { animation-delay: 0.3s; }
.hero-sub { animation-delay: 0.4s; }
.hero-ctas { animation-delay: 0.5s; }
.hero-stats { animation-delay: 0.7s; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

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

  .about-grid {
    gap: 40px;
  }
}

/* ============================================
   Founders Section
   ============================================ */

.founders-section {
  width: 100%;
}

.founders-heading {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 600;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.founder-card:hover {
  border-color: var(--gulf-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-blue);
}

.founder-avatar {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  box-shadow: 0 0 0 1px var(--border-color), var(--shadow-glow);
  filter: grayscale(20%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.founder-card:hover .founder-headshot {
  filter: grayscale(0%);
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--gulf-blue), var(--shadow-glow-blue);
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0a1f2e;
}

.founder-info {
  flex: 1;
}

.founder-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.founder-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
}

.founder-social-link {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.founder-social-link:hover {
  color: var(--gulf-blue);
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

/* ============================================
   Custom Cursor
   ============================================ */

@media (pointer: fine) {
  body.custom-cursor-enabled * { cursor: none !important; }
}

@media (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--brg-glow);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  box-shadow: 0 0 10px var(--eye-glow), 0 0 20px var(--eye-glow);
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(0, 184, 110, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.5s ease;
}

.cursor-ring.hovering {
  width: 48px;
  height: 48px;
  border-color: var(--brg-glow);
}

/* Cursor revealed after intro completes */
body.page-ready .cursor-dot { opacity: 1; }
body.page-ready .cursor-ring { opacity: 1; }

[data-theme="dark"] .cursor-dot { box-shadow: 0 0 10px rgba(0,232,138,0.8), 0 0 20px rgba(0,232,138,0.4); }
[data-theme="dark"] .cursor-ring { border-color: rgba(0,232,138,0.4); }
[data-theme="dark"] .cursor-ring.hovering { border-color: #00e88a; }

/* ============================================
   AI Chat Widget
   ============================================ */

.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

/* FAB toggle button */
.chat-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071a10;
  box-shadow:
    0 4px 20px rgba(0, 184, 110, 0.35),
    0 0 0 0 rgba(0, 184, 110, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  position: relative;
  animation: chatPulse 3s ease-in-out infinite;
}

@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,184,110,0.35), 0 0 0 0 rgba(0,184,110,0.35); }
  50%       { box-shadow: 0 4px 20px rgba(0,184,110,0.35), 0 0 0 10px rgba(0,184,110,0); }
}

.chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0, 184, 110, 0.5);
  animation: none;
}

.chat-widget.open .chat-toggle {
  animation: none;
}

/* Two-eye toggle icon */
.chat-toggle-eyes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.toggle-eye {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #071a10;
  display: block;
}

.chat-icon-close { display: none; }
.chat-widget.open .chat-icon-open { display: none; }
.chat-widget.open .chat-icon-close { display: block; }

.chat-badge {
  position: absolute;
  top: -5px;
  right: -7px;
  background: var(--gulf-orange);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Space Grotesk', sans-serif;
  animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-2px); }
}

.chat-widget.open .chat-badge { display: none; }

/* Chat window */
.chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 370px;
  max-height: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 184, 110, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
  animation: chatSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="dark"] .chat-window {
  background: #0e1c26;
  border-color: rgba(0, 232, 138, 0.1);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 232, 138, 0.08),
    inset 0 1px 0 rgba(0, 232, 138, 0.05);
}

.chat-widget.open .chat-window { display: flex; }

@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Chat header */
.chat-header {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(0,184,110,0.12) 0%, rgba(58,154,217,0.08) 100%);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[data-theme="dark"] .chat-header {
  background: linear-gradient(135deg, rgba(0,232,138,0.1) 0%, rgba(125,204,248,0.06) 100%);
  border-bottom-color: rgba(0,232,138,0.1);
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,110,0.15) 0%, var(--bg-card) 100%);
  border: 1.5px solid var(--brg-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0,184,110,0.2);
}

[data-theme="dark"] .chat-avatar {
  background: radial-gradient(circle, rgba(0,232,138,0.15) 0%, #0e1c26 100%);
  border-color: #00e88a;
  box-shadow: 0 0 16px rgba(0,232,138,0.3);
}

.mini-eye {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brg-glow);
  box-shadow: 0 0 6px var(--eye-glow);
  display: block;
  animation: miniEyePulse 3s ease-in-out infinite;
}

.mini-eye:nth-child(2) { animation-delay: 0.15s; }

@keyframes miniEyePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.chat-header-title {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.chat-header-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  color: var(--brg-glow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brg-glow);
  box-shadow: 0 0 6px var(--eye-glow);
  animation: statusPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

/* Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 330px;
  min-height: 180px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hover) transparent;
}

.chat-messages::-webkit-scrollbar {
  width: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 3px;
}

.chat-msg { display: flex; }

.chat-msg.bot .chat-bubble {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 16px 16px 16px 4px;
}

[data-theme="dark"] .chat-msg.bot .chat-bubble {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}

.chat-msg.user { justify-content: flex-end; }

.chat-msg.user .chat-bubble {
  background: var(--gradient-primary);
  color: #071a10;
  font-weight: 500;
  border-radius: 16px 16px 4px 16px;
}

.chat-bubble {
  padding: 10px 14px;
  font-size: 0.83rem;
  line-height: 1.6;
  max-width: 85%;
  word-wrap: break-word;
}

.chat-bubble.typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 12px 18px;
}

.chat-bubble.typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brg-glow);
  animation: typingDot 1.4s ease-in-out infinite;
}

.chat-bubble.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-bubble.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick replies */
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0 8px;
}

.quick-reply {
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid var(--border-hover);
  background: transparent;
  color: var(--gulf-blue);
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.quick-reply:hover {
  background: rgba(0, 184, 110, 0.1);
  border-color: var(--brg-glow);
  color: var(--brg-glow);
}

/* Input */
.chat-input-wrap {
  padding: 10px 12px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
  background: var(--bg-secondary);
}

[data-theme="dark"] .chat-input-wrap {
  background: rgba(0,0,0,0.2);
  border-top-color: rgba(0,232,138,0.1);
}

.chat-input-wrap input {
  flex: 1;
  padding: 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

[data-theme="dark"] .chat-input-wrap input {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: #e8f0f4;
}

.chat-input-wrap input::placeholder { color: var(--text-muted); }

.chat-input-wrap input:focus {
  border-color: var(--brg-glow);
  box-shadow: 0 0 0 3px rgba(0,184,110,0.12);
}

.chat-input-wrap button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071a10;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.chat-input-wrap button:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,184,110,0.35);
}

.chat-input-wrap input:disabled,
.chat-input-wrap button:disabled,
.quick-reply:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.chat-widget.busy .status-dot {
  animation-duration: 0.75s;
}

/* Mobile chat */
@media (max-width: 480px) {
  .chat-window {
    width: calc(100vw - 32px);
    right: -14px;
    max-height: 72vh;
  }
  .chat-messages { max-height: 42vh; }
}

/* ============================================
   Page Loader
   ============================================ */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  animation: loaderLogoIn 0.8s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes loaderLogoIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.loader-se, .loader-more {
  color: var(--text-primary);
}

.loader-colon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 5px;
}

.loader-eye {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brg-glow);
  box-shadow: 0 0 16px var(--eye-glow), 0 0 32px var(--eye-glow);
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-eye:nth-child(2) {
  animation-delay: 0.15s;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.loader-tagline {
  animation: loaderTagIn 0.8s 0.2s cubic-bezier(0.22,1,0.36,1) both;
}

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

.loader-bar {
  width: 160px;
  height: 3px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
  animation: loaderBarIn 0.8s 0.3s both;
}

@keyframes loaderBarIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.loader-progress {
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: loaderFill 0.9s 0.4s ease-out forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* ============================================
   Marquee Strip
   ============================================ */

.marquee-strip {
  overflow: hidden;
  padding: 16px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-dot {
  width: 5px !important;
  height: 5px;
  border-radius: 50%;
  background: var(--brg-glow) !important;
  box-shadow: 0 0 8px var(--eye-glow);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   CTA Banner
   ============================================ */

.cta-banner {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ============================================
   Back to Top Button
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--gulf-blue);
  color: var(--gulf-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

/* ============================================
   Chat Quick Reply Chips
   ============================================ */

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0 8px;
}

.quick-reply {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-hover);
  background: transparent;
  color: var(--gulf-blue);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.quick-reply:hover {
  background: rgba(125, 204, 248, 0.1);
  border-color: var(--gulf-blue);
}

/* ============================================
   Eye Zoom Intro Overlay
   ============================================ */

.eye-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: #060d12;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow: hidden;
}

/* Scan line texture on overlay */
.eye-zoom-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,232,138,0.015) 2px, rgba(0,232,138,0.015) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.eye-zoom-overlay.active {
  opacity: 1;
}

.eye-zoom-pair {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
  animation: eyePairEntrance 0.6s 0.1s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes eyePairEntrance {
  from { transform: scale(0.4) translateY(20px); opacity: 0; filter: blur(6px); }
  60%  { transform: scale(1.03) translateY(0); opacity: 1; filter: blur(0); }
  to   { transform: scale(1) translateY(0); opacity: 1; filter: blur(0); }
}

.eye-zoom-iris {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 38%, #00ff9a 0%, var(--brg-glow) 22%, #004d2b 55%, #060d12 100%);
  box-shadow:
    0 0 0 3px rgba(0,232,138,0.15),
    0 0 0 10px rgba(0,232,138,0.05),
    0 0 60px rgba(0,232,138,0.5),
    0 0 120px rgba(0,232,138,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: irisGlow 0.9s ease-in-out infinite alternate;
  transition: transform 0.2s ease;
}

@keyframes irisGlow {
  from { box-shadow: 0 0 0 3px rgba(0,232,138,0.1), 0 0 55px rgba(0,232,138,0.4), 0 0 110px rgba(0,232,138,0.2); }
  to   { box-shadow: 0 0 0 3px rgba(0,232,138,0.3), 0 0 80px rgba(0,232,138,0.75), 0 0 160px rgba(0,232,138,0.35); }
}

.eye-zoom-pupil {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, #020c07 0%, #060d12 100%);
  box-shadow: inset 0 0 12px rgba(0,0,0,0.9);
  position: relative;
  transition: width 0.4s ease, height 0.4s ease;
}

.eye-zoom-pupil::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  top: 6px;
  right: 6px;
}

/* Phase 2: Pupils "look around" - feels alive */
.eye-zoom-overlay.looking .eye-zoom-pupil {
  animation: pupilLookAround 1.0s cubic-bezier(0.4,0,0.2,1);
}

@keyframes pupilLookAround {
  0%   { transform: translate(0, 0); }
  15%  { transform: translate(8px, -3px); }
  35%  { transform: translate(-6px, 4px); }
  55%  { transform: translate(4px, 1px); }
  75%  { transform: translate(-2px, -2px); }
  100% { transform: translate(0, 0); }
}

/* Phase 3: Natural blink - irises squish vertically */
.eye-zoom-overlay.blink .eye-zoom-iris {
  animation: eyeBlink 0.22s ease-in-out;
}

@keyframes eyeBlink {
  0%, 100% { transform: scaleY(1); }
  45%      { transform: scaleY(0.06); }
}

/* Phase 4: Pupils dilate before zoom */
.eye-zoom-overlay.dilate .eye-zoom-pupil {
  width: 52px;
  height: 52px;
}

.eye-zoom-overlay.dilate .eye-zoom-iris {
  animation: irisGlowIntense 0.6s ease-in-out infinite alternate;
}

@keyframes irisGlowIntense {
  from { box-shadow: 0 0 0 4px rgba(0,232,138,0.2), 0 0 80px rgba(0,232,138,0.6), 0 0 160px rgba(0,232,138,0.35); }
  to   { box-shadow: 0 0 0 4px rgba(0,232,138,0.4), 0 0 100px rgba(0,232,138,0.9), 0 0 200px rgba(0,232,138,0.5); }
}

/* Phase 5: Smooth cinematic zoom through the pupils */
.eye-zoom-overlay.expanding .eye-zoom-pair {
  animation: eyePairZoom 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes eyePairZoom {
  0%   { transform: scale(1);   opacity: 1; filter: blur(0); }
  8%   { transform: scale(1.15); opacity: 1; filter: blur(0); }
  25%  { transform: scale(3);   opacity: 1; filter: blur(0); }
  50%  { transform: scale(10);  opacity: 1; filter: blur(0.5px); }
  75%  { transform: scale(28);  opacity: 0.7; filter: blur(2px); }
  100% { transform: scale(55);  opacity: 0; filter: blur(4px); }
}

.eye-zoom-overlay.done {
  display: none;
}

/* ============================================
   Google Maps Review CTA
   ============================================ */

.review-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(242, 140, 40, 0.3);
  background: rgba(242, 140, 40, 0.06);
  color: var(--gulf-orange);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
}

.review-cta:hover {
  background: rgba(242, 140, 40, 0.12);
  border-color: var(--gulf-orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.15);
}

/* ============================================
   Loader Tagline
   ============================================ */

.loader-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: taglineFadeIn 0.5s ease 0.3s forwards;
}

@keyframes taglineFadeIn {
  to { opacity: 0.7; }
}

/* ============================================
   Smooth Scroll Reveal Animations
   ============================================ */

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   Gradient Border Cards (cool effect)
   ============================================ */

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 1px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

/* ============================================
   Section Divider Wave
   ============================================ */

.section-wave {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
  margin: 16px auto 0;
}

/* ============================================
   Number Counter Glow
   ============================================ */

.stat:hover .stat-number {
  filter: drop-shadow(0 0 12px var(--eye-glow));
}

/* ============================================
   Enhanced Mobile Styles
   ============================================ */

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .logo-colon.large {
    gap: 8px;
    padding: 0 4px;
  }

  .logo-colon.large .eye {
    width: 20px;
    height: 20px;
  }

  .logo-colon.large .eye .pupil {
    width: 9px;
    height: 9px;
  }

  .hero-headline {
    font-size: clamp(1rem, 5vw, 1.4rem);
  }

  .hero-sub {
    font-size: 0.9rem;
    padding: 0 8px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
    display: block;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-sub {
    font-size: 0.95rem;
    padding: 0 8px;
  }

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

  .about-visual {
    order: -1;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .founder-card {
    padding: 16px 18px;
  }

  .founder-headshot {
    width: 80px;
    height: 80px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .opportunity-lab-grid,
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .opportunity-panel,
  .opportunity-recommendation,
  .roi-controls {
    padding: 24px 20px;
  }

  .roi-results {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

  .why-card {
    padding: 24px;
  }

  .results-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    padding: 32px 0;
  }

  .step-visual {
    flex-direction: row;
    justify-content: center;
  }

  .step-connector {
    display: none;
  }

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

  .contact-info .section-title {
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-details {
    align-items: center;
  }

  .contact-socials {
    justify-content: center;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .booking-path-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .nav-links,
  .nav-actions .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  body.mobile-menu-open .navbar {
    background: var(--bg-primary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    min-height: 100dvh;
    background: var(--bg-primary);
    background-color: var(--bg-primary);
    opacity: 1;
    z-index: 1000;
    padding: 100px 32px 32px;
    gap: 24px;
    overflow-y: auto;
    animation: fadeInUp 0.3s ease;
  }

  .nav-links.mobile-open a {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
  }

  .marquee-strip {
    padding: 12px 0;
  }

  .marquee-track span {
    font-size: 0.75rem;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-inner h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .cta-inner p {
    font-size: 0.95rem;
  }

  .chat-window {
    width: calc(100vw - 32px);
    right: -12px;
    max-height: 70vh;
  }

  .chat-messages {
    max-height: 45vh;
  }

  .back-to-top {
    bottom: 90px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .chat-widget {
    bottom: 16px;
    right: 16px;
  }

  .chat-toggle {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.4rem, 16vw, 3.5rem);
  }

  .logo-colon.large {
    gap: 6px;
    padding: 0 3px;
  }

  .logo-colon.large .eye {
    width: 16px;
    height: 16px;
  }

  .logo-colon.large .eye .pupil {
    width: 7px;
    height: 7px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .service-card {
    padding: 24px 20px;
  }

  .recommendation-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-lead {
    font-size: 1rem;
  }

  .about-values {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 16px;
  }
}

/* ============================================
   Light mode specific tweaks
   ============================================ */

:root .grid-lines,
[data-theme="light"] .grid-lines {
  background-image:
    linear-gradient(rgba(0, 77, 43, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 77, 43, 0.08) 1px, transparent 1px);
}

:root .floating-shape.shape-1,
[data-theme="light"] .floating-shape.shape-1 {
  background: rgba(58, 154, 217, 0.12);
}

:root .floating-shape.shape-2,
[data-theme="light"] .floating-shape.shape-2 {
  background: rgba(0, 184, 110, 0.08);
}

:root .floating-shape.shape-3,
[data-theme="light"] .floating-shape.shape-3 {
  background: rgba(242, 140, 40, 0.06);
}

:root .scan-line,
[data-theme="light"] .scan-line {
  opacity: 0.12;
}

[data-theme="dark"] .grid-lines {
  background-image:
    linear-gradient(rgba(125, 204, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 204, 248, 0.03) 1px, transparent 1px);
}

/* ── Light Mode Card Enhancements ─────────── */
:root .service-card,
[data-theme="light"] .service-card {
  box-shadow: var(--shadow-card);
}

:root .service-card:hover,
[data-theme="light"] .service-card:hover {
  box-shadow: 0 8px 40px rgba(0, 184, 110, 0.16), 0 2px 8px rgba(0, 77, 43, 0.1);
  border-color: rgba(0, 77, 43, 0.35);
}

:root .why-card,
[data-theme="light"] .why-card {
  box-shadow: var(--shadow-card);
}

:root .why-card:hover,
[data-theme="light"] .why-card:hover {
  box-shadow: 0 8px 40px rgba(0, 184, 110, 0.14);
}

:root .founder-card,
[data-theme="light"] .founder-card {
  box-shadow: var(--shadow-card);
}

/* ── Service Subpage Styles ─────────────────── */
.service-page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.service-page-hero .container {
  position: relative;
  z-index: 2;
}

.service-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-hover);
  background: rgba(0, 184, 110, 0.06);
  color: var(--brg-glow);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.service-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.service-page-hero .hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.service-page-hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-stat-row {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.service-stat-item .stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.service-stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.service-use-cases {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.use-case-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.use-case-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.use-case-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.use-case-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-process {
  padding: var(--section-padding) 0;
}

.process-steps-h {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}

.process-steps-h::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.process-step-h {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brg-glow);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step-h h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step-h p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-tools {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.tool-chip {
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}

.tool-chip:hover {
  border-color: var(--brg-glow);
  color: var(--brg-glow);
}

.service-page-cta {
  padding: var(--section-padding) 0;
  text-align: center;
}

.service-page-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.service-page-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.2s;
}

.back-link:hover { color: var(--gulf-blue); }

/* Nav dropdown */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  color: var(--text-secondary) !important;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--gradient-glow);
  color: var(--brg-glow) !important;
}

.nav-dropdown-icon {
  font-size: 1rem;
  width: 28px;
  text-align: center;
}

.nav-caret {
  font-size: 0.65rem;
  margin-left: 2px;
  transition: transform 0.2s;
}

.nav-item-dropdown:hover .nav-caret { transform: rotate(180deg); }

/* Explore button on service cards */
.service-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brg-glow);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.service-explore-link:hover { gap: 10px; }

@media (max-width: 900px) {
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps-h { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps-h::before { display: none; }
}

@media (max-width: 600px) {
  .use-case-grid { grid-template-columns: 1fr; }
  .process-steps-h { grid-template-columns: 1fr; }
  .service-stat-row { gap: 24px; }
}

/* ── Service Hero Visual Panel ───────────── */
.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1060px) {
  .service-hero-inner { grid-template-columns: 1fr 400px; }
}

.service-hero-visual { display: none; }

@media (min-width: 1060px) {
  .service-hero-visual { display: block; }
}

.hero-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.04);
  animation: mockupFloat 4s ease-in-out infinite;
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-color);
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-title {
  margin-left: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: 'Space Grotesk', monospace;
}

.mockup-body {
  padding: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
}

.mockup-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.mockup-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 8px;
}
.mockup-line.w-full  { width: 100%; }
.mockup-line.w-3q    { width: 75%; }
.mockup-line.w-half  { width: 50%; }
.mockup-line.accent  { background: rgba(0,120,212,0.45); }
.mockup-line.accent2 { background: rgba(0,77,43,0.45); }

.mockup-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.mockup-stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
}
.mockup-stat-box .msb-num {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: #4fc3f7;
}
.mockup-stat-box .msb-lbl {
  display: block;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.mockup-flow {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.mockup-flow-node {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.mockup-flow-node.active {
  border-color: rgba(0,120,212,0.6);
  background: rgba(0,90,156,0.2);
  color: #4fc3f7;
}
.mockup-flow-arrow {
  font-size: 0.65rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.mockup-bar-row { display: flex; flex-direction: column; gap: 10px; }
.mockup-bar-item { display: flex; align-items: center; gap: 8px; }
.mockup-bar-item > span {
  font-size: 0.68rem;
  color: var(--text-muted);
  width: 56px;
  flex-shrink: 0;
}
.mockup-bar-track {
  flex: 1; height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.mockup-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #005a9c, #004d2b);
}

.mockup-divider {
  height: 1px;
  background: var(--border-color);
  margin: 14px 0;
}

.mockup-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0,77,43,0.2);
  border: 1px solid rgba(0,77,43,0.4);
  font-size: 0.67rem;
  color: #6ee7a0;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.mockup-timeline { display: flex; flex-direction: column; }
.mockup-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  position: relative;
}
.mockup-timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px; top: 28px; bottom: -7px;
  width: 2px;
  background: var(--border-color);
}
.mockup-timeline-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--border-color);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem;
  margin-top: 2px;
}
.mockup-timeline-dot.done  { background: rgba(0,77,43,0.3); border-color: #28c840; color: #28c840; }
.mockup-timeline-dot.active { background: rgba(0,90,156,0.3); border-color: #4fc3f7; color: #4fc3f7; }
.mockup-timeline-text strong { display: block; font-size: 0.73rem; font-weight: 600; color: var(--text-primary); }
.mockup-timeline-text span   { font-size: 0.63rem; color: var(--text-muted); }

/* ── Service Page Mobile Responsive ────────── */
@media (max-width: 768px) {
  .service-page-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  .service-page-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  .service-page-hero .hero-sub {
    font-size: 1rem;
  }
  .service-stat-row {
    flex-direction: column;
    gap: 16px;
  }
  .service-stat-item {
    text-align: center;
    flex-direction: row;
    display: flex;
    gap: 8px;
    align-items: baseline;
    justify-content: center;
  }
  .service-stat-item .stat-num { font-size: 1.6rem; }
  .service-stat-item .stat-label { font-size: 0.8rem; }
  .service-page-cta h2 {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── Nav Dropdown Mobile Fix ─────────────── */
@media (max-width: 768px) {
  .nav-links.mobile-open .nav-item-dropdown .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-top: 8px;
    padding: 4px;
    min-width: unset;
    width: 100%;
    box-shadow: none;
    backdrop-filter: none;
  }
  .nav-links.mobile-open .nav-dropdown a {
    font-size: 1rem !important;
    font-weight: 500 !important;
    padding: 12px 16px;
  }
}

/* ── CTA Section Glow (all pages) ─────────── */
.service-page-cta {
  position: relative;
  overflow: hidden;
}
.service-page-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,232,138,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Pulse animation on primary CTA buttons */
.service-page-cta .btn-glow {
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,232,138,0.3); }
  50%      { box-shadow: 0 0 40px rgba(0,232,138,0.5), 0 0 80px rgba(0,232,138,0.15); }
}

/* ── Improved back-link styling ─────────── */
.back-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: var(--brg-glow);
}

/* ============================================
   Policy Pages (Privacy & Terms)
   ============================================ */

.policy-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.policy-hero .container {
  position: relative;
  z-index: 2;
}

.policy-hero .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-hover);
  background: rgba(0, 184, 110, 0.06);
  color: var(--brg-glow);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.policy-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.policy-hero .policy-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.policy-body {
  padding: 80px 0 100px;
  background: var(--bg-primary);
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 52px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-content h2 .policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #071a10;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.policy-content p {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.policy-content ul li {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 4px 0 4px 22px;
  position: relative;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brg-glow);
  box-shadow: 0 0 6px var(--eye-glow);
}

.policy-content a {
  color: var(--gulf-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.policy-content a:hover {
  color: var(--brg-glow);
  text-decoration: underline;
}

.policy-intro {
  font-size: 1.05rem !important;
  color: var(--text-primary) !important;
  line-height: 1.8 !important;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--brg-glow);
  border-radius: var(--border-radius-sm);
  margin-bottom: 8px !important;
}

[data-theme="dark"] .policy-intro {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
  .policy-hero {
    padding: 120px 0 56px;
    min-height: unset;
  }

  .policy-body {
    padding: 56px 0 72px;
  }

  .policy-content h2 {
    font-size: 1.1rem;
    margin-top: 40px;
  }

  .policy-content p,
  .policy-content ul li {
    font-size: 0.92rem;
  }

  .policy-intro {
    font-size: 0.97rem !important;
    padding: 18px 20px;
  }
}
