/* =========================================
   BLACKDOG — GLOBAL STYLES
   ========================================= */

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

:root {
  --acid: #E0FF4F;
  --black: #1D1D1D;
  --white: #FFFFFF;
  --gray: #888;
  --gray-light: #2a2a2a;
  --gray-mid: #444;
  --gray-border: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================================
   NAV
   ========================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(29,29,29,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-border);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(29,29,29,0.99);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--acid); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--acid);
  padding: 9px 22px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(224,255,79,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-headline em {
  font-style: normal;
  color: var(--acid);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  right: 64px;
  bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  z-index: 2;
}

.stat {
  text-align: right;
  border-right: 2px solid var(--acid);
  padding-right: 18px;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -2px;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 2;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--acid);
  animation: slide 2s ease-in-out infinite;
}
@keyframes slide { to { left: 100%; } }

/* =========================================
   MARQUEE
   ========================================= */
.marquee-section {
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  background: rgba(224,255,79,0.02);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 0 32px;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  background: var(--acid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 32px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   SHARED SECTION STYLES
   ========================================= */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 120px 0;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-body {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.7;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--acid);
  padding: 14px 32px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--white); }

.btn-dark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
  background: var(--black);
  padding: 14px 32px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.85; }

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  background: #181818;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.07);
}

.service-card {
  background: #181818;
  padding: 44px 36px;
  transition: background 0.25s;
  cursor: default;
}
.service-card:hover { background: #202020; }

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--acid);
  margin-bottom: 20px;
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* =========================================
   WHY BLACKDOG
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.why-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-border);
}
.why-item:first-child { border-top: 1px solid var(--gray-border); }

.why-icon {
  width: 32px;
  height: 32px;
  background: var(--acid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-icon svg { width: 14px; height: 14px; fill: none; stroke: var(--black); stroke-width: 1.5; }

.why-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.why-text p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.why-card-big {
  background: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.why-card-big::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--acid);
}

.big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  color: var(--acid);
  letter-spacing: -3px;
  margin-bottom: 8px;
}

.big-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
}

.big-body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 32px;
}

.big-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.big-stats-row {
  display: flex;
  gap: 32px;
}

.big-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.big-mini-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.big-mini-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* =========================================
   ROSTER PREVIEW
   ========================================= */
.roster-preview-section {
  background: #161616;
}

.roster-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.roster-header .section-title { margin-bottom: 0; }

.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.creator-card {
  background: #161616;
  padding: 32px 28px;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.creator-card:hover { background: #1e1e1e; }
.creator-card:hover .creator-arrow { opacity: 1; transform: translate(0, 0); }

.creator-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 10px;
}

.creator-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1;
}

.creator-handle {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 24px;
}

.creator-stats {
  display: flex;
  gap: 20px;
}

.c-stat { display: flex; flex-direction: column; gap: 4px; }

.c-stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.c-stat-l {
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.creator-arrow {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 18px;
  color: var(--acid);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.2s;
}

.roster-cta {
  margin-top: 48px;
  text-align: center;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-row {
  display: flex;
  gap: 0;
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.07);
}

.process-step {
  flex: 1;
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.process-step:last-child { border-right: none; }

.process-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--acid);
  margin-bottom: 14px;
}

.process-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-section {
  background: var(--acid);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'BLACKDOG';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(0,0,0,0.05);
  letter-spacing: -10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0;
}

.cta-headline em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.cta-section .section-label { color: rgba(0,0,0,0.45); }

.cta-body {
  font-size: 17px;
  font-weight: 300;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #111;
  padding: 56px 48px 32px;
  border-top: 1px solid var(--gray-border);
  max-width: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
}
.footer-brand span { color: var(--acid); }

.footer-tagline {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}

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

.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-text {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-border);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================================
   PAGE HEADER (inner pages)
   ========================================= */
.page-header {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--gray-border);
}

/* =========================================
   ROSTER PAGE
   ========================================= */
.roster-page-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.roster-full-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-border);
  transition: background 0.2s;
}
.roster-full-card:hover { background: rgba(255,255,255,0.02); }

.roster-card-left {
  padding: 48px 40px;
  border-right: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.roster-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--acid);
  margin-bottom: 16px;
}

.roster-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.roster-card-tag {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}

.roster-card-right {
  padding: 48px 48px 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.roster-card-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  grid-column: 1 / -1;
}

.roster-card-why {
  grid-column: 1 / -1;
}

.roster-card-why h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 10px;
}

.roster-card-why p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 600px;
}

.roster-card-stats {
  display: flex;
  gap: 32px;
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--gray-border);
}

.r-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.r-stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.r-stat-l {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.roster-audience {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-border);
}

.audience-block h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.audience-block p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}

.about-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 32px 0 12px;
}

.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 16px;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--gray-border);
}

.value-item {
  padding: 32px 36px;
  border-bottom: 1px solid var(--gray-border);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}
.value-item:last-child { border-bottom: none; }

.value-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--acid);
  line-height: 1;
  margin-top: -4px;
}

.value-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.value-body p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}

.contact-info p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-border);
}

.contact-direct-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-border);
}
.contact-direct-item:last-child { border-bottom: none; }

.contact-direct-item .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 6px;
}

.contact-direct-item .value {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

.contact-direct-item a {
  color: var(--white);
  text-decoration: none;
}
.contact-direct-item a:hover { color: var(--acid); }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group select { color: rgba(255,255,255,0.6); }
.form-group select option { background: #1D1D1D; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(224,255,79,0.5); }

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

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

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

.form-submit .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 16px;
  cursor: pointer;
  border: none;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .nav-links { gap: 24px; }
  .hero { padding: 72px 28px 80px; }
  .hero-stats { right: 28px; bottom: 80px; }
  .section-inner { padding: 0 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { flex-wrap: wrap; }
  .process-step { min-width: calc(50% - 1px); border-bottom: 1px solid rgba(255,255,255,0.07); }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .roster-full-card { grid-template-columns: 1fr; }
  .roster-card-right { grid-template-columns: 1fr; }
  footer { padding: 48px 28px 28px; }
  .footer-top { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-headline { font-size: 64px; letter-spacing: -1px; }
  .hero-stats { display: none; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .roster-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 32px; }
  .roster-header { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* Social links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover {
  color: var(--acid);
  border-color: rgba(224,255,79,0.35);
}
