/* ============================================
   THE MOBILE WELDER — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Share+Tech+Mono&display=swap');

/* ── Variables ── */
:root {
  --cyan:    #00f5ff;
  --pink:    #ff00c8;
  --lilac:   #fea3f7;
  --green:   #00ff88;
  --yellow:  #ffd700;
  --purple:  #bf00ff;
  --orange:  #ff6b00;
  --dark:    #0a0a0f;
  --card:    #111118;
  --border:  #1e1e2e;
  --text:    #e0e0f0;
  --muted:   #9090aa;
  --white:   #ffffff;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --radius: 4px;
  --shadow-cyan: 0 0 20px rgba(0,245,255,0.15);
  --shadow-pink: 0 0 20px rgba(255,0,200,0.15);
  --transition: 0.2s ease;
  --container: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--white); font-weight: 600; }

.text-cyan   { color: var(--cyan); }
.text-pink   { color: var(--pink); }
.text-green  { color: var(--green); }
.text-yellow { color: var(--yellow); }
.text-muted  { color: var(--muted); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 40px; } }

.section {
  padding: 80px 0;
}
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
}

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

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Background patterns ── */
.bg-grid {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0,245,255,0.025) 60px, rgba(0,245,255,0.025) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0,245,255,0.025) 60px, rgba(0,245,255,0.025) 61px);
}
.bg-card { background: var(--card); }
.bg-dark  { background: var(--dark); }

/* ── Dividers ── */
hr, .divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 48px 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(0,245,255,0.3);
}
.btn-primary:hover {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 0 30px rgba(0,245,255,0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn-outline:hover {
  background: rgba(0,245,255,0.08);
  color: var(--white);
  border-color: var(--white);
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255,0,200,0.3);
}
.btn-pink:hover {
  box-shadow: 0 0 30px rgba(255,0,200,0.5);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,245,255,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,245,255,0.5));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 10px rgba(0,245,255,0.4);
}

.nav-logo-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
}

/* Main nav */
.nav-main {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 960px) { .nav-main { display: flex; } }

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover, .nav-link.active {
  color: var(--cyan);
  background: rgba(0,245,255,0.06);
}

.nav-link .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}

.nav-item:hover .chevron { transform: rotate(225deg) translateY(-2px); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--cyan);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), var(--shadow-cyan);
  padding: 8px 0;
  z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 0.875rem;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: all var(--transition);
}
.nav-dropdown a:hover {
  color: var(--cyan);
  background: rgba(0,245,255,0.05);
  padding-left: 24px;
}

.nav-cta {
  display: none;
}
@media (min-width: 960px) { .nav-cta { display: flex; } }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
@media (min-width: 960px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  overflow-y: auto;
  padding: 20px;
  z-index: 999;
}
.nav-mobile.open { display: block; }

.nav-mobile-link {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile-link:hover { color: var(--cyan); }

.nav-mobile-sub {
  padding: 6px 28px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--muted);
  display: block;
  border-bottom: 1px solid rgba(30,30,46,0.5);
  transition: color var(--transition);
}
.nav-mobile-sub:hover { color: var(--cyan); }

.nav-mobile-cta {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 72% 18%, rgba(254,163,247,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,245,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 70%, rgba(255,0,200,0.07) 0%, transparent 50%),
    linear-gradient(170deg, rgba(10,10,15,0.68) 0%, rgba(10,10,15,0.88) 100%),
    url('../img/hero-welding.webp') center 40% / cover no-repeat;
  z-index: 0;
}

/* ── Neon lighting tubes ── */
.hero-neon {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* lightning bolt SVGs sit inside .hero-neon */
.hero-bolts {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bolt {
  animation: bolt-flicker 8s ease-in-out infinite;
}
.bolt-cyan         { animation-duration: 9s; }
.bolt-lilac        { animation-duration: 13s; animation-delay: 2s; }
.bolt-pink         { animation-duration: 16s; animation-delay: 5s; }
.bolt-fork         { animation-duration: 9s; animation-delay: 0.15s; }
@keyframes bolt-flicker {
  0%, 87%, 91%, 94%, 100% { opacity: 1; }
  88%  { opacity: 0.2; }
  90%  { opacity: 0.8; }
  92%  { opacity: 0.15; }
  93%  { opacity: 0.9; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0,245,255,0.03) 60px, rgba(0,245,255,0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0,245,255,0.03) 60px, rgba(0,245,255,0.03) 61px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--cyan);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--lilac) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(0,245,255,0.35));
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── Page hero (smaller, for inner pages) ── */
.page-hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10,10,15,0.78), rgba(10,10,15,0.92)),
    radial-gradient(ellipse 60% 100% at 30% 50%, rgba(0,245,255,0.06) 0%, transparent 60%),
    url('../img/workshop.webp') center / cover no-repeat;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
}
.page-hero-breadcrumb a { color: var(--cyan); }
.page-hero-breadcrumb span { margin: 0 8px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
}

/* ── Cards ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.card-cyan  { border-top: 2px solid var(--cyan); }
.card-pink  { border-top: 2px solid var(--pink); }
.card-green { border-top: 2px solid var(--green); }
.card-yellow{ border-top: 2px solid var(--yellow); }

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,245,255,0.3);
  box-shadow: var(--shadow-cyan);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* Service cards with link */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--lilac), var(--pink));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(0,245,255,0.25);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .card-title { color: var(--cyan); }

.service-card .arrow {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card .arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.service-card:hover .arrow::after { transform: translateX(4px); }

/* ── Service card image ── */
.service-card-img {
  height: 160px;
  margin: -28px -28px 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.4) brightness(0.9);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
  display: block;
}
.service-card:hover .service-card-img img {
  opacity: 0.75;
  filter: saturate(0.75) brightness(1);
  transform: scale(1.04);
}

/* ── Blog card image ── */
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.55);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
  display: block;
}
.blog-card:hover .blog-card-img img {
  opacity: 0.95;
  filter: saturate(0.9);
  transform: scale(1.03);
}

/* ── Photo strip ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.photo-strip-item {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.8);
  transition: filter 0.4s ease, transform 0.5s ease;
  display: block;
}
.photo-strip-item:hover img {
  filter: saturate(0.85) brightness(1);
  transform: scale(1.04);
}
.photo-strip-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
@media (max-width: 600px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip-item { height: 200px; }
}

/* ── Feature image ── */
.img-feature {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.img-feature img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.9);
  transition: filter 0.4s ease;
}
.img-feature:hover img { filter: saturate(0.9) brightness(1); }

/* ── Rate cards ── */
.rate-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.rate-block-header {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.rate-block-header.steel     { background: rgba(0,245,255,0.06);  color: var(--cyan); }
.rate-block-header.stainless { background: rgba(191,0,255,0.06); color: var(--purple); }
.rate-block-header.aluminium { background: rgba(255,107,0,0.06); color: var(--orange); }

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.rate-row:last-child { border-bottom: none; }

.rate-type {
  font-size: 0.875rem;
  color: var(--muted);
}

.rate-price {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--yellow);
}

/* ── Suburb / area chips ── */
.suburb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suburb-chip {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
}
.suburb-chip:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0,245,255,0.05);
}

/* ── Why us list ── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}
.check-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--cyan); }
.faq-toggle {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
  font-size: 1rem;
  transition: all var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); border-color: var(--cyan); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
}
.faq-item.open .faq-a { display: block; }

/* ── Contact form ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr 1.4fr; }
  .contact-wrap > div:first-child { order: 2; }
  .contact-wrap > div:last-child  { order: 1; }
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.contact-info-value a { color: var(--cyan); }
.contact-info-value a:hover { color: var(--white); }

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 480px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full { grid-column: 1 / -1; }

label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

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

input:focus, select:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,245,255,0.08);
  background: rgba(0,245,255,0.03);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239090aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

select option { background: var(--card); color: var(--white); }

textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; margin-top: 8px; }

/* ── File Upload ── */
.file-upload-wrap {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(0,245,255,0.02);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.file-upload-wrap:hover,
.file-upload-wrap.drag-over {
  border-color: var(--cyan);
  background: rgba(0,245,255,0.05);
}
.file-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.file-upload-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  pointer-events: none;
  gap: 6px;
}
.file-upload-icon { font-size: 1.75rem; line-height: 1; }
.file-upload-text { font-size: .9rem; color: var(--text); }
.file-upload-browse { color: var(--cyan); text-decoration: underline; }
.file-upload-hint { font-size: .75rem; color: var(--muted); font-family: var(--font-mono); letter-spacing: .5px; }
.file-upload-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 14px;
}
.file-upload-list:empty { display: none; }
.file-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  border-radius: 3px;
  padding: 4px 10px;
  font-size: .78rem;
  font-family: var(--font-mono);
  color: var(--cyan);
  max-width: 220px;
}
.file-chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-chip-remove {
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  font-size: .9rem;
}
.file-chip-remove:hover { color: var(--pink); }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.show { display: block; }
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h3 { color: var(--green); margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ── Testimonials ── */
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4rem;
  color: rgba(0,245,255,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.testimonial-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}
.stars {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ── Blog ── */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(0,245,255,0.25);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--cyan); }
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.blog-card-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
}
.blog-card-read {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Article content */
.article-body {
  max-width: 760px;
}
.article-body h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.article-body h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--cyan);
}
.article-body p { margin-bottom: 18px; color: var(--text); line-height: 1.8; }
.article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.article-body ul li {
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.65;
}
.article-body table { margin: 24px 0; }
.article-body table th {
  background: rgba(0,245,255,0.06);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.article-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  color: var(--text);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(254,163,247,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 100% at 80% 0%, rgba(0,245,255,0.06) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { color: var(--muted); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Footer ── */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact a {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-legal a:hover { color: var(--cyan); }
.footer-by { font-size: 0.75rem; color: var(--muted); }
.footer-by a { color: var(--muted); }
.footer-by a:hover { color: var(--cyan); }

/* ── Neon glow divider ── */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 30%, var(--pink) 70%, transparent 100%);
  margin: 0;
  opacity: 0.5;
}

/* ── Badges / pills ── */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.badge-cyan   { background: rgba(0,245,255,0.1);   color: var(--cyan);   border: 1px solid rgba(0,245,255,0.25); }
.badge-green  { background: rgba(0,255,136,0.1);   color: var(--green);  border: 1px solid rgba(0,255,136,0.25); }
.badge-yellow { background: rgba(255,215,0,0.1);   color: var(--yellow); border: 1px solid rgba(255,215,0,0.25); }
.badge-pink   { background: rgba(255,0,200,0.1);   color: var(--pink);   border: 1px solid rgba(255,0,200,0.25); }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Floating mobile CTA bar ── */
.mobile-cta-float {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta-float {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
  }
  .mobile-cta-float .btn {
    display: block;
    width: 100%;
    padding: 17px 24px;
    padding-bottom: max(17px, env(safe-area-inset-bottom));
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    background: var(--pink);
    color: #fff;
    box-shadow: 0 -8px 32px rgba(255,0,200,0.55);
  }
  body { padding-bottom: 60px; }
}

/* ── Responsive helpers ── */
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .cta-banner { padding: 32px 24px; }
  .form-card { padding: 24px; }
  .hero-stats { gap: 24px; }
}
