/* ===================================================================
   M.S.I LIGHT ENTERPRISE — Premium Landing Page Stylesheet
   Color Palette: Dark Teal / Navy / Gold / White
   =================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors — derived from the letterhead */
  --color-base-dark: #0a1628;
  --color-navy: #0c2340;
  --color-teal: #0d4f4f;
  --color-teal-light: #14746f;
  --color-teal-accent: #1a9e8f;
  --color-gold: #c9a94e;
  --color-gold-light: #e8cf7a;
  --color-white: #ffffff;
  --color-off-white: #f0f2f5;
  --color-gray-100: #e4e7ec;
  --color-gray-200: #c8cdd6;
  --color-gray-400: #8892a4;
  --color-gray-600: #4a5568;
  --color-gray-800: #1e293b;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #0c2340 0%, #0d4f4f 50%, #14746f 100%);
  --gradient-hero: linear-gradient(160deg, #0a1628 0%, #0c2340 40%, #0d4f4f 100%);
  --gradient-card: linear-gradient(145deg, rgba(12, 35, 64, 0.85), rgba(13, 79, 79, 0.65));
  --gradient-gold: linear-gradient(135deg, #c9a94e, #e8cf7a);
  --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(26, 158, 143, 0.15) 0%, transparent 70%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 8rem);
  --container-max: 1280px;
  --container-wide: 1440px;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(26, 158, 143, 0.2);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-base-dark);
  color: var(--color-off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.container--wide {
  max-width: var(--container-wide);
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-gold { color: var(--color-gold); }
.text-teal { color: var(--color-teal-accent); }

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

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

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

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

/* Staggered children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  padding: 0.6rem 0;
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-navy);
  font-family: var(--font-heading);
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
}

.nav__logo-text span {
  color: var(--color-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gray-200);
  position: relative;
  letter-spacing: 0.3px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

.nav__links a:hover {
  color: var(--color-gold-light);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.6rem 1.6rem;
  background: var(--gradient-gold);
  color: var(--color-navy) !important;
  font-weight: 700 !important;
  border-radius: 50px;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  transition: transform var(--transition-base), box-shadow var(--transition-base) !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 78, 0.35);
  color: var(--color-navy) !important;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  padding: 8px;
}

.nav__toggle span {
  display: block !important;
  width: 28px !important;
  height: 3px !important;
  background-color: #ffffff !important;
  border-radius: 3px;
  margin-bottom: 6px;
  transition: all var(--transition-base);
}

.nav__toggle span:last-child {
  margin-bottom: 0;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 0.5) 0%,
    rgba(10, 22, 40, 0.7) 50%,
    rgba(10, 22, 40, 0.95) 100%
  );
}

/* Floating light orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  animation: float-orb 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(26, 158, 143, 0.15);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(201, 169, 78, 0.1);
  bottom: -50px;
  left: -80px;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: rgba(20, 116, 111, 0.2);
  top: 40%;
  right: 20%;
  animation-delay: -5s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(201, 169, 78, 0.12);
  border: 1px solid rgba(201, 169, 78, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-gray-200);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
}

.btn--primary {
  background: var(--gradient-gold);
  color: var(--color-navy);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 169, 78, 0.4);
}

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

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
}

.btn__icon {
  font-size: 1.1rem;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray-400);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Section Common ---------- */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-teal-accent);
  margin-bottom: 1rem;
}

.section__label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--color-teal-accent);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--color-gray-200);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  background: var(--color-base-dark);
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 78, 0.3), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.about__image-wrapper:hover img {
  transform: scale(1.05);
}

.about__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 79, 79, 0.3), transparent);
  pointer-events: none;
}

.about__accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-gold);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  color: var(--color-navy);
  font-family: var(--font-heading);
  box-shadow: var(--shadow-card);
}

.about__accent-box .number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about__accent-box .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.about__text {
  padding-left: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.about__feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 169, 78, 0.2);
  transform: translateY(-2px);
}

.about__feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(26, 158, 143, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-teal-accent);
}

.about__feature h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.about__feature p {
  font-size: 0.78rem;
  color: var(--color-gray-400);
  line-height: 1.5;
}

/* ---------- PRODUCTS / SERVICES SECTION ---------- */
.products {
  background: linear-gradient(180deg, var(--color-base-dark) 0%, var(--color-navy) 100%);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 158, 143, 0.08), transparent 70%);
  pointer-events: none;
}

.products__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.products__header .section__desc {
  margin: 0 auto;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
  cursor: pointer;
  group: true;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 78, 0.3);
  box-shadow: var(--shadow-glow);
}

.product-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.9) 100%);
}

.product-card__content {
  padding: 1.5rem;
  position: relative;
}

.product-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 158, 143, 0.15);
  border: 1px solid rgba(26, 158, 143, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: all var(--transition-base);
}

.product-card:hover .product-card__icon {
  background: rgba(201, 169, 78, 0.15);
  border-color: rgba(201, 169, 78, 0.3);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--color-gray-400);
  line-height: 1.6;
}

.product-card__arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-400);
  transition: all var(--transition-base);
}

.product-card:hover .product-card__arrow {
  background: var(--gradient-gold);
  color: var(--color-navy);
  transform: rotate(-45deg);
}

/* ---------- GLOBAL TRADE SECTION ---------- */
.global {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.global::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.global__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.global__content {
  position: relative;
  z-index: 1;
}

.global__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.global__highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.global__highlight:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(26, 158, 143, 0.3);
}

.global__highlight-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(201, 169, 78, 0.1);
  border: 1px solid rgba(201, 169, 78, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.global__highlight h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.global__highlight p {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  line-height: 1.6;
}

.global__visual {
  position: relative;
}

.global__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.global__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.global__map::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* Animated dots on the map */
.global__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  z-index: 2;
}

.global__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  animation: ping 2s ease-out infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.global__dot--1 { top: 35%; left: 45%; animation-delay: 0s; }
.global__dot--2 { top: 28%; left: 75%; animation-delay: 0.5s; }
.global__dot--3 { top: 55%; left: 20%; animation-delay: 1s; }
.global__dot--4 { top: 40%; left: 62%; animation-delay: 1.5s; }

.global__dot--1::after { animation-delay: 0s; }
.global__dot--2::after { animation-delay: 0.5s; }
.global__dot--3::after { animation-delay: 1s; }
.global__dot--4::after { animation-delay: 1.5s; }

/* ---------- WHY CHOOSE US SECTION ---------- */
.why {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-base-dark) 100%);
  position: relative;
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 158, 143, 0.3), transparent);
}

.why__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.why__header .section__desc {
  margin: 0 auto;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 169, 78, 0.2);
  box-shadow: var(--shadow-card);
}

.why-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.why-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(26, 158, 143, 0.12);
  border: 1px solid rgba(26, 158, 143, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.why-card:hover .why-card__icon {
  background: rgba(201, 169, 78, 0.1);
  border-color: rgba(201, 169, 78, 0.25);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.why-card__desc {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  line-height: 1.7;
}

/* ---------- CEO SECTION ---------- */
.ceo {
  background: linear-gradient(135deg, var(--color-base-dark) 0%, rgba(12, 35, 64, 0.4) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ceo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ceo__content {
  padding-right: 2rem;
}

.ceo__quote-icon {
  font-family: serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(201, 169, 78, 0.3);
  margin-bottom: -2rem;
}

.ceo__quote {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.ceo__author {
  display: flex;
  flex-direction: column;
}

.ceo__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.ceo__title {
  font-size: 0.9rem;
  color: var(--color-teal-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 0.2rem;
}

.ceo__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

.ceo__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3/4;
}

/* ---------- CONTACT / CTA SECTION ---------- */
.contact {
  background: var(--color-base-dark);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 78, 0.3), transparent);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.contact__info {
  padding: 3.5rem;
  position: relative;
}

.contact__info::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(26, 158, 143, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-teal-accent);
}

.contact__detail h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--color-gold-light);
}

.contact__detail p {
  font-size: 0.88rem;
  color: var(--color-gray-200);
  line-height: 1.5;
}

.contact__form-wrapper {
  padding: 3.5rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray-200);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-base);
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-teal-accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(26, 158, 143, 0.15);
}

.form-group select option {
  background: var(--color-navy);
  color: var(--color-white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.contact__form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 1rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: rgba(8, 15, 30, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand-desc {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  transition: all var(--transition-base);
}

.footer__links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--color-gray-400);
}

.footer__contact-item span:first-child {
  color: var(--color-teal-accent);
  font-size: 1rem;
  min-width: 20px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-gray-600);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--color-gray-600);
}

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

/* ---------- MARQUEE / TICKER ---------- */
.ticker {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.ticker__track {
  display: flex;
  animation: ticker-scroll 25s linear infinite;
  width: max-content;
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2rem;
  font-size: 0.85rem;
  color: var(--color-gray-400);
  white-space: nowrap;
  font-weight: 500;
}

.ticker__item span {
  color: var(--color-gold);
  font-size: 0.6rem;
}

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

/* ---------- Custom cursor glow (optional, desktop) ---------- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 158, 143, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition-base);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    appearance: none;
    z-index: 1001;
    background: transparent !important;
  }
}

@media (max-width: 900px) {
  .about__grid,
  .global__grid,
  .contact__wrapper,
  .ceo__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ceo__grid {
    text-align: center;
  }

  .ceo__content {
    padding-right: 0;
  }

  .ceo__visual img {
    aspect-ratio: 1/1;
    object-position: center top;
  }

  .contact__info::after {
    display: none;
  }

  .about__text {
    padding-left: 0;
  }

  .hero__stats {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero__scroll {
    display: none;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .contact__info,
  .contact__form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__title {
    font-size: 2.2rem;
  }
}

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.4rem;
  min-width: 320px;
  max-width: 440px;
  background: rgba(12, 35, 64, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateX(calc(100% + 3rem));
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}

.toast--visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.toast__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.toast--success .toast__icon {
  background: rgba(26, 158, 143, 0.2);
  color: var(--color-teal-accent);
  border: 1px solid rgba(26, 158, 143, 0.3);
}

.toast--error .toast__icon {
  background: rgba(220, 53, 69, 0.2);
  color: #f87171;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.toast__content {
  flex: 1;
}

.toast__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.toast--success .toast__title {
  color: var(--color-teal-accent);
}

.toast--error .toast__title {
  color: #f87171;
}

.toast__message {
  font-size: 0.8rem;
  color: var(--color-gray-400);
  line-height: 1.4;
}

.toast__close {
  background: none;
  border: none;
  color: var(--color-gray-400);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
  transition: color var(--transition-base);
  align-self: flex-start;
}

.toast__close:hover {
  color: var(--color-white);
}

/* ---------- Button Spinner ---------- */
.btn__spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(12, 35, 64, 0.3);
  border-top-color: var(--color-navy);
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* Toast responsive */
@media (max-width: 768px) {
  .toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    min-width: auto;
    max-width: none;
  }
}
