/* ===== SARAF GROUP — PREMIUM STYLES ===== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  /* Primary Palette */
  --navy: #0c1828;
  --navy-mid: #132034;
  --navy-lt: #1a2d4a;
  --gold: #d4a04a;
  --gold-lt: #f0d090;
  --amber: #f28b3a;
  --teal: #3db9a4;
  --teal-lt: #a8e6cf;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f6f1;
  --cream: #faf7f0;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Effects */
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--off-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--amber);
}

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

ul {
  list-style: none;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(12, 24, 40, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.25);
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.brand-logos {
  display: flex;
  gap: 8px;
}

.brand-logos img {
  height: 48px;
  width: auto;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.brand-text .brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.brand-text .brand-sub {
  font-size: 11px;
  color: var(--gold-lt);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 5vw, 80px) 100px;
  background: linear-gradient(160deg, #0a1420 0%, #0f1f35 30%, #152a48 55%, #1a3052 75%, #0c1828 100%);
  overflow: hidden;
  color: var(--white);
}

/* Decorative Orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(212, 160, 74, 0.25), transparent 70%);
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  bottom: -150px;
  left: -80px;
  background: radial-gradient(circle, rgba(61, 185, 164, 0.2), transparent 70%);
  filter: blur(50px);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.05);
  }
}

/* Grid lines deco */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3.5vw + 1rem, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-names {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.85;
}

.hero-text .lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(212, 160, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 160, 74, 0.5);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: var(--white);
}

/* Stats Row */
.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  border-left: 2px solid rgba(212, 160, 74, 0.3);
}

.stat:first-child {
  padding-left: 0;
  border-left: none;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-lt);
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Hero Glass Card */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-lt);
}

.hero-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-card li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ========================================
   SECTIONS (General)
   ======================================== */
.section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}

.section-light {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.6rem);
  font-weight: 700;
  color: inherit;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.55);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  opacity: 0;
  transition: opacity var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.about-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.card-icon.mission {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.card-icon.vision {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.about-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.about-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* Leaders */
.leaders-row {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.leader-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: 60px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  min-width: 260px;
}

.leader-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.leader-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-lt);
}

.leader-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gray-900);
}

.leader-role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 74, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-card h3 {
  font-size: 20px;
  color: var(--gold-lt);
  margin-bottom: 16px;
}

.product-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.product-card li::before {
  content: '▸';
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

/* ========================================
   CAPABILITIES — ACCORDION CARDS
   ======================================== */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.cap-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.cap-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cap-card:hover::after {
  transform: scaleX(1);
}

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

.cap-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cap-card h3::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.cap-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cap-card li {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.cap-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gray-400);
  font-weight: 300;
}

/* ========================================
   FACILITIES
   ======================================== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.facility-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  position: relative;
}

.facility-card:hover {
  border-color: rgba(212, 160, 74, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.facility-card h3 {
  font-size: 22px;
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.facility-card .facility-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.facility-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.facility-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.facility-card li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================================
   IMPRESSIO (TECH) SECTION
   ======================================== */
.impressio-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.impressio-text h2 {
  font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.impressio-text h2 span {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impressio-logo {
  width: 180px;
  height: auto;
  margin-bottom: 12px;
  border-radius: var(--radius-xs);
}

.impressio-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}

.impressio-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.impressio-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.impressio-feature:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.impressio-feature .feat-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.impressio-feature .feat-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.impressio-feature .feat-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

.impressio-feature.highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(212, 160, 74, 0.06), rgba(212, 160, 74, 0.02));
  border: 1.5px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.impressio-feature.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--amber));
  border-radius: 0;
}

.impressio-feature.highlight .feat-title {
  font-size: 15px;
  color: var(--navy);
}

.impressio-feature.highlight .feat-desc {
  font-size: 14px;
  color: var(--gray-600);
}

.impressio-feature.highlight:hover {
  background: linear-gradient(135deg, rgba(212, 160, 74, 0.12), rgba(212, 160, 74, 0.04));
  border-color: var(--gold-lt);
}

/* Impressio Mockup Card */
.impressio-visual {
  position: relative;
}

.impressio-mockup {
  background: linear-gradient(145deg, var(--navy), var(--navy-lt));
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.impressio-mockup::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 160, 74, 0.08), transparent 50%);
  pointer-events: none;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

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

.mockup-dot.red {
  background: #ef4444;
}

.mockup-dot.yellow {
  background: #f59e0b;
}

.mockup-dot.green {
  background: #22c55e;
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mockup-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
}

.mockup-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-lt);
}

.mockup-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.mockup-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  margin-top: 10px;
  overflow: hidden;
}

.mockup-bar .fill {
  height: 100%;
  border-radius: 6px;
  animation: barFill 2s ease-out forwards;
}

.fill.gold {
  background: linear-gradient(90deg, var(--gold), var(--amber));
  width: 87%;
}

.fill.teal {
  background: linear-gradient(90deg, var(--teal), var(--teal-lt));
  width: 94%;
}

.fill.blue {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  width: 72%;
}

.fill.purple {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  width: 96%;
}

@keyframes barFill {
  from {
    width: 0;
  }
}

/* ========================================
   CLIENT LOGOS — MARQUEE
   ======================================== */
.client-marquee {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: all var(--transition);
  filter: grayscale(60%);
  opacity: 0.8;
}

.marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   COMPLIANCE
   ======================================== */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.compliance-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.compliance-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.compliance-card h3 {
  font-size: 18px;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.compliance-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compliance-card li {
  font-size: 14px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.compliance-card li::before {
  content: '•';
  color: var(--gold);
  font-weight: bold;
}

.compliance-card p {
  font-size: 15px;
  color: var(--gray-600);
}

/* ========================================
   POLICIES
   ======================================== */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.policy-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.policy-card h3 {
  font-size: 20px;
  color: var(--gold-lt);
  margin-bottom: 14px;
}

.policy-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-card a {
  color: var(--teal-lt);
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.contact-card h3 {
  font-size: 20px;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 10px;
  line-height: 1.7;
}

.contact-card a {
  color: var(--gold);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--amber);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal) !important;
  padding: 8px 16px;
  background: rgba(61, 185, 164, 0.08);
  border-radius: 999px;
  transition: all var(--transition);
}

.map-link:hover {
  background: rgba(61, 185, 164, 0.15);
  color: var(--teal) !important;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
  padding: 60px clamp(20px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-lt);
}

.footer .back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border: 1px solid rgba(212, 160, 74, 0.3);
  border-radius: 999px;
  transition: all var(--transition);
}

.footer .back-to-top:hover {
  background: rgba(212, 160, 74, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 20px;
  }

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

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

  .impressio-feature.highlight {
    grid-column: span 1;
  }

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

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

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

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

  .about-content {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 24, 40, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 20px;
    padding: 12px 24px;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .section {
    padding: 60px 20px;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .company-names {
    font-size: 0.85rem;
  }

  .hero-text .lead {
    font-size: 0.95rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat {
    padding: 12px 16px;
    border-left: 2px solid rgba(212, 160, 74, 0.3);
  }

  .stat:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }

  .stat-value {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10px;
  }

  .hero-card {
    padding: 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .brand-logos img {
    height: 38px;
    padding: 4px 8px;
  }

  .brand-text .brand-title {
    font-size: 16px;
  }

  .brand-text .brand-sub {
    font-size: 10px;
  }

  .section-header h2,
  .impressio-text h2 {
    font-size: 1.6rem;
  }

  .impressio-logo {
    width: 140px;
  }

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

  .leader-pills {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .marquee-track {
    animation-duration: 25s;
  }
}