@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/style.css');

/* Manhattan-inspired: bold geometric sans for display, refined neutral for body */

/* ===== SUPRO BRAND PALETTE ===== */
:root {
  /* Brand colors from Supro logo */
  --navy: #1A2B5E;
  --navy-dark: #162347;
  --navy-darker: #0F1A35;
  --gold: #F5C400;
  --gold-dark: #D9AC00;
  --gold-light: #FFE066;
  --blue-mid: #1E5F8C;

  /* Light theme surfaces */
  --bg: #FFFFFF;
  --bg-alt: #F7F8FB;
  --bg-soft: #EDF0F7;
  --surface: #FFFFFF;

  /* Text */
  --text: #1A2B5E;
  --text-body: #3C4863;
  --text-muted: #6B7591;
  --text-dim: #9CA3B8;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #B8C2D8;

  /* Borders */
  --border: #E4E8F0;
  --border-strong: #D0D7E5;

  /* Effects */
  --gold-glow: rgba(245, 196, 0, 0.18);
  --shadow-sm: 0 2px 8px rgba(26, 43, 94, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 43, 94, 0.08);
  --shadow-lg: 0 24px 60px rgba(26, 43, 94, 0.12);

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* iOS Safari: prevent rubber-band scrolling at the document level */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: rgba(245,196,0,0.2); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button {
  cursor: pointer; border: none; background: none; font-family: inherit;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
input, textarea, select {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
/* iOS Safari: ensures form inputs are at least 16px so iOS doesn't auto-zoom on focus */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
  font-size: 16px;
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  /* iOS Safari: force GPU rendering layer to prevent flicker during scroll */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo img {
  height: 44px; width: auto;
  transition: var(--transition);
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 9px 14px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-body);
  transition: var(--transition);
}
.nav-links > li > a:hover, .nav-links > li > a.active-page {
  color: var(--navy); background: var(--bg-soft);
}
.nav-links .has-dropdown > a::after {
  content: '▾'; font-size: 0.65rem; margin-left: 2px; opacity: 0.6;
}
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block; padding: 10px 14px; border-radius: 6px;
  font-size: 0.875rem; color: var(--text-body);
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--bg-soft); color: var(--navy); }

.nav-cta {
  background: var(--navy) !important; color: white !important;
  padding: 10px 20px !important; border-radius: 8px !important;
  font-weight: 600 !important; font-size: 0.875rem !important;
  margin-left: 8px;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--navy-dark) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px 8px;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  -webkit-tap-highlight-color: rgba(245, 196, 0, 0.2);
}
.nav-hamburger:active {
  background: var(--bg-soft);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
/* Animate to X when menu is open */
.nav-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--surface); z-index: 999; overflow-y: auto;
  padding: 24px; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 12px 16px; border-radius: 8px;
  font-size: 1rem; font-weight: 500; color: var(--text-body);
}
.mobile-nav a:hover { background: var(--bg-soft); color: var(--navy); }
.mobile-nav .mobile-section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); padding: 16px 16px 4px;
}

/* ===== HERO ===== */
/* ===== HERO (Full-bleed image background, Manhattan-style) ===== */
#hero {
  position: relative;
  /* iOS Safari fix: vh is unreliable due to address bar. Use min-height with
     a safe rem fallback, and svh (small viewport height) where supported. */
  min-height: 640px;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 140px 0 100px;
  /* Prevent any descendant element from causing horizontal scroll */
  width: 100%;
  max-width: 100vw;
}

/* Full-width carousel as background */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-carousel-frame {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: opacity 1.4s ease, -webkit-transform 8s linear;
  transition: opacity 1.4s ease, transform 8s linear;
  /* GPU-accelerated rendering on iOS */
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero-slide.is-active {
  opacity: 1;
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
}

/* Dark gradient overlay across the full image so text is always readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(15, 26, 53, 0.92) 0%,
      rgba(15, 26, 53, 0.78) 35%,
      rgba(15, 26, 53, 0.50) 60%,
      rgba(15, 26, 53, 0.30) 100%
    ),
    linear-gradient(
      180deg,
      rgba(15, 26, 53, 0.4) 0%,
      transparent 20%,
      transparent 70%,
      rgba(15, 26, 53, 0.6) 100%
    );
}

/* Text content sits on top of the image */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
}
.hero-text {
  /* Use full-width text, no grid */
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245, 196, 0, 0.15);
  border: 1px solid rgba(245, 196, 0, 0.4);
  border-radius: 100px; padding: 7px 16px; font-size: 0.8rem;
  font-weight: 600; color: var(--gold); margin-bottom: 28px;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 800; line-height: 1.02;
  color: white; margin-bottom: 24px;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.hero-title .accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--gold);
  border-radius: 2px;
  opacity: 0.5;
}
.hero-desc {
  font-size: 1.15rem; color: rgba(255, 255, 255, 0.88); line-height: 1.65;
  margin-bottom: 40px; max-width: 620px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-weight: 700; font-size: 0.9rem;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 6px 20px rgba(245, 196, 0, 0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 196, 0, 0.45);
}
.btn-primary-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-weight: 700; font-size: 0.9rem;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 43, 94, 0.3);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); white-space: nowrap;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(245, 196, 0, 0.1);
}
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border-strong); color: var(--navy);
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); white-space: nowrap;
}
.btn-outline-navy:hover {
  border-color: var(--navy); background: var(--navy);
  color: white;
}

.hero-stats {
  display: flex; gap: 56px; margin-top: 56px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 600px;
}
.hero-stat-num {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-size: 2.2rem;
  font-weight: 800; color: white;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.78); margin-top: 4px; }

/* Carousel dots positioned at bottom-center of hero */
.hero-carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.hero-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}
.hero-carousel-dot.is-active {
  background: var(--gold);
  width: 28px;
  border-radius: 100px;
}


/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 16px; font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.08; letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem; color: var(--text-muted); max-width: 580px; line-height: 1.7;
}

/* ===== SERVICES ===== */
#services { background: var(--bg-alt); }
.services-intro {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 64px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  background: var(--surface); padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 22px; color: white;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  transform: scale(1.05) rotate(-2deg);
}
.service-name {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.05rem;
  font-weight: 700; color: var(--navy); margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.82rem; font-weight: 700;
  color: var(--navy); font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  transition: var(--transition);
}
.service-link::after { content: '→'; transition: var(--transition); }
.service-card:hover .service-link { color: var(--gold-dark); }
.service-card:hover .service-link::after { transform: translateX(3px); }

/* ===== STATS ===== */
#stats {
  background: var(--navy);
  padding: 72px 0;
  position: relative; overflow: hidden;
  color: white;
}
#stats::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(245, 196, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 100%, rgba(30, 95, 140, 0.4) 0%, transparent 50%);
}
.stats-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item { padding: 0 20px; }
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-size: 3rem;
  font-weight: 800; color: var(--gold); line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.875rem; color: var(--text-on-dark-muted); margin-top: 10px; font-weight: 500; }

/* ===== PRODUCTS ===== */
#products { background: var(--bg); }
.products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 56px;
}
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%; transform: translate(40%, -40%);
  opacity: 0; transition: var(--transition);
}
.product-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card:hover::before { opacity: 1; }
.product-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); background: var(--bg-soft);
  border-radius: 100px; padding: 5px 12px;
  margin-bottom: 20px; font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
}
.product-name {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.5rem;
  font-weight: 800; color: var(--navy); margin-bottom: 12px;
  letter-spacing: -0.02em; position: relative; z-index: 1;
}
.product-desc {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.product-features {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.product-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-body);
}
.product-feature::before {
  content: '✓'; color: var(--gold-dark);
  font-weight: 800; font-size: 0.9rem;
  flex-shrink: 0; line-height: 1.5;
}
.product-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 700; font-size: 0.875rem;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; transition: var(--transition);
  position: relative; z-index: 1;
}
.product-cta::after { content: '→'; transition: var(--transition); }
.product-cta:hover { color: var(--gold-dark); }
.product-cta:hover::after { transform: translateX(4px); }

/* ===== ABOUT ===== */
#about { background: var(--bg-alt); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-box {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-box::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.about-img-placeholder {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: rgba(255,255,255,0.95); font-size: 0.95rem;
  text-align: center; padding: 40px; font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
}
.about-img-placeholder .icon {
  font-size: 3.5rem; color: var(--gold);
}
.about-img-placeholder img {
  max-width: 280px;
  background: white;
  padding: 20px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.about-tag {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--navy);
  border-radius: var(--radius); padding: 20px 26px;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  box-shadow: var(--shadow-md);
}
.about-tag-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-tag-label { font-size: 0.78rem; opacity: 0.85; margin-top: 4px; font-weight: 500; }
.about-points { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.about-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: var(--transition);
}
.about-point:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.about-point-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  color: var(--navy);
}
.about-point-title {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-size: 0.95rem;
  font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.about-point-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ===== CONTACT ===== */
#contact { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.contact-detail:hover {
  border-color: var(--navy);
  transform: translateX(4px);
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: white; flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
}
.contact-detail-value { font-size: 0.92rem; color: var(--navy); font-weight: 600; }
.contact-detail-value a { color: var(--navy); }
.contact-detail-value a:hover { color: var(--gold-dark); }

.contact-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--navy); transition: var(--transition);
  font-weight: 700;
}
.social-btn:hover {
  background: var(--navy); color: var(--gold);
  border-color: var(--navy); transform: translateY(-2px);
}

.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.25rem;
  font-weight: 700; color: var(--navy); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--text-body); margin-bottom: 8px;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; letter-spacing: 0.04em;
}
.form-input, .form-textarea {
  width: 100%; background: var(--bg-alt);
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 16px; color: var(--navy);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  /* 16px prevents iOS Safari from zooming the page on focus */
  font-size: 16px;
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--navy); background: white;
  box-shadow: 0 0 0 3px rgba(26, 43, 94, 0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; background: var(--navy); color: white;
  padding: 14px; border-radius: 10px;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-weight: 700; font-size: 0.95rem;
  transition: var(--transition); margin-top: 8px;
}
.form-submit:hover {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 8px 24px rgba(245, 196, 0, 0.3);
}
.form-success {
  display: none; text-align: center; padding: 16px;
  background: rgba(245, 196, 0, 0.1); border: 1px solid rgba(245, 196, 0, 0.3);
  border-radius: 10px; margin-top: 16px;
  color: var(--navy); font-weight: 700; font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--navy);
  color: var(--text-on-dark-muted);
  padding: 72px 0 32px;
  position: relative; overflow: hidden;
}
#footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-brand-desc {
  font-size: 0.875rem; color: var(--text-on-dark-muted); line-height: 1.7;
  margin-top: 20px; max-width: 300px;
}
.footer-col-title {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem; color: var(--text-on-dark-muted); transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
  display: flex; gap: 12px; margin-top: 24px;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: white; font-weight: 700;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-on-dark-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: var(--text-on-dark-muted); }
.footer-legal a:hover { color: var(--gold); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 70px;
  background: var(--navy);
  position: relative; overflow: hidden;
  color: white;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(245, 196, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(30, 95, 140, 0.4) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold); }
.page-hero .section-label::before { background: var(--gold); }
.page-hero .section-title { color: white; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-on-dark-muted); margin-bottom: 20px;
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
}
.breadcrumb a { color: var(--text-on-dark-muted); }
.breadcrumb a:hover { color: var(--gold); }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 80px 0; background: var(--bg); }
.content-section.alt { background: var(--bg-alt); }
.content-prose {
  max-width: 800px;
  font-size: 1rem; color: var(--text-body); line-height: 1.8;
}
.content-prose p { margin-bottom: 18px; }
.content-prose h3 {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.35rem;
  font-weight: 700; color: var(--navy); margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.content-prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 12px 0 12px 24px;
  margin: 28px 0; font-style: italic;
  color: var(--text-muted);
}
.feature-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 40px;
}
.feature-list-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 20px;
  font-size: 0.875rem; color: var(--text-body);
  display: flex; align-items: center; gap: 12px;
  transition: var(--transition);
  font-weight: 500;
}
.feature-list-item::before {
  content: '→'; color: var(--gold-dark);
  font-weight: 800; flex-shrink: 0;
}
.feature-list-item:hover {
  border-color: var(--navy); transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 64px; text-align: center;
  position: relative; overflow: hidden;
  margin-top: 80px;
  color: white;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 30%, rgba(245, 196, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(30, 95, 140, 0.3) 0%, transparent 60%);
}
.cta-banner-title {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif; font-size: 2rem;
  font-weight: 800; color: white; margin-bottom: 12px;
  position: relative; z-index: 1;
  letter-spacing: -0.02em;
}
.cta-banner-desc {
  color: var(--text-on-dark-muted); margin-bottom: 32px;
  position: relative; z-index: 1;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #hero {
    padding: 110px 0 80px;
    min-height: 560px;
    min-height: 78vh;
    min-height: 78svh;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero mobile tuning */
  #hero {
    padding: 100px 0 80px;
    min-height: 540px;
    min-height: 70vh;
    min-height: 70svh;
  }
  .hero-content {
    max-width: 100%;
    padding-right: 8px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  .hero-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.05;
  }
  .hero-desc {
    font-size: 1rem;
    line-height: 1.6;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    padding-top: 28px;
  }
  .hero-stat-num {
    font-size: 1.6rem;
  }
  .hero-stat-label {
    font-size: 0.72rem;
  }
  /* Mobile: stronger gradient since text takes most of the screen */
  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(15, 26, 53, 0.88) 0%,
        rgba(15, 26, 53, 0.78) 55%,
        rgba(15, 26, 53, 0.58) 100%
      );
  }
  /* Carousel dots: hide on mobile (gesture-friendly, image rotates automatically) */
  .hero-carousel-dots {
    bottom: 16px;
  }
  .hero-carousel-dot {
    width: 7px;
    height: 7px;
  }
  .hero-carousel-dot.is-active {
    width: 22px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner-title { font-size: 1.5rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.4rem; }
  .nav-logo img { height: 36px; }
  .nav-inner { height: 64px; }
  .mobile-nav { top: 64px; }

  /* Container padding - tighter on mobile */
  .container { padding: 0 18px; }

  /* Section labels */
  .section-label { font-size: 0.7rem; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  .section-desc { font-size: 0.95rem; }

  /* Page hero on subpages */
  .page-hero { padding: 110px 0 56px; }
  .breadcrumb { font-size: 0.75rem; }

  /* Product preview (dashboard mockup) - hide on mobile, too dense */
  #product-preview > .container > div:nth-child(2) {
    display: none;
  }

  /* Contact form padding tighter */
  .contact-form { padding: 24px; }

  /* Touch-friendly tap targets (Apple recommends 44px min) */
  .nav-links > li > a,
  .footer-links a,
  .form-submit,
  .service-link,
  .product-cta {
    min-height: 32px;
  }

  /* Cookie banner mobile spacing */
  #cookie-banner {
    bottom: 8px;
    left: 8px;
    right: 8px;
  }
  .cookie-banner-inner {
    padding: 16px 18px;
  }
  .cookie-modal-card {
    border-radius: 14px;
    max-height: 88vh;
    max-height: 88svh;
  }
  .cookie-modal-header h2 { font-size: 1.2rem; }
}

/* Very small phones (iPhone SE, etc.) */
@media (max-width: 380px) {
  .hero-title { font-size: 1.85rem; }
  .hero-desc { font-size: 0.92rem; }
  .hero-stats { gap: 18px; }
  .hero-stat-num { font-size: 1.4rem; }
  .container { padding: 0 14px; }
  .section { padding: 48px 0; }
  .service-card { padding: 24px 20px; }
  .product-card { padding: 24px 20px; }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 9999;
  max-width: 1140px;
  margin: 0 auto;
  background: var(--navy);
  color: white;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  animation: cookieSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
}
.cookie-banner-text strong {
  display: block;
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.cookie-banner-text span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.cookie-btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.cookie-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.cookie-btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.cookie-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cookie-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
}
.cookie-btn-ghost:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}

/* ===== COOKIE MODAL ===== */
#cookie-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.cookie-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 26, 53, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-card {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  animation: cookieModalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes cookieModalIn {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 0;
}
.cookie-modal-header h2 {
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
}
.cookie-modal-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.cookie-modal-close:hover {
  background: var(--border);
  color: var(--navy);
}
.cookie-modal-desc {
  padding: 12px 28px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.cookie-modal-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
}
.cookie-row-text { flex: 1; }
.cookie-row-title {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.cookie-locked {
  display: inline-block;
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(245, 196, 0, 0.15);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}
.cookie-row-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #C8CFDD;
  border-radius: 100px;
  transition: 0.3s;
}
.cookie-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cookie-switch input:checked + .cookie-slider { background: var(--navy); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-switch input:disabled + .cookie-slider {
  background: var(--gold);
  cursor: not-allowed;
  opacity: 0.7;
}
.cookie-switch input:disabled + .cookie-slider::before { transform: translateX(20px); }
.cookie-modal-footer {
  display: flex;
  gap: 8px;
  padding: 0 28px 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cookie-banner-actions {
    flex-wrap: wrap;
  }
  .cookie-btn {
    flex: 1;
    min-width: 0;
  }
  .cookie-modal-footer {
    flex-direction: column;
  }
  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}

/* ===== HONEYPOT (Anti-phishing) - invisible to humans, visible to bots ===== */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ===== TURNSTILE CAPTCHA WIDGET ===== */
.turnstile-widget {
  margin: 16px 0 12px;
  min-height: 65px;
}
.turnstile-widget:empty {
  margin: 0;
}
/* Cloudflare's iframe takes care of its own styling; we just ensure it sits nicely in the form */
