/* =============================================
   SICO Jordan — Modern Redesign
   style.css
   ============================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f0f0ee;
  color: #0f1011;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* --- CSS Custom Properties --- */
:root {
  --bg: #f0f0ee;
  --dark: #0f1011;
  --muted: #6b7280;
  --accent: #2f4fc7;
  --accent-hover: #2543b0;
  --accent-light: rgba(47, 79, 199, 0.12);
  --accent-glass: rgba(47, 79, 199, 0.18);
  --white: #ffffff;
  --border: #e0e0db;
  --card-bg: #ffffff;
  --radius: 12px;
  --radius-pill: 100px;
  --section-pad: 100px;
  --container-max: 1200px;
  --transition: 0.2s ease;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVIGATION
   ============================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 24px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-pill {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  padding: 6px 8px;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}

.site-nav.scrolled .nav-pill {
  background: #f0f0ee;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
  display: block;
}

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

.site-nav.scrolled .nav-links a {
  color: var(--dark);
}

.site-nav.scrolled .nav-links a:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--dark);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.nav-lang {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
}

.site-nav:not(.scrolled) .nav-lang {
  color: rgba(255, 255, 255, 0.7);
}

.nav-lang:hover {
  color: var(--accent);
}

.nav-cta {
  background: linear-gradient(135deg, #2f4fc7, #4d6ee0);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 4px 14px rgba(47, 79, 199, 0.35);
}

.nav-cta:hover {
  opacity: 0.88;
  box-shadow: 0 6px 20px rgba(47, 79, 199, 0.5);
}

/* Mobile toggle button */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.site-nav:not(.scrolled) .nav-mobile-toggle span {
  background: var(--white);
}

/* Hamburger → X animation */
.nav-mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile ul li a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile ul li:last-child a {
  border-bottom: none;
}

.nav-mobile ul li a:hover {
  color: var(--accent);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/product/36.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 100px;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-heading {
  color: var(--white);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-btn {
  background: linear-gradient(135deg, #2f4fc7, #4d6ee0);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: box-shadow var(--transition), opacity var(--transition);
  align-self: flex-start;
  box-shadow: 0 6px 20px rgba(47, 79, 199, 0.4);
}

.hero-btn:hover {
  opacity: 0.88;
  box-shadow: 0 8px 28px rgba(47, 79, 199, 0.55);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
}

/* =============================================
   STATS
   ============================================= */

.stats-about-band {
  background-image: url('../img/product/n5.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.stats {
  background: transparent;
  padding: 60px 0;
  position: relative;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}

.stats > .container,
.about > .container,
.clients > .container,
.stats-about-band > .stats > .container,
.stats-about-band > .about > .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-icon {
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* =============================================
   SECTION HELPERS
   ============================================= */

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}

.section-header {
  margin-bottom: 48px;
}

/* =============================================
   ABOUT
   ============================================= */

.about {
  padding: var(--section-pad) 0;
  background: transparent;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240, 240, 238, 0.93);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.aside-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 16px;
  border-left: 4px solid var(--accent);
}

.aside-card:last-child {
  margin-bottom: 0;
}

.aside-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.aside-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
   PRODUCTS
   ============================================= */

.products {
  background-color: var(--white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  pointer-events: none;
  z-index: 1;
}

.products-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/product/picsvg_download.svg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}

@media (max-width: 768px) {
  .products-parallax-bg {
    background-image: url('../img/product/picsvg_mobile.png');
    background-size: contain;
    background-position: center top;
  }
}
.products > .container {
  position: relative;
  z-index: 2;
}

.product-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #2f4fc7, #4d6ee0);
  color: var(--white);
  border-color: #2f4fc7;
  box-shadow: 0 4px 12px rgba(47, 79, 199, 0.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.product-card {
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(47, 79, 199, 0.15);
}

.product-card.hidden {
  display: none;
}

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

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.product-info {
  padding: 14px 16px 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}

.product-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

/* =============================================
   PROCESS TIMELINE
   ============================================= */

.process {
  background: var(--white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(47, 79, 199, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(47, 79, 199, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.process > .container {
  position: relative;
  z-index: 1;
}

.process .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.process-step:hover {
  transform: scale(1.05);
}

.step-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: block;
  color: var(--accent);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.process-step:hover .step-icon {
  transform: scale(1.15);
  color: var(--accent-hover);
}

.step-content {
  max-width: 140px;
}

.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-content p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Connector lines */
.process-connector {
  position: absolute;
  top: 65px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  z-index: 0;
}

.process-step:nth-child(2) ~ .process-connector:nth-of-type(1) {
  left: 20%;
  right: -20%;
  width: 60%;
  opacity: 0.8;
}

.process-step:nth-child(4) ~ .process-connector:nth-of-type(2) {
  left: 20%;
  right: -20%;
  width: 60%;
  opacity: 0.8;
}

.process-step:nth-child(6) ~ .process-connector:nth-of-type(3) {
  left: 20%;
  right: -20%;
  width: 60%;
  opacity: 0.8;
}

.process-step:nth-child(8) ~ .process-connector:nth-of-type(4) {
  left: 20%;
  right: -20%;
  width: 60%;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

  .process-connector {
    display: none;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    font-size: 40px;
  }

  .step-number {
    font-size: 24px;
  }

  .step-content {
    max-width: 100%;
    padding: 0 12px;
  }

  .step-content h4 {
    font-size: 14px;
  }

  .step-content p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .process {
    padding: 60px 0;
  }

  .process-timeline {
    gap: 24px;
    padding: 0 12px;
  }

  .step-number {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .step-content h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .step-content p {
    font-size: 11px;
    line-height: 1.4;
  }
}

/* =============================================
   TEAM
   ============================================= */

.team {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.team .section-header {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.4s ease;
}

.team-card:hover img {
  filter: grayscale(0);
}

.team-card h4 {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  padding: 20px 20px 4px;
}

.team-card p {
  color: var(--muted);
  font-size: 14px;
  padding: 0 20px 20px;
}

/* =============================================
   CLIENTS
   ============================================= */

.clients {
  background-color: var(--white);
  background-image: url('../img/product/n3.png');
  background-size: cover;
  background-position: center;
  padding: var(--section-pad) 0;
  position: relative;
}
.clients::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.93);
  pointer-events: none;
}

.clients .section-header {
  text-align: center;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.client-logo:hover {
  background: #e8e8e5;
}

.client-logo img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* =============================================
   MARKETS
   ============================================= */

.markets {
  background: var(--white);
  padding: 100px 0;
}

.markets-header {
  margin-bottom: 48px;
}

.markets-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#world-map {
  width: 100%;
  height: 520px;
}

#world-map .mapboxgl-ctrl-logo {
  display: none !important;
}

#world-map .mapboxgl-canvas {
  border-radius: 0;
}

.markets-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.country-tag {
  background: rgba(47, 79, 199, 0.08);
  border: 1px solid rgba(47, 79, 199, 0.25);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =============================================
   CONTACT
   ============================================= */

.contact {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-item a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--accent-hover);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

#contact-form button[type="submit"] {
  background: linear-gradient(135deg, #2f4fc7, #4d6ee0);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  width: 100%;
  transition: box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 4px 14px rgba(47, 79, 199, 0.35);
}

#contact-form button[type="submit"]:hover {
  opacity: 0.88;
  box-shadow: 0 6px 20px rgba(47, 79, 199, 0.5);
}

#form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}

#form-status.success {
  display: block;
  background: #dcfce7;
  color: #166534;
}

#form-status.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

/* =============================================
   MAP
   ============================================= */

.map-section iframe {
  display: block;
  width: 100%;
}

/* =============================================
   FOOTER
   ============================================= */

/* =============================================
   BACK TO TOP
   ============================================= */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f4fc7, #4d6ee0);
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(47, 79, 199, 0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 6px 20px rgba(47, 79, 199, 0.55);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-brand img {
  max-height: 80px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
}

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

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

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

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delays for grid children */
.stats-grid .reveal:nth-child(1) { transition-delay: 0s; }
.stats-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.product-grid .reveal:nth-child(1)  { transition-delay: 0s; }
.product-grid .reveal:nth-child(2)  { transition-delay: 0.04s; }
.product-grid .reveal:nth-child(3)  { transition-delay: 0.08s; }
.product-grid .reveal:nth-child(4)  { transition-delay: 0.12s; }
.product-grid .reveal:nth-child(5)  { transition-delay: 0.04s; }
.product-grid .reveal:nth-child(6)  { transition-delay: 0.08s; }
.product-grid .reveal:nth-child(7)  { transition-delay: 0.12s; }
.product-grid .reveal:nth-child(8)  { transition-delay: 0.16s; }

.team-grid .reveal:nth-child(1) { transition-delay: 0s; }
.team-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.team-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* =============================================
   RESPONSIVE — max-width: 768px
   ============================================= */

@media (max-width: 768px) {

  :root {
    --section-pad: 60px;
  }

  /* Nav */
  .nav-links,
  .nav-lang,
  .nav-cta,
  .nav-pill,
  .nav-actions {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  /* Hero */
  .hero-heading {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-scroll {
    display: none;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 40px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Team */
  .team-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    min-width: unset;
  }

  /* Section headings on mobile */
  .section-heading {
    font-size: 28px;
  }

}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

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

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

  .hero-content {
    padding-bottom: 60px;
  }

  .product-filters {
    gap: 6px;
  }

  .filter-btn {
    font-size: 13px;
    padding: 8px 14px;
  }
}
