
:root {
  --navy: #0b1f3a;
  --navy-deep: #060f1e;
  --teal: #00c9a7;
  --teal-dim: #00957c;
  --sand: #f0ebe3;
  --warm-white: #faf8f5;
  --mid-gray: #8a9ab0;
  --light-line: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: #e8edf3;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(45, 86, 133, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-line);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
}

.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--teal);
  color: var(--navy-deep) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.1em;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover { background: #00e0b8 !important; transform: translateY(-1px); }

.nav-logo img {
  height: 40px;
  width: auto;
}

/* ── MOBILE MENU FIX ── */
@media (max-width: 900px) {

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(6,15,30,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta.mobile {
    display: inline-block;
    margin-top: 10px;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(0,201,167,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 20%, rgba(11,31,58,0.9) 0%, transparent 60%),
    linear-gradient(135deg, #060f1e 0%, #0d2244 50%, #0a1c35 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  text-align: center;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: #9aafc6;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: #00e0b8; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover { border-color: var(--teal); background: rgba(0,201,167,0.06); }

/* FIX HERO STATS MOBILE */
.hero-stats {
  position: relative !important;
  right: auto;
  bottom: auto;
  margin-top: 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.stat-box {
  padding: 18px;
  border-radius: 8px !important;
}

.stat-box {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.06);
}

.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--light-line);
  padding: 28px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-box:first-child { border-radius: 12px 0 0 0; }
.stat-box:nth-child(2) { border-radius: 0 12px 0 0; }
.stat-box:nth-child(3) { border-radius: 0 0 0 12px; }
.stat-box:last-child { border-radius: 0 0 12px 0; }

.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 100px 60px;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: var(--mid-gray);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 60px;
}

/* ── ABOUT ── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: linear-gradient(135deg, rgba(0,201,167,0.08), rgba(11,31,58,0.5));
  border: 1px solid rgba(0,201,167,0.15);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(0,201,167,0.12), transparent 70%);
}

.about-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.about-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 14px;
  color: #9aafc6;
  line-height: 1.75;
}

.machines-highlight {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--light-line);
  display: flex;
  gap: 24px;
}

.mh-item { text-align: center; }
.mh-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
}
.mh-label { font-size: 11px; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: #9aafc6;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text strong { color: #c8d8e8; font-weight: 500; }

/* ── FABRIC CATEGORIES ── */
.fabrics-bg {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #0b1a2e 100%);
}

.fab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.fab-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s, border-color 0.3s;
  group: true;
}

.fab-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.fab-card:hover { background: rgba(0,201,167,0.05); border-color: rgba(0,201,167,0.2); }
.fab-card:hover::after { transform: scaleX(1); }

.fab-icon {
  width: 48px; height: 48px;
  background: rgba(0,201,167,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.fab-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.fab-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prod-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.prod-card:hover { transform: translateY(-4px); border-color: rgba(0,201,167,0.3); }

.prod-img {
  height: 180px;
  background: linear-gradient(135deg, #0d2244, #0a3055);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.prod-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,201,167,0.03) 0px,
    rgba(0,201,167,0.03) 1px,
    transparent 1px,
    transparent 10px
  );
}

.prod-body { padding: 24px; }

.prod-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  font-weight: 500;
}

.prod-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.prod-meta {
  display: flex;
  gap: 16px;
}

.prod-meta span {
  font-size: 12px;
  color: var(--mid-gray);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ── LAB TEST ── */
.lab-bg {
  background: linear-gradient(135deg, #080f1e 0%, #0b1f38 100%);
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.lab-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 13px;
  color: #b0c0d4;
  line-height: 1.5;
  transition: background 0.2s, border-color 0.2s;
}

.lab-item:hover {
  background: rgba(0,201,167,0.05);
  border-color: rgba(0,201,167,0.2);
  color: #d0e0ef;
}

.lab-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── MACHINE TABLE ── */
.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: rgba(0,201,167,0.1);
}

thead th {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0,201,167,0.2);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}

tbody tr:hover { background: rgba(255,255,255,0.03); }
tbody tr:last-child { border-bottom: none; }

tbody td {
  padding: 14px 20px;
  font-size: 13px;
  color: #9aafc6;
  white-space: nowrap;
}

tbody td:first-child { color: var(--mid-gray); }

.badge-china {
  display: inline-block;
  background: rgba(255,100,50,0.1);
  color: #ff9070;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
}

.badge-taiwan {
  display: inline-block;
  background: rgba(50,150,255,0.1);
  color: #70b8ff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
}

.badge-lycra {
  display: inline-block;
  background: rgba(0,201,167,0.1);
  color: var(--teal);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 3px;
}

.table-footer {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(0,201,167,0.04);
  border-top: 1px solid rgba(0,201,167,0.12);
}

.table-footer-text {
  font-size: 13px;
  color: var(--mid-gray);
}

.table-footer-text strong { color: var(--teal); }

.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.25);
  color: var(--teal);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
}

.coming-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(0,201,167,0.2));
  z-index: 0;
}

.proc-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.proc-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  margin: 0 auto 20px;
  position: relative;
}

.proc-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.proc-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,201,167,0.3);
  background: rgba(0,201,167,0.04);
}

.why-icon { font-size: 32px; margin-bottom: 14px; }

.why-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.why-sub { font-size: 12px; color: var(--mid-gray); line-height: 1.5; }

/* ── INDUSTRIES ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ind-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.25s, background 0.25s;
}

.ind-card:hover {
  border-color: rgba(0,201,167,0.25);
  background: rgba(0,201,167,0.04);
}

.ind-icon {
  font-size: 30px;
  flex-shrink: 0;
}

.ind-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* ── CTA BANNER ── */
.cta-section {
  margin: 0 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0a3055 0%, #062240 50%, #041a30 100%);
  border: 1px solid rgba(0,201,167,0.2);
  padding: 80px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,201,167,0.1), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: #9aafc6;
  font-size: 16px;
  margin-bottom: 36px;
  font-weight: 300;
  position: relative;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 4px; }
.contact-val { font-size: 14px; color: #c0d0e0; line-height: 1.6; }

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #e0eaf4;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--teal); }

.form-row textarea { resize: vertical; min-height: 100px; }

.form-row select option { background: #0d2244; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  margin: 0 60px;
}

/* ── FOOTER ── */
footer {
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.footer-brand h3 span { color: var(--teal); }

.footer-brand p {
  font-size: 12px;
  color: var(--mid-gray);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: orange;
  background: rgba(20, 176, 238, 0.43);
}

.footer-bottom a { color: var(--teal); text-decoration: none; }

/* ── MOBILE HAMBURGER ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.bar { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-stats { position: static; margin-top: 60px; display: flex; flex-wrap: wrap; gap: 2px; }
  .fab-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 100px 24px 60px; }
  .section { padding: 70px 24px; }
  .about-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section { margin: 0 24px; padding: 50px 28px; }
  .divider { margin: 0 24px; }
  footer { padding: 40px 24px; grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .fab-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}


