/* ============================================================
   JPSURF TECH INDUSTRIES — SHARED DESIGN SYSTEM (B&W Edition)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Barlow+Condensed:wght@300;400;600;700;800&display=swap');

/* ===== TOKENS ===== */
:root {
  --black:   #0d0d0d;
  --dark:    #f5f5f5;
  --steel:   #efefef;
  --mid:     #e5e5e5;
  --panel:   #d8d8d8;
  --accent:  #111111;
  --accent2: #111111;
  --gold:    #333333;
  --red:     #111111;
  --light:   #444444;
  --white:   #ffffff;
  --text:    #111111;
  --border:  rgba(0,0,0,0.15);
  --border2: rgba(0,0,0,0.10);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h: 80px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}
img { display:block; max-width:100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.page-header .eyebrow span {
    color: #ffffff !important;
}
.page-header .section-title {
    color: #ffffff !important;
}
.page-header .hl {
    color: #ffffff !important;
}
.page-header p{
    color: #ffffff !important;
}

.reg-value{
  color: #000 !important;
}
.stats-strip-item .num,.lbl{
  color: #ffffff !important;
}
.featured-band{
  color: #ffffff !important;
}
.featured-band .feat-text .label  {
  color: #ffffff !important;
}
.featured-band .feat-text h2  {
  color: #ffffff !important;
}
.featured-band .feat-text p  {
  color: #ffffff !important;
}
.featured-band .feat-text a  {
  color: #ffffff !important;
}
.products-section .prod-desc{
  color: #000 !important;
}.gs-card .gs-num{
    color: #ffffff !important;

}.gs-card .gs-label{
    color: #ffffff !important;

}.qc-card span{
  color: #ffffff !important;
}.submit-btn{
  color: #ffffff !important;
}
/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--steel); }
::-webkit-scrollbar-thumb { background: var(--black); border-radius: 4px; }

/* ===== SELECTION ===== */
::selection { background: var(--black); color: var(--white); }

/* ===== TYPOGRAPHY ===== */
.display {
  font-family: 'Bebas Neue', cursive;
  line-height: 0.92;
  letter-spacing: 2px;
}
.condensed {
  font-family: 'Barlow Condensed', sans-serif;
}

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s var(--ease), box-shadow 0.3s;
}
#nav.scrolled {
  height: 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo img { height: 48px; width: auto; }
.logo-hex {
  width: 46px; height: 46px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 18px; color: var(--white); font-weight: 900;
  transition: transform 0.3s var(--ease);
  border-radius: 5px;
}
.nav-logo:hover .logo-hex { transform: rotate(30deg); }
.logo-words { display:flex; flex-direction:column; line-height:1; gap:2px; }
.logo-words .name {
  font-family: 'Bebas Neue', cursive;
  font-size: 21px; letter-spacing: 3px;
  color: var(--text);
}
.logo-words .sub {
  font-size: 9.5px; letter-spacing: 3.5px;
  text-transform: uppercase; color: #555555;
  font-weight: 600;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links li a {
  display: inline-flex; align-items: center;
  padding: 8px 18px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #555555;
  position: relative; transition: color 0.25s;
}
.nav-links li a::after {
  content: '';
  position: absolute; bottom: 2px; left: 18px; right: 18px;
  height: 2px; background: var(--black);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
  transform-origin: left;
  border-radius: 2px;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--text); }
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 26px !important;
  border-radius: 4px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover {
  background: #333333 !important;
  transform: translateY(-1px) !important;
}

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-burger span {
  display: block; width: 26px; height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  z-index: 999;
  flex-direction: column; gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile li a {
  display: block; padding: 12px 0;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #555555; border-bottom: 1px solid var(--border2);
  transition: color 0.2s;
}
.nav-mobile li a:hover { color: var(--black); }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: calc(var(--nav-h) + 60px) 64px 60px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: attr(data-title);
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(100px, 14vw, 200px);
  color: rgba(255,255,255,0.04);
  letter-spacing: 8px; pointer-events: none; white-space: nowrap;
  line-height: 1;
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; width: 120px; height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
}

/* ===== SECTION ===== */
.section { padding: 100px 64px; }
.section--dark { background: var(--dark); }
.section--steel { background: var(--steel); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content:''; width:20px; height:2px; background:var(--black); border-radius:2px; }
.eyebrow span {
  font-size: 10.5px; letter-spacing: 4px; text-transform: uppercase;
  color: #333333; font-weight: 600;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95; letter-spacing: 2px;
  color: var(--text);
}
.section-title .hl { color: #333333; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.3s var(--ease);
  border-radius: 4px;
}
.btn--primary {
  background: var(--black); color: var(--white);
  padding: 16px 36px;
}
.btn--primary:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn--outline {
  border: 2px solid var(--black);
  color: var(--black); padding: 14px 34px;
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn--ghost {
  color: #555555; padding: 14px 28px;
  border: 1px solid var(--border2);
}
.btn--ghost:hover { border-color: var(--black); color: var(--black); }

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--black);
  overflow: hidden; padding: 12px 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 36px;
  font-family: 'Bebas Neue', cursive;
  font-size: 17px; letter-spacing: 3px;
  color: var(--white); white-space: nowrap;
}
.marquee-sep { width:5px; height:5px; background:rgba(255,255,255,0.35); border-radius:50%; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== FOOTER ===== */
footer {
  background: #0d0d0d;
  border-top: 3px solid #333;
  color: rgba(255,255,255,0.85);
}
.footer-main {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 64px; padding: 72px 64px 56px;
}
.footer-brand .tagline {
  font-size: 14.5px; color: rgba(255,255,255,0.55); font-weight: 300;
  line-height: 1.75; margin: 18px 0 24px;
}
.footer-socials { display:flex; gap:10px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: all 0.25s; border-radius: 4px;
}
.social-link:hover {
  background: var(--white); color: var(--black);
  border-color: var(--white);
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.9); font-weight: 700;
  padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.55);
  transition: color 0.2s; display:flex; gap:8px; align-items:center;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col .info-row {
  display:flex; gap:10px; align-items:flex-start;
  margin-bottom: 14px; font-size: 13.5px;
  color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.6;
}
.info-row .ico { color: rgba(255,255,255,0.7); flex-shrink:0; margin-top:2px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 64px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 12px; color: rgba(255,255,255,0.35);
}
.gst-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 14px;
  font-size: 10.5px; letter-spacing: 1.5px; color: rgba(255,255,255,0.7);
  border-radius: 3px;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

/* ===== FORM ===== */
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: #333333;
  font-weight: 700; margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%; padding: 13px 18px;
  background: var(--steel);
  border: 1.5px solid var(--border2);
  color: var(--text); font-family: 'Barlow',sans-serif;
  font-size: 15px; font-weight: 300;
  transition: border-color 0.25s, background 0.25s;
  outline: none; border-radius: 4px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select option { background: var(--white); color: var(--text); }

/* ===== UTILS ===== */
.divider {
  height: 1px; background: var(--border2);
  margin: 0; border:none;
}
.tag {
  display: inline-block;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.15);
  padding: 4px 14px;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: #333333;
  font-weight: 600; border-radius: 3px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes slideRight {
  from { opacity:0; transform: translateX(-28px); }
  to   { opacity:1; transform: translateX(0); }
}
.anim-1 { animation: fadeUp 0.7s var(--ease) 0.0s both; }
.anim-2 { animation: fadeUp 0.7s var(--ease) 0.15s both; }
.anim-3 { animation: fadeUp 0.7s var(--ease) 0.3s both; }
.anim-4 { animation: fadeUp 0.7s var(--ease) 0.45s both; }
.anim-5 { animation: fadeUp 0.7s var(--ease) 0.6s both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  #nav { padding: 0 32px; }
  .section { padding: 80px 32px; }
  .page-header { padding: calc(var(--nav-h) + 40px) 32px 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 56px 32px 40px; }
  .footer-bottom { padding: 16px 32px; }
}
@media (max-width: 768px) {
  .nav-links { display:none; }
  .nav-burger { display:flex; }
  .section { padding: 60px 20px; }
  .page-header { padding: calc(var(--nav-h) + 24px) 20px 32px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 32px; }
  .footer-bottom { padding: 14px 20px; flex-direction:column; gap:8px; text-align:center; }
}
