/* ===================================================
   INTEGRAL TRADE SDN BHD — style.css  (bright theme)
   =================================================== */

/* ===== VARIABLES ===== */
:root {
  --navy:       #0a1628;
  --navy-2:     #0e2040;
  --blue:       #1a7dc8;
  --blue-light: #2e9be8;
  --gold:       #d4941a;
  --gold-light: #f5b942;
  --white:      #ffffff;
  --bg:         #ffffff;
  --bg-2:       #f0f5fa;
  --text:       #0a1628;
  --text-muted: rgba(10,22,40,0.52);
  --border:     rgba(10,22,40,0.1);
  --shadow:     0 2px 16px rgba(10,22,40,0.07);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.12);
  --container:  1200px;
  --radius:     8px;
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,148,26,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(10,22,40,0.2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Dark-section button override */
.dark-section .btn-outline,
.contact-strip .btn-outline,
footer .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.dark-section .btn-outline:hover,
.contact-strip .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(10,22,40,0.07);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }

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

.logo-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  color: var(--navy);
  line-height: 1;
}
.logo-wordmark span { color: var(--gold); }

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.55);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  background-color: var(--navy-2);
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for text legibility over photo */
.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.60) 100%);
  z-index: 0;
}

.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 620px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212,148,26,0.15);
  border: 1px solid rgba(212,148,26,0.35);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-title em { color: var(--gold-light); font-style: normal; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Outline button override on dark hero */
.hero-wrapper .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.hero-wrapper .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Circuit SVG hidden — hero is now a photo */
.hero-visual { display: none; }

.circuit-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--gold); padding: 28px 24px; }

.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 20px;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.65);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 24px; background: var(--bg); }
.section-alt { padding: 100px 24px; background: var(--bg-2); }

/* Dark sections override */
.dark-section {
  background: var(--navy-2);
  color: var(--white);
  --text-muted: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.08);
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.0;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 620px;
}

/* ===== ABOUT ===== */
.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text > p.section-sub { margin-bottom: 36px; max-width: 100%; }

.feature-list { display: flex; flex-direction: column; gap: 22px; }

.feature-row { display: flex; gap: 16px; align-items: flex-start; }

.feature-icon {
  width: 42px; height: 42px;
  background: rgba(212,148,26,0.1);
  border: 1px solid rgba(212,148,26,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.feature-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
}
.feature-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* Identity block */
.identity-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.identity-block::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(26,125,200,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.identity-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--navy);
}
.identity-logo span { color: var(--gold); }

.identity-tagline {
  font-size: 0.78rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 32px;
  font-weight: 600;
}

.identity-details { display: flex; flex-direction: column; gap: 14px; }

.identity-detail { display: flex; gap: 12px; font-size: 0.85rem; }
.identity-detail-label { color: var(--text-muted); min-width: 76px; flex-shrink: 0; }
.identity-detail-value { color: var(--navy); font-weight: 500; line-height: 1.5; }

/* ===== VISION & MISSION ===== */
.vm-grid {
  max-width: var(--container);
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 36px 36px 44px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--gold);
  border-radius: 12px 0 0 12px;
}

.vm-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(212,148,26,0.1);
  border: 1px solid rgba(212,148,26,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.vm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1;
}

.vm-card > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== PRODUCTS GRID ===== */
.products-intro {
  max-width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}
.products-intro .section-label,
.products-intro .section-title { display: block; }
.products-intro .section-sub { margin: 0 auto; }

.products-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
  cursor: pointer;
  color: inherit;
  box-shadow: var(--shadow);
}
.product-card:hover {
  border-color: rgba(212,148,26,0.5);
  box-shadow: 0 12px 36px rgba(10,22,40,0.14);
  transform: translateY(-4px);
}

/* ===== PRODUCT CARD PHOTO ===== */
.product-card-photo {
  width: calc(100% + 56px);
  margin: -28px -28px 0;
  height: 180px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #eef3f9 0%, #dde8f4 100%);
  flex-shrink: 0;
}

/* Placeholder icon when no photo */
.product-card-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23b0c4d8' stroke-width='1.2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px;
  z-index: 0;
}

.product-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

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

.product-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(26,125,200,0.08);
  border: 1px solid rgba(26,125,200,0.2);
  color: var(--blue);
  width: fit-content;
}

.product-card-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}

.product-card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.product-card-arrow {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-arrow { opacity: 1; }

/* ===== X-SERIES (dark section) ===== */
.xseries-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dark-section .section-sub {
  color: rgba(255,255,255,0.6);
}

.badge-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.badge-pill {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(212,148,26,0.12);
  border: 1px solid rgba(212,148,26,0.35);
  color: var(--gold);
}

.spec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px;
}

.spec-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  color: var(--gold);
}

.spec-list { display: flex; flex-direction: column; gap: 0; }

.spec-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.spec-item:last-child { border-bottom: none; padding-bottom: 0; }

.spec-check {
  width: 22px; height: 22px;
  background: rgba(212,148,26,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

.spec-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 3px;
}
.spec-content p { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ===== CONTACT STRIP ===== */
.contact-strip {
  padding: 80px 24px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
}
.contact-strip .section-label { display: block; }
.contact-strip .section-title { margin-bottom: 12px; color: var(--white); }
.contact-strip > .container > p { color: rgba(255,255,255,0.6); margin-bottom: 16px; }

.phone-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  line-height: 1;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { display: block; margin-bottom: 12px; }
.page-hero .section-title { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 16px; color: var(--navy); }
.page-hero .section-sub { margin: 0 auto; color: var(--text-muted); }

/* ===== PRODUCTS PAGE ===== */
.products-section { max-width: var(--container); margin: 0 auto; }

.products-section-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.products-section-heading::before {
  content: '';
  width: 4px;
  height: 2.5rem;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 80px 24px;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.contact-info-card:hover {
  border-color: rgba(212,148,26,0.35);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(212,148,26,0.1);
  border: 1px solid rgba(212,148,26,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info-text p,
.contact-info-text a { font-size: 0.9rem; color: var(--navy); line-height: 1.6; }

/* Enquiry form */
.enquiry-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.08em; margin-bottom: 6px; color: var(--navy); }
.form-subtitle { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

input, textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,125,200,0.1);
}
input::placeholder, textarea::placeholder { color: rgba(10,22,40,0.3); }
textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-success {
  display: none;
  background: rgba(26,125,200,0.07);
  border: 1px solid rgba(26,125,200,0.4);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--blue);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

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

.map-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 60px;
}

.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.12em; margin-bottom: 10px; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.footer-address p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; }

.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 60px 24px 100px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 48px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.legal-section p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul, .legal-section ol {
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-section li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-section strong { color: var(--navy); font-weight: 600; }

.legal-contact-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.7;
}

/* Footer legal links */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--gold); }

@media (max-width: 600px) {
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ===== FADE-IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.40s; }

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--border);
  }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-links li { list-style: none; }
  .nav-links a { font-size: 1.1rem; }

  .hero { grid-template-columns: 1fr; padding: 60px 24px; min-height: auto; gap: 40px; }
  .hero-visual { display: none; }

  .stats-inner { grid-template-columns: 1fr; gap: 28px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .vm-grid { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: 1fr; }
  .products-grid-2col { grid-template-columns: 1fr; }

  .xseries-inner { grid-template-columns: 1fr; gap: 40px; }

  .contact-grid { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }

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

  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .section, .section-alt { padding: 70px 24px; }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 2rem; }
  .phone-display { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .enquiry-form { padding: 24px; }
  .identity-block { padding: 28px; }
  .spec-card { padding: 24px; }
  .logo-wordmark { font-size: 1.1rem; }
}

/* ===== FAQ PAGE ===== */
.faq-content {
  padding: 60px 24px 100px;
}
.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}
.faq-category {
  margin-bottom: 56px;
}
.faq-category-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--blue);
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
  color: var(--text-muted);
}
.faq-icon svg {
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0;
}
