/* ═══════════════════════════════════════════
   SURAJ ENTERPRISES — Premium Stylesheet
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --gold:        #FF8C00;
  --gold-light:  #FFA500;
  --gold-dim:    #cc7000;
  --saffron:     #FF6000;
  --saffron-light: #ff7a30;
  --cream:       #FFF8F0;
  --dark:        #001133;
  --dark-2:      #001a4d;
  --dark-3:      #00235e;
  --dark-card:   rgba(0,20,60,0.88);
  --text-primary: #FFFFFF;
  --text-muted:  #ccd9f0;
  --text-dim:    #7a94c0;
  --border:      rgba(255,140,0,0.18);
  --border-glow: rgba(255,140,0,0.45);
  --glass:       rgba(255,255,255,0.04);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-gold: 0 8px 40px rgba(255,140,0,0.25);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5);
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(0,17,51,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 2rem;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.nav-logo:hover { opacity: 0.88; }
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(255,140,0,0.4));
  transition: var(--transition);
}
.nav-logo:hover .logo-img { filter: drop-shadow(0 4px 14px rgba(255,140,0,0.65)); transform: scale(1.05); }
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-text { color: var(--text-primary); line-height: 1.1; }
.logo-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  opacity: 0.9;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.contact-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold) !important;
  transition: var(--transition);
}
.contact-btn:hover {
  background: var(--gold);
  color: var(--dark) !important;
}
.contact-btn::after { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 2rem 4rem;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-bg-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(255,140,0,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,96,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(0,60,160,0.25) 0%, transparent 60%),
    var(--dark);
  z-index: -2;
  pointer-events: none;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

.hero-content {
  flex: 1;
  z-index: 1;
  min-width: 0;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: rgba(212,160,23,0.12);
  border: 1px solid var(--border-glow);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.title-line { display: block; }
.title-line.gold {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn {
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.5);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-glow);
  color: var(--text-primary);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,160,23,0.07);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}
.stat span { color: var(--gold); font-size: 1.5rem; }
.stat p {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}
.stat-divider {
  height: 40px;
  width: 1px;
  background: var(--border);
}

.hero-image-wrap {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.hero-img-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(212,160,23,0.22) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}
.hero-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
}
.hero-img:hover { transform: scale(1.02) rotate(-0.5deg); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; height: 30px; }
  50%       { opacity: 1; height: 50px; }
}

/* ═══════════════ SECTION COMMONS ═══════════════ */
.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ═══════════════ ABOUT ═══════════════ */
.about-section {
  padding: 7rem 0;
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-title { margin-bottom: 1.5rem; }
.about-para {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about-para strong { color: var(--text-primary); }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.tag {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--glass);
  transition: var(--transition);
}
.tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,160,23,0.08);
}
.about-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.about-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,160,23,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.about-card:hover::after { opacity: 1; }
.about-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.about-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.about-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.card-1 { transform: translateY(-10px); }
.card-3 { transform: translateY(10px); }

/* ═══════════════ PRODUCTS ═══════════════ */
.products-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(0,26,77,0.8) 50%, var(--dark) 100%);
  position: relative;
}
.products-section::before,
.products-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}
.products-section::before { top: 0; }
.products-section::after  { bottom: 0; }

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.7rem 1.75rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-color: transparent;
  color: var(--dark);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.product-image-wrap {
  position: relative;
}
.product-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  transition: var(--transition);
}
.product-img:hover { transform: scale(1.02); }
.product-img-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--dark);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.product-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.product-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.product-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.product-item:hover {
  border-color: var(--border-glow);
  background: rgba(212,160,23,0.06);
  transform: translateX(4px);
}
.item-icon { font-size: 1.8rem; flex-shrink: 0; }
.item-text h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.item-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Spice grid */
.spice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.spice-chip {
  padding: 0.4rem 0.9rem;
  background: rgba(212,160,23,0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: default;
}
.spice-chip:hover {
  background: rgba(212,160,23,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: scale(1.05);
}
.spice-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ═══════════════ WHY US ═══════════════ */
.why-section {
  padding: 7rem 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  animation-delay: var(--delay);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.why-card:hover::before { opacity: 1; }
.why-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(212,160,23,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: rgba(212,160,23,0.2);
  border-color: var(--gold);
}
.why-icon { font-size: 1.6rem; }
.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
  padding: 1rem 0;
}
.marquee-inner {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-inner .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════ CONTACT ═══════════════ */
.contact-section {
  padding: 7rem 0 5rem;
  position: relative;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(0,26,77,0.9) 100%);
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.contact-grid-wide {
  grid-template-columns: repeat(4, 1fr);
}
.contact-card-global,
.contact-card-associate {
  grid-column: span 2;
  text-align: left !important;
}
.contact-card-global .contact-icon,
.contact-card-associate .contact-icon {
  text-align: left;
  margin-bottom: 0.6rem;
}
.contact-card-global h4,
.contact-card-associate h4 {
  text-align: left;
}
.contact-card-global p,
.contact-card-associate p {
  text-align: left;
}
.global-office {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.global-office:last-child { border-bottom: none; }
.office-flag {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.global-office div strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}
.global-office div p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.contact-gst {
  font-size: 0.75rem !important;
  letter-spacing: 0.04em;
  color: var(--gold-light) !important;
  margin-top: 0.35rem;
  font-weight: 500;
}
.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  animation-delay: var(--delay);
}
.contact-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(0,10,35,0.98);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}
.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(255,140,0,0.35));
}
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  gap: 2rem;
  margin: 0.25rem 0;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ═══════════════ ANIMATIONS ═══════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal       { transform: translateY(30px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 8rem; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { width: 100%; max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .product-showcase { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card-global,
  .contact-card-associate { grid-column: span 2; }
}

@media (max-width: 768px) {
  .logo-img { width: 40px; height: 40px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 300px;
    height: 100vh;
    background: rgba(0,17,51,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--border);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .about-card-wrap { grid-template-columns: 1fr; }
  .card-1, .card-3 { transform: none; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .product-showcase { gap: 2rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}
