/* ============================================================
   GC Trade 68 — Mobile-First Stylesheet v2
   ============================================================ */

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

:root {
  --navy:   #0a1628;
  --blue:   #1a3a6b;
  --gold:   #f5a623;
  --gold-h: #e09415;
  --light:  #f8f9fc;
  --white:  #ffffff;
  --border: #e5e7eb;
  --text:   #111827;
  --muted:  #6b7280;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(0,0,0,.08);
  --transition: all .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

/* ── PAGE TRANSITION ── */
.page-enter {
  animation: pageIn .35s cubic-bezier(.4,0,.2,1) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: #94a3b8;
  font-size: 11px;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.topbar-badge {
  background: var(--gold);
  color: var(--navy);
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
}
.topbar-right { display: flex; gap: 12px; }
.topbar-right a { color: #94a3b8; transition: color .2s; }
.topbar-right a:hover { color: var(--gold); }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: 60px;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  margin-right: 20px;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--gold);
  flex-shrink: 0;
}
.logo-text { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.logo-sub  { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  flex: 1;
  gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  padding: 0 12px;
  height: 60px;
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  cursor: pointer;
  border: none; background: none;
  white-space: nowrap;
  position: relative;
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transition: transform .2s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.caret { font-size: 9px; transition: transform .2s; }
.nav-item:hover .caret { transform: rotate(180deg); }

/* Dropdowns */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 999;
}
.dropdown-wide { min-width: 440px; display: grid; grid-template-columns: 1fr 1fr; }
.nav-item:hover > .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-col + .dropdown-col { border-left: 1px solid var(--border); }
.dropdown-section { padding: 6px 0; border-bottom: 1px solid var(--border); }
.dropdown-section:last-child { border-bottom: none; }
.dropdown-label {
  padding: 4px 14px;
  font-size: 10px; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: .8px;
}
.dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; font-size: 13px; color: var(--text);
  transition: background .15s;
}
.dropdown a:hover { background: var(--light); color: var(--blue); }
.dropdown a .di { font-size: 15px; width: 20px; text-align: center; }
.user-dd { position: relative; }
.user-dd > .dropdown { right: 0; left: auto; min-width: 190px; }

/* Nav CTAs */
.nav-ctas { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.btn-ghost {
  padding: 6px 12px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 12px; font-weight: 500; color: var(--text);
  background: none; cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-primary {
  padding: 7px 14px; background: var(--blue); border: none; border-radius: 6px;
  font-size: 12px; font-weight: 600; color: #fff; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--navy); }
.cart-btn {
  position: relative; padding: 7px 9px;
  border: 1px solid var(--border); border-radius: 6px;
  background: none; cursor: pointer; color: var(--text); font-size: 15px;
  transition: var(--transition);
}
.cart-btn:hover { border-color: var(--blue); color: var(--blue); }
.cart-nav-btn {
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  padding: 7px 12px; border: 1.5px solid var(--border); border-radius: 8px;
  background: #fff; color: var(--navy); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: var(--transition);
}
.cart-nav-btn:hover { border-color: var(--blue); color: var(--blue); }
.cart-count {
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 9px; padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 800;
  overflow-y: auto; padding: 80px 0 32px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-inner { padding: 0 20px; }
.mobile-section { border-bottom: 1px solid var(--border); padding: 16px 0; }
.mobile-section-title {
  font-size: 10px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px;
}
.mobile-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: 15px; color: var(--text);
  border: none; background: none; width: 100%; text-align: left; cursor: pointer;
}
.mobile-link:hover { color: var(--blue); }
.mobile-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--light); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-ctas { display: flex; flex-direction: column; gap: 10px; padding: 20px 0; }
.mobile-ctas a {
  display: block; padding: 13px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-align: center;
}
.mobile-cta-primary { background: var(--blue); color: #fff; }
.mobile-cta-ghost { border: 1px solid var(--border); color: var(--text); }

/* ── AUDIENCE BAR ── */
.audience-bar {
  background: var(--blue);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.audience-bar::-webkit-scrollbar { display: none; }
.audience-inner {
  display: flex; align-items: center;
  padding: 0 16px;
  min-width: max-content;
}
.audience-label {
  font-size: 10px; color: rgba(255,255,255,.55);
  margin-right: 12px; font-weight: 500; white-space: nowrap; flex-shrink: 0;
}
.aud-btn {
  padding: 10px 14px;
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,.65);
  border: none; background: none; cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap; transition: var(--transition);
}
.aud-btn:hover { color: #fff; }
.aud-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── HOMEPAGE HERO ── */
.home-hero {
  background: linear-gradient(140deg, var(--navy) 0%, #1a3a6b 60%, #1e5199 100%);
  color: #fff;
  padding: 56px 16px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,rgba(255,255,255,.02) 0,rgba(255,255,255,.02) 1px,transparent 0,transparent 50%);
  background-size: 20px 20px;
  pointer-events: none;
}
.home-hero-tag {
  display: inline-block;
  background: rgba(245,166,35,.18);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--gold); font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px; letter-spacing: .5px;
  margin-bottom: 20px;
  animation: fadeUp .5s both;
}
.home-hero h1 {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeUp .5s .1s both;
}
.home-hero h1 span { color: var(--gold); }
.home-hero p {
  font-size: clamp(14px, 2.5vw, 17px);
  color: #94a3b8; line-height: 1.75;
  max-width: 580px; margin: 0 auto 32px;
  animation: fadeUp .5s .2s both;
}
.home-hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .5s .3s both;
}
.hero-btn-gold {
  padding: 13px 26px; background: var(--gold); color: var(--navy);
  border: none; border-radius: 8px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 7px;
}
.hero-btn-gold:hover { background: var(--gold-h); transform: translateY(-2px); }
.hero-btn-outline {
  padding: 13px 26px; border: 2px solid rgba(255,255,255,.3);
  color: #fff; border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition); background: transparent;
  display: inline-flex; align-items: center; gap: 7px;
}
.hero-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.home-hero-stats {
  display: flex; justify-content: center; gap: 0;
  margin-top: 44px; flex-wrap: wrap;
  animation: fadeUp .5s .4s both;
}
.hero-stat {
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-size: clamp(20px,4vw,28px); font-weight: 700; }
.hero-stat-label { font-size: 10px; color: #94a3b8; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--light); border-bottom: 1px solid var(--border);
  padding: 14px 16px; overflow-x: auto; scrollbar-width: none;
}
.trust-bar::-webkit-scrollbar { display: none; }
.trust-inner {
  display: flex; gap: 24px; align-items: center;
  min-width: max-content; max-width: 1240px; margin: 0 auto;
}
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; white-space: nowrap; }
.trust-icon { font-size: 14px; }

/* ── WHO WE SERVE (homepage) ── */
.serve-section { padding: 56px 16px; }
.serve-inner { max-width: 1240px; margin: 0 auto; }
.section-hdr { text-align: center; margin-bottom: 40px; }
.stag {
  display: inline-block; background: #dbeafe; color: #1e40af;
  font-size: 10px; font-weight: 700; padding: 3px 12px;
  border-radius: 12px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px;
}
.stitle { font-size: clamp(22px,4vw,32px); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.ssub { font-size: 14px; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* Audience cards grid */
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.serve-card {
  border-radius: 14px; padding: 22px 18px;
  border: 1.5px solid transparent;
  transition: var(--transition); cursor: pointer;
  display: flex; flex-direction: column; gap: 8px;
}
.serve-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.1); }
.serve-icon { font-size: 32px; }
.serve-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.serve-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.serve-link { font-size: 12px; font-weight: 600; color: var(--blue); margin-top: auto; }

/* ── AUDIENCE LANDING PAGES ── */
.aud-hero {
  padding: 52px 16px 44px;
  text-align: center;
  position: relative; overflow: hidden;
}
.aud-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 0,transparent 50%);
  background-size: 20px 20px; pointer-events: none;
}
.aud-hero-icon { font-size: 52px; margin-bottom: 16px; animation: fadeUp .4s both; }
.aud-hero h1 {
  font-size: clamp(26px,5vw,44px); font-weight: 700; line-height: 1.15;
  margin-bottom: 14px; animation: fadeUp .4s .1s both;
}
.aud-hero h1 span { color: var(--gold); }
.aud-hero p {
  font-size: clamp(14px,2vw,16px); line-height: 1.75;
  max-width: 560px; margin: 0 auto 28px;
  animation: fadeUp .4s .15s both;
}
.aud-hero-actions {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .4s .2s both;
}
.aud-hero-pills {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-top: 24px; animation: fadeUp .4s .25s both;
}
.aud-pill {
  padding: 5px 12px; border-radius: 20px; font-size: 11.5px;
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8);
}

/* ── CONTENT SECTIONS ── */
.section { padding: 52px 16px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-light { background: var(--light); }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.feature-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.product-img { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 40px; background: var(--light); }
.product-body { padding: 12px; }
.product-brand { font-size: 9px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.product-name { font-size: 12.5px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.product-price { font-size: 15px; font-weight: 700; color: var(--navy); }
.price-ex { font-size: 10px; color: var(--muted); }
.prod-badge { font-size: 9px; padding: 2px 6px; border-radius: 3px; font-weight: 700; }
.b-pop { background: #dbeafe; color: #1e40af; }
.b-new { background: #dcfce7; color: #166534; }
.b-sale { background: #fee2e2; color: #991b1b; }
.b-hot { background: #fef3c7; color: #92400e; }
.btn-cart {
  width: 100%; padding: 8px; background: var(--blue); color: #fff;
  border: none; border-radius: 6px; font-size: 11.5px; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.btn-cart:hover { background: var(--navy); }

/* CTA Block */
.cta-block {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px; padding: 36px 24px;
  text-align: center; color: #fff;
}
.cta-block h2 { font-size: clamp(20px,4vw,28px); font-weight: 700; margin-bottom: 10px; }
.cta-block h2 span { color: var(--gold); }
.cta-block p { font-size: 14px; color: #94a3b8; margin-bottom: 24px; line-height: 1.6; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta-btn-gold {
  padding: 11px 22px; background: var(--gold); color: var(--navy);
  border: none; border-radius: 7px; font-size: 13px; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; transition: var(--transition);
}
.cta-btn-gold:hover { background: var(--gold-h); }
.cta-btn-out {
  padding: 11px 22px; border: 2px solid rgba(255,255,255,.3); color: #fff;
  border-radius: 7px; font-size: 13px; font-weight: 600; cursor: pointer;
  background: transparent; display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.cta-btn-out:hover { border-color: #fff; }

/* Mini info cards */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.info-card-icon { font-size: 22px; flex-shrink: 0; }
.info-card-title { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.info-card-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── BRANDS MARQUEE ── */
.brands-bar { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-label { text-align: center; font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.brands-track { overflow: hidden; position: relative; }
.brands-track::before, .brands-track::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
}
.brands-track::before { left: 0; background: linear-gradient(to right,#fff,transparent); }
.brands-track::after  { right: 0; background: linear-gradient(to left,#fff,transparent); }
.brands-scroll { display: flex; gap: 20px; animation: marquee 28s linear infinite; }
.brand-pill {
  padding: 6px 16px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 11px; font-weight: 700; color: var(--muted); white-space: nowrap;
}

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.testi-badge { display: inline-block; font-size: 10px; padding: 2px 8px; border-radius: 4px; font-weight: 700; margin-bottom: 8px; }
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; }
.testi-text { font-size: 13px; line-height: 1.7; color: var(--text); margin-bottom: 14px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 600; }
.testi-role { font-size: 11px; color: var(--muted); }

/* ── FORMS ── */
.form-page { background: var(--light); padding: 40px 16px; min-height: 80vh; }
.form-wrap { max-width: 680px; margin: 0 auto; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.form-card-title { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.form-card-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.fsec { margin-bottom: 22px; }
.fsec-label { font-size: 10px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.cfield { display: flex; flex-direction: column; gap: 4px; }
.cfield label { font-size: 12px; font-weight: 500; color: var(--text); }
.cfield input, .cfield select, .cfield textarea {
  padding: 9px 11px; border: 1px solid var(--border); border-radius: 7px;
  font-size: 13px; outline: none; transition: border .2s;
  background: var(--white); color: var(--text); font-family: inherit; width: 100%;
}
.cfield input:focus, .cfield select:focus, .cfield textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,58,107,.07);
}
.cgrid2 { display: grid; grid-template-columns: 1fr; gap: 12px; }
.cgrid3 { display: grid; grid-template-columns: 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 13px; background: var(--blue); color: #fff;
  border: none; border-radius: 8px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--transition); margin-top: 6px;
}
.form-submit:hover { background: var(--navy); }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.6; }
.form-note a { color: var(--blue); }
.alert { padding: 11px 14px; border-radius: 7px; font-size: 13px; margin-bottom: 14px; }
.alert-success { background: #dcfce7; border: 1px solid #86efac; color: #166534; }
.alert-error   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff; padding: 40px 16px; text-align: center;
}
.page-hero-title { font-size: clamp(22px,4vw,32px); font-weight: 700; margin-bottom: 8px; }
.page-hero-sub   { font-size: 14px; color: #94a3b8; max-width: 480px; margin: 0 auto; }

/* Sector detail */
.sector-features { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 24px; }
.sector-feature {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text); padding: 8px 0;
}
.sector-feature::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── ACCOUNTS PAGE ── */
.accounts-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.account-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; position: relative;
}
.account-card.featured { border: 2px solid var(--blue); }
.account-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 9px; font-weight: 700;
  padding: 3px 12px; border-radius: 20px; white-space: nowrap;
}
.account-icon { font-size: 28px; margin-bottom: 10px; }
.account-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.account-card p  { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.account-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.account-features li { font-size: 12.5px; display: flex; gap: 8px; }
.account-features li::before { content: '✓'; color: var(--success, #059669); font-weight: 700; }

/* ── CONTACT PAGE ── */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  display: flex; gap: 12px; align-items: flex-start;
}
.contact-card-icon { font-size: 20px; flex-shrink: 0; }
.contact-card-label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-card-sub { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.contact-card-val { font-size: 14px; font-weight: 700; color: var(--blue); }

/* ── SIDEBAR (products page) ── */
.products-page { padding: 24px 16px; min-height: 80vh; }
.products-layout { max-width: 1240px; margin: 0 auto; }
.products-sidebar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin-bottom: 16px;
}
.sidebar-title { font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.sidebar-links { display: flex; flex-direction: column; gap: 2px; }
.sidebar-link {
  padding: 7px 9px; border-radius: 5px; font-size: 12.5px;
  color: var(--text); transition: background .15s; display: block;
}
.sidebar-link:hover { background: var(--light); color: var(--blue); }
.sidebar-link.active { background: #dbeafe; color: var(--blue); font-weight: 600; }
.products-toolbar { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.products-count { font-size: 14px; font-weight: 600; color: var(--navy); }
.products-count span { color: var(--muted); font-weight: 400; font-size: 12px; }
.search-input {
  padding: 8px 12px; border: 1px solid var(--border); border-radius: 7px;
  font-size: 13px; outline: none; width: 100%; transition: border .2s;
}
.search-input:focus { border-color: var(--blue); }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: #94a3b8;
  padding: 44px 16px 20px;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 36px; }
.footer-brand-col { grid-column: 1 / -1; }
.footer-brand-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.footer-brand-desc { font-size: 12px; line-height: 1.7; color: #64748b; margin-bottom: 14px; }
.footer-contact { font-size: 12px; color: #64748b; line-height: 1.8; margin-bottom: 14px; }
.footer-social { display: flex; gap: 6px; }
.social-btn {
  width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; cursor: pointer; color: #64748b; transition: var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.fcol-title { font-size: 10px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .7px; margin-bottom: 12px; }
.flinks { display: flex; flex-direction: column; gap: 7px; }
.flinks a { font-size: 12px; color: #64748b; transition: color .2s; }
.flinks a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 16px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 11px; color: #475569;
}
.footer-bottom a { color: #475569; }
.footer-bottom a:hover { color: var(--gold); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 20px; right: 16px; left: 16px;
  background: var(--navy); color: #fff;
  padding: 11px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 500; z-index: 9999;
  transform: translateY(100px); transition: transform .3s;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.toast.show { transform: translateY(0); }

/* ── BACK TO TOP ── */
.btt {
  position: fixed; bottom: 20px; right: 16px;
  width: 38px; height: 38px; background: var(--blue); color: #fff;
  border: none; border-radius: 50%; cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2); transition: var(--transition);
  z-index: 888; opacity: 0; pointer-events: none;
}
.btt.visible { opacity: 1; pointer-events: all; }
.btt:hover { background: var(--navy); }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 12px; color: var(--muted); padding: 12px 16px; max-width: 1240px; margin: 0 auto; }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 5px; }

/* ── TABLET (600px+) ── */
@media (min-width: 600px) {
  .serve-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .cgrid2 { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .accounts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .toast { left: auto; max-width: 340px; }
}

/* ── DESKTOP (900px+) ── */
@media (min-width: 900px) {
  .topbar { font-size: 12px; }
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .serve-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .cgrid2 { grid-template-columns: 1fr 1fr; }
  .cgrid3 { grid-template-columns: 1fr 1fr 1fr; }
  .contact-cards { grid-template-columns: repeat(4, 1fr); }
  .accounts-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .products-layout { display: flex; gap: 20px; align-items: flex-start; }
  .products-sidebar { width: 200px; flex-shrink: 0; margin-bottom: 0; position: sticky; top: 80px; }
  .products-main { flex: 1; }
  .products-toolbar { flex-direction: row; align-items: center; justify-content: space-between; }
  .search-input { width: 180px; }
  .home-hero { padding: 80px 24px 72px; }
  .aud-hero { padding: 72px 24px 60px; }
  .serve-section, .section { padding: 72px 24px; }
  .product-img { height: 140px; }
}

@media (min-width: 1200px) {
  .serve-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ── MOBILE MENU SCROLL FIX ── */
.mobile-menu {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-inner {
  padding-bottom: 40px;
}

/* ── PRODUCT PAGE ── */
.page-enter { animation: pageIn .35s cubic-bezier(.4,0,.2,1) both; }
@keyframes pageIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
