/* Critical CSS - Load immediately */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #08111E;
  --navy-mid:  #0D1B2A;
  --navy-light:#122338;
  --blue:      #0A6CFF;
  --blue-glow: #1A7FFF;
  --blue-light:#E8F2FF;
  --white:     #FFFFFF;
  --off-white: #F8FAFC;
  --gray-100:  #F1F5F9;
  --gray-300:  #CBD5E1;
  --gray-500:  #64748B;
  --gray-700:  #334155;
  --charcoal:  #0F1923;
  --font-display: 'Bebas Neue', sans-serif;
  --font-label:   'Montserrat', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  overflow-x: hidden;
}

/* ── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── NAV ───────────────────────────────────── */
nav {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  height: 200px;
  background: var(--navy-mid);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-logo img {
  height: 450px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.4s ease, filter 0.4s ease;
  display: block;
  /* Help blend logo with background - remove if logo has transparent background */
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(10, 108, 255, 0.3));
}

/* Progressive logo loading - smooth quality upgrade */
.progressive-logo {
  opacity: 1;
}

.progressive-logo.loaded {
  opacity: 1;
  /* Smooth transition when HQ image loads */
}

/* Hide regular nav links - using hamburger menu for all devices */
.nav-links {
  display: none;
}

/* ── HAMBURGER MENU TOGGLE (All Devices) ───────── */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: absolute;
  right: 60px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  display: block;
}

.mobile-menu-toggle:hover span {
  background: var(--blue);
}

.mobile-menu-toggle[aria-expanded="true"] span {
  background: var(--white);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ── MOBILE MENU BACKDROP ─────────────────────── */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* ── MENU OVERLAY (All Devices) ────────────────── */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: var(--navy);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

/* Larger menu on desktop for better spacing */
@media (min-width: 1025px) {
  .mobile-menu-overlay {
    max-width: 480px;
  }
  
  .mobile-menu-content {
    padding: 120px 56px 56px;
  }
  
  .mobile-menu-close {
    top: 32px;
    right: 32px;
  }
  
  .mobile-menu-links a {
    font-size: 15px;
    padding: 24px 0;
  }
}

.mobile-menu-overlay[aria-hidden="false"] {
  transform: translateX(0);
}

/* Close button in menu */
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1001;
  color: var(--white);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--blue);
  color: var(--blue);
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-content {
  padding: 100px 48px 48px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-links a {
  display: block;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 22px 0;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--blue);
  transition: height 0.2s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus {
  color: var(--white);
  padding-left: 16px;
}

.mobile-menu-links a:hover::before,
.mobile-menu-links a:focus::before {
  height: 24px;
}

.mobile-menu-cta {
  margin-top: 16px;
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 16px 24px !important;
  border-radius: 6px;
  text-align: center;
  border: none !important;
}

.mobile-menu-cta::before {
  display: none !important;
}

.mobile-menu-cta:hover {
  background: var(--blue-glow) !important;
  padding-left: 24px !important;
}

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* Use dynamic viewport height for better mobile support */
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Background image - Loaded after LCP to improve performance */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
  will-change: transform;
  transition: opacity 1s ease;
}

/* Load background image after LCP */
.hero.loaded .hero-bg {
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=800&q=70&auto=format&fit=crop');
  opacity: 0.18;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 108, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 108, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Glow blob */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,108,255,0.18) 0%, transparent 70%);
  top: 10%; right: -100px;
  pointer-events: none;
}

/* Left accent line */
.hero-accent-line {
  position: absolute;
  left: 60px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--blue) 30%, var(--blue) 70%, transparent);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 0 90px;
  max-width: 860px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  /* Visible immediately for better LCP */
  opacity: 1;
  transform: none;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--blue);
}
.hero-eyebrow-text {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 110px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 20px;
    /* Make title visible immediately for better LCP - remove animation delay */
    opacity: 1;
    transform: none;
  }
.hero-title span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.35);
}

  .hero-sub {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 100%;
    margin-bottom: 32px;
    /* Visible immediately for better LCP */
    opacity: 1;
    transform: none;
  }

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  /* Visible immediately for better LCP */
  opacity: 1;
  transform: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(10, 108, 255, 0.35);
}
.btn-primary:hover {
  background: var(--blue-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 108, 255, 0.5);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 90px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.scroll-dot {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-dot-inner {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}
.scroll-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Right stats */
.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
  opacity: 0;
  animation: fadeLeft 0.8s 1.1s forwards;
}
.hero-stat {
  text-align: right;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.hero-stat-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* Diagonal cut */
.hero-cut {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 80px, 100% 0, 100% 80px);
}

/* ── TRUST BAR ─────────────────────────────── */
.trust-bar {
  background: var(--white);
  padding: 32px 60px;
  border-bottom: 1px solid var(--gray-100);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s, transform 0.5s;
}
.trust-item.visible { opacity: 1; transform: none; }
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { color: var(--blue); }
.trust-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.3;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-300);
  flex-shrink: 0;
}

/* ── SECTION COMMON ────────────────────────── */
section {
  padding: 100px 60px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-label-line {
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}
.section-label-text {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 540px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── SERVICES SECTION ──────────────────────── */
.services-section { background: var(--off-white); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-300);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card:hover::before { transform: scaleY(1); }
.service-card-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.service-card:hover .service-card-num { color: var(--blue-light); }
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.service-card:hover .service-card-icon { background: var(--blue); }
.service-card:hover .service-card-icon svg { color: var(--white); }
.service-card-icon svg { color: var(--blue); transition: color 0.3s; }
.service-card-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.15;
}
.service-card-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tag {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.service-card:hover .tag { background: var(--blue-light); color: var(--blue); }
.service-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid var(--blue-light);
  padding-bottom: 2px;
  width: fit-content;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 12px; }

/* ── WHY LUXORA ─────────────────────────────── */
.why-section { background: var(--navy-mid); }
.why-section .section-heading { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.5); }
.why-section .section-label-text { color: var(--blue); }
.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.why-item {
  padding: 40px 36px;
  background: var(--navy-mid);
  transition: background 0.3s;
}
.why-item:hover { background: var(--navy-light); }
.why-item-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10, 108, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-item-icon svg { color: var(--blue); }
.why-item-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.why-item-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
}

/* ── SEGMENTS ───────────────────────────────── */
.segments-section { background: var(--white); padding: 80px 60px; }
.segments-row {
  display: flex;
  gap: 2px;
  background: var(--gray-300);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}
.segment {
  flex: 1;
  padding: 40px 24px;
  background: var(--white);
  text-align: center;
  cursor: pointer;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.segment::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.segment:hover { background: var(--off-white); }
.segment:hover::after { transform: scaleX(1); }
.segment-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--gray-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.segment:hover .segment-icon { background: var(--blue-light); }
.segment:hover .segment-icon svg { color: var(--blue); }
.segment-icon svg { color: var(--gray-500); transition: color 0.25s; }
.segment-name {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
  line-height: 1.4;
}

/* ── CTA BAND ───────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 0 60px;
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-band-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,108,255,0.15) 0%, transparent 65%);
  right: 0; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-band-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 108, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 108, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-band p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 440px;
  line-height: 1.7;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 72px 60px 32px;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.social-btn:hover {
  border-color: var(--blue);
  background: rgba(10, 108, 255, 0.1);
}
.social-btn svg { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.social-btn:hover svg { color: var(--blue); }
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item span {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-zabeel {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-zabeel span {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.footer-zabeel-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.6;
}

/* ── KEYFRAMES ──────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── RESPONSIVE DESIGN ──────────────────────── */
/* Tablet and below (max-width: 1024px) */
@media (max-width: 1024px) {
  nav {
    padding: 40px;
  }
  
  .mobile-menu-toggle {
    right: 40px;
    width: 30px;
    height: 30px;
  }
  
  .mobile-menu-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  
  .mobile-menu-overlay {
    max-width: 360px;
  }
  
  .mobile-menu-content {
    padding: 90px 40px 40px;
  }
  
  .hero-content {
    padding: 0 40px 0 60px;
  }
  
  .hero-accent-line {
    left: 40px;
  }
  
  .hero-scroll {
    left: 60px;
  }
  
  .hero-stats {
    right: 40px;
    bottom: 40px;
  }
  
  section {
    padding: 80px 40px;
  }
  
  .trust-bar {
    padding: 28px 40px;
  }
  
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-band {
    padding: 0 40px;
  }
  
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 28px;
  }
  
  footer {
    padding: 60px 40px 28px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  nav {
    padding: 24px 20px 16px;
    min-height: 140px;
  }
  
  .nav-logo img {
    height: 300px;
  }
  
  .mobile-menu-toggle {
    right: 20px;
    width: 28px;
    height: 28px;
  }
  
  .mobile-menu-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
  
  .mobile-menu-close svg {
    width: 18px;
    height: 18px;
  }
  
  .mobile-menu-toggle {
    width: 28px;
    height: 28px;
  }
  
  .mobile-menu-overlay {
    max-width: 320px;
  }
  
  .mobile-menu-content {
    padding: 80px 32px 32px;
  }
  
  .mobile-menu-links a {
    font-size: 13px;
    padding: 18px 0;
  }
  
  .hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    height: 100vh;
    height: 100dvh;
    padding-bottom: 60px; /* Add padding to ensure curve is visible */
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  /* Content is visible immediately for better LCP - no animations needed */
  
  /* Ensure hero content container is properly positioned and visible */
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    padding-bottom: 140px; /* Add bottom padding to prevent overlap with bottom elements */
    min-height: auto;
  }
  
  .hero-accent-line {
    display: none;
  }
  
  .hero-scroll {
    left: 20px;
    bottom: 80px; /* Position above the curve */
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    opacity: 1; /* Ensure it's visible */
    z-index: 3; /* Ensure it's above other elements */
  }
  
  .scroll-dot {
    width: 28px;
    height: 28px;
  }
  
  .scroll-dot-inner {
    width: 5px;
    height: 5px;
  }
  
  .scroll-label {
    font-size: 9px;
    white-space: nowrap;
    letter-spacing: 0.15em;
  }
  
  .hero-stats {
    right: 20px;
    bottom: 80px; /* Position above the curve */
    gap: 12px;
    opacity: 1; /* Ensure it's visible */
    z-index: 3; /* Ensure it's above other elements */
  }
  
  .hero-stat {
    text-align: right;
  }
  
  .hero-stat-num {
    font-size: 24px;
    line-height: 1.1;
  }
  
  .hero-stat-label {
    font-size: 9px;
    margin-top: 2px;
    line-height: 1.2;
  }
  
  .hero-stat-divider {
    width: 100%;
    height: 1px;
  }
  
  /* Ensure hero-cut is visible on mobile */
  .hero-cut {
    height: 60px;
    clip-path: polygon(0 60px, 100% 0, 100% 60px);
  }
  
  .hero-glow {
    width: 400px;
    height: 400px;
    right: -150px;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .trust-bar {
    padding: 24px 20px;
  }
  
  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .trust-divider {
    display: none;
  }
  
  .trust-item {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 36px 24px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-item {
    padding: 32px 24px;
  }
  
  .segments-section {
    padding: 60px 20px;
  }
  
  .segments-row {
    flex-direction: column;
    gap: 2px;
  }
  
  .segment {
    padding: 32px 20px;
  }
  
  .cta-band {
    padding: 0 20px;
  }
  
  .cta-band-inner {
    padding: 60px 0;
  }
  
  .cta-band-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .cta-band-actions .btn-primary,
  .cta-band-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 0; /* Remove extra margin to prevent overlap */
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  
  footer {
    padding: 48px 20px 24px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    font-size: 10px;
  }
  
  .nav-cta {
    padding: 6px 12px;
    font-size: 10px !important;
  }
  
  .hero-title {
    font-size: clamp(42px, 12vw, 64px);
  }
  
  .hero-sub {
    font-size: 15px;
  }
  
  .btn-primary,
  .btn-ghost {
    font-size: 12px;
    padding: 14px 24px;
  }
  
  .section-heading {
    font-size: clamp(28px, 8vw, 36px);
  }
  
  .service-card-title {
    font-size: 22px;
  }
  
  .why-item-title {
    font-size: 18px;
  }
  
  .cta-band h2 {
    font-size: clamp(24px, 8vw, 32px);
  }
}
