/* ============================================================
   A1 MEDIA COLLECTIVE — GLOBAL STYLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@900&family=Nunito+Sans:wght@200;300;400;600&display=swap');

:root {
  --black: #0a0a0a;
  --black2: #111111;
  --black3: #1a1a1a;
  --surface: #141414;
  --surface2: #1e1e1e;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.14);
  --accent: #c8f542;
  --accent-dim: rgba(200,245,66,0.12);
  --text: #f2f2f2;
  --text-muted: #888780;
  --text-dim: #555450;
  --font-display: 'Nunito', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.logo-a1 { color: #f2f2f2; }
.logo-dot { color: var(--accent); margin: 0 1px; }
.logo-media { color: #f2f2f2; }
.logo-col { color: rgba(255,255,255,0.2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 8px 20px;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  border-radius: var(--radius);
  font-weight: 400 !important;
  transition: background .2s, color .2s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--black) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--black2);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  z-index: 99;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 1.1rem 2rem;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.mobile-menu a:hover { color: var(--text); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: opacity .2s, transform .15s;
}

.btn-primary:hover { opacity: .88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--border2);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: border-color .2s, color .2s;
}

.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

/* ============================================================
   SECTION LABELS
   ============================================================ */

.section-tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 3rem;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 2.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .1s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .25s forwards;
}

.hero-headline .accent { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .55s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
  position: relative;
  z-index: 1;
}

.stat-item { padding: 0 3rem 0 0; }
.stat-item:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border2);
  margin-right: 3rem;
}

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */

.services-preview {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
}

.service-card {
  display: block;
  background: var(--black);
  padding: 3rem;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.service-card:hover { background: var(--surface); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-arrow { color: var(--accent); transform: translateX(6px); }

.service-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: .5;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-arrow {
  font-size: 20px;
  color: var(--text-dim);
  transition: color .25s, transform .25s;
  display: inline-block;
}

/* ============================================================
   PROCESS PREVIEW
   ============================================================ */

.process-preview {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-preview { text-align: center; flex-shrink: 0; }

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 12px;
  box-shadow: 0 0 0 4px var(--accent-dim);
}

.step-name {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--border2);
  margin: 0 1rem;
  margin-bottom: 32px;
  position: relative;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--black2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero-content { max-width: 680px; }

.page-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.page-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-section { padding: 7rem 0; border-top: 1px solid var(--border); }
.services-section:first-of-type { border-top: none; }

.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.service-detail-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-detail h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.service-detail p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-detail-right {}

.pkg-cards { display: flex; flex-direction: column; gap: 1px; background: var(--border); }

.pkg {
  background: var(--black);
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: background .2s;
}

.pkg:hover { background: var(--surface); }

.pkg.featured { background: var(--surface); border-left: 2px solid var(--accent); }

.pkg-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.pkg-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 1rem;
  flex-shrink: 0;
}

.pkg-price span {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 300;
}

.includes-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.includes-list li {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  padding: 5px 0 5px 1.25rem;
  position: relative;
  list-style: none;
}

.includes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1.5px;
  background: var(--accent);
}

/* ============================================================
   PROCESS PAGE
   ============================================================ */

.process-section { padding: 7rem 0; }

.process-track { margin-top: 1rem; }

.process-group { margin-bottom: 4rem; }

.process-group-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child { border-bottom: none; }

.process-step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--accent);
  opacity: .5;
  padding-top: 2px;
}

.process-step-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.process-step-body p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

.process-step-time {
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
  padding-top: 3px;
  font-weight: 300;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-section { padding: 7rem 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.about-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-body p strong { color: var(--text); font-weight: 600; }

.about-values { margin-top: 1rem; }

.value-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.value-item:last-child { border-bottom: none; }

.value-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.value-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section { padding: 7rem 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-item-val {
  font-size: 15px;
  color: var(--text);
  font-weight: 300;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

.form-group label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

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

.form-group select { appearance: none; cursor: pointer; }

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

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: .75rem;
}

.form-success p { color: var(--text-muted); font-weight: 300; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps-row { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .step-line { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 2rem; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .process-step { grid-template-columns: 40px 1fr; }
  .process-step-time { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav { padding: 0 1.25rem; }
  .hero { padding-left: 1.25rem; padding-right: 1.25rem; }
  .container { padding: 0 1.25rem; }
  .service-card { padding: 2rem; }
}
