@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Comic+Neue:wght@400;700&display=swap');

:root {
  --red: #E2252B;
  --blue: #1B3A8C;
  --gold: #FFD700;
  --dark: #0D1117;
  --cream: #FFF9E6;
  --white: #FFFFFF;
  --light-blue: #4A7BFF;
  --shadow: 4px 4px 0px #000;
  --shadow-sm: 2px 2px 0px #000;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Comic Neue', cursive, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ====== HALFTONE PATTERN OVERLAY ====== */
.halftone-bg {
  position: relative;
}
.halftone-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.15) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 1;
}

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--blue);
  border-bottom: 4px solid var(--gold);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  text-shadow: 2px 2px 0px var(--red), 4px 4px 0px #000;
  letter-spacing: 2px;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--blue) 0%, #0D1B4A 50%, var(--dark) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,215,0,0.06) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}
.hero-burst {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255,215,0,0.08) 10deg,
    transparent 20deg,
    rgba(255,215,0,0.08) 30deg,
    transparent 40deg,
    rgba(255,215,0,0.08) 50deg,
    transparent 60deg,
    rgba(255,215,0,0.08) 70deg,
    transparent 80deg,
    rgba(255,215,0,0.08) 90deg,
    transparent 100deg,
    rgba(255,215,0,0.08) 110deg,
    transparent 120deg
  );
  border-radius: 50%;
  animation: rotateBurst 30s linear infinite;
  pointer-events: none;
}
@keyframes rotateBurst {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  padding: 0.4rem 1.2rem;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transform: rotate(-3deg);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}
.hero h1 {
  font-family: 'Bangers', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--gold);
  text-shadow: 3px 3px 0px var(--red), 6px 6px 0px rgba(0,0,0,0.5);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}
.hero-sub {
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 700;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.stat-box {
  background: rgba(255,255,255,0.05);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.5rem;
  text-align: center;
  transform: rotate(-1deg);
}
.stat-box:nth-child(2) { transform: rotate(1deg); }
.stat-box:nth-child(3) { transform: rotate(-0.5deg); }
.stat-num {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  color: var(--gold);
  text-shadow: 2px 2px 0px var(--red);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ====== RADIO PLAYER SECTION ====== */
.radio-section {
  position: relative;
  padding: 6rem 2rem;
  background: var(--red);
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid var(--gold);
  overflow: hidden;
}
.radio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.1) 1.5px, transparent 1.5px);
  background-size: 6px 6px;
  pointer-events: none;
}
.radio-section-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.section-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  text-shadow: 3px 3px 0px #000;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.section-sub {
  font-size: 1.2rem;
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Radio Player Visualization */
.radio-player {
  background: linear-gradient(145deg, #2A1810 0%, #1A0F09 100%);
  border: 5px solid var(--gold);
  border-radius: 20px;
  box-shadow: 8px 8px 0px #000, inset 0 2px 20px rgba(255,215,0,0.1);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.radio-display {
  background: linear-gradient(180deg, #1a2a1a 0%, #0a1a0a 100%);
  border: 3px solid #444;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-family: 'Courier New', monospace;
  text-align: center;
  box-shadow: inset 0 0 30px rgba(0,255,0,0.05);
}
.radio-freq {
  font-family: 'Bangers', cursive;
  font-size: 3rem;
  color: #00ff44;
  text-shadow: 0 0 10px rgba(0,255,68,0.5);
  letter-spacing: 4px;
}
.radio-category {
  font-size: 1rem;
  color: #00cc44;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 0.3rem;
}
.radio-dial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.dial-label {
  font-family: 'Bangers', cursive;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 1px;
  min-width: 50px;
}
.dial-track {
  flex: 1;
  height: 6px;
  background: #333;
  border-radius: 3px;
  position: relative;
}
.dial-track-fill {
  height: 100%;
  width: 35%;
  background: var(--gold);
  border-radius: 3px;
}
.dial-notches {
  display: flex;
  justify-content: space-between;
  flex: 1;
  padding: 0;
}
.dial-notch {
  width: 3px;
  height: 12px;
  background: var(--gold);
  opacity: 0.5;
}
.dial-notch.active {
  height: 18px;
  opacity: 1;
  background: #00ff44;
}
.radio-knobs {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 1.5rem;
}
.knob-group {
  text-align: center;
}
.knob {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #555 0deg, #888 90deg, #555 180deg, #333 270deg, #555 360deg);
  border: 3px solid var(--gold);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5), inset 0 1px 3px rgba(255,255,255,0.2);
  margin: 0 auto 0.5rem;
  position: relative;
}
.knob::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 15px;
  background: var(--gold);
  border-radius: 2px;
}
.knob-label {
  font-family: 'Bangers', cursive;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.radio-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid var(--gold);
  box-shadow: var(--shadow), 0 0 20px rgba(226,37,43,0.3);
  cursor: pointer;
}
.play-triangle {
  width: 0;
  height: 0;
  border-left: 22px solid var(--gold);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}
.radio-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.cat-pill {
  font-family: 'Bangers', cursive;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 20px;
  letter-spacing: 1px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.cat-pill.active {
  opacity: 1;
  background: rgba(255,215,0,0.15);
}

/* ====== SERVICES ====== */
.services-section {
  padding: 6rem 2rem;
  background: var(--dark);
  position: relative;
}
.services-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: linear-gradient(145deg, rgba(27,58,140,0.3) 0%, rgba(13,17,23,0.8) 100%);
  border: 3px solid var(--blue);
  box-shadow: var(--shadow);
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translate(-2px, -2px);
  border-color: var(--gold);
}
.service-card::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  text-shadow: var(--shadow-sm);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.service-card p {
  color: var(--cream);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ====== PRICING ====== */
.pricing-section {
  padding: 6rem 2rem;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,215,0,0.04) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}
.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.price-card {
  background: rgba(13,17,23,0.9);
  border: 4px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s;
}
.price-card:hover {
  transform: translate(-2px, -2px);
}
.price-card.featured {
  border-color: var(--red);
  transform: scale(1.03);
}
.price-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: 'Bangers', cursive;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  border: 2px solid var(--gold);
  letter-spacing: 2px;
  white-space: nowrap;
}
.price-duration {
  font-family: 'Bangers', cursive;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.price-amount {
  font-family: 'Bangers', cursive;
  font-size: 3.5rem;
  color: var(--gold);
  text-shadow: 2px 2px 0px var(--red);
  line-height: 1;
  margin-bottom: 1rem;
}
.price-amount sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}
.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,215,0,0.1);
  color: var(--cream);
  font-size: 0.95rem;
}
.price-features li::before {
  content: '\2605 ';
  color: var(--gold);
}
.price-bonus {
  background: rgba(255,215,0,0.1);
  border: 2px dashed var(--gold);
  padding: 0.8rem;
  margin-top: 1rem;
  font-family: 'Bangers', cursive;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ====== ABOUT ====== */
.about-section {
  padding: 6rem 2rem;
  background: var(--dark);
  position: relative;
}
.about-inner {
  max-width: 900px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.about-text {
  color: var(--cream);
  line-height: 1.8;
  font-size: 1.05rem;
}
.about-text strong {
  color: var(--gold);
}
.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.client-tag {
  background: rgba(27,58,140,0.4);
  border: 2px solid var(--blue);
  color: var(--cream);
  font-family: 'Bangers', cursive;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  letter-spacing: 1px;
}
.cred-list {
  list-style: none;
}
.cred-list li {
  padding: 1rem;
  border-left: 4px solid var(--gold);
  margin-bottom: 1rem;
  background: rgba(255,215,0,0.03);
}
.cred-list li strong {
  color: var(--gold);
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.3rem;
}
.cred-list li span {
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ====== CLOSING ====== */
.closing-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--red) 0%, #8B0000 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--gold);
}
.closing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 6px 6px;
  pointer-events: none;
}
.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.closing-inner h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  text-shadow: 3px 3px 0px #000;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}
.closing-inner p {
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ====== FOOTER ====== */
.footer {
  padding: 2rem;
  background: var(--dark);
  border-top: 3px solid var(--blue);
  text-align: center;
}
.footer p {
  color: rgba(255,249,230,0.4);
  font-size: 0.85rem;
}
.footer .footer-brand {
  font-family: 'Bangers', cursive;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ====== SPEECH BUBBLES ====== */
.speech-bubble {
  position: relative;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Bangers', cursive;
  padding: 0.8rem 1.5rem;
  display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 12px solid var(--gold);
  border-right: 12px solid transparent;
  border-top: 12px solid var(--gold);
  border-bottom: 12px solid transparent;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .nav { padding: 0.5rem 1rem; }
  .nav-links { display: none; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-stats { gap: 1rem; }
  .stat-box { padding: 0.75rem 1rem; }
  .stat-num { font-size: 1.8rem; }
  .radio-player { padding: 1.5rem; }
  .radio-freq { font-size: 2rem; }
  .radio-knobs { gap: 1.5rem; }
  .knob { width: 48px; height: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .price-card.featured { transform: none; }
  .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .radio-categories { gap: 0.5rem; }
  .cat-pill { font-size: 0.75rem; padding: 0.3rem 0.7rem; }
}
/* ====== NAV CTA + MOBILE TOGGLE ====== */
.nav-cta {
  background: var(--red);
  color: var(--white) \!important;
  padding: 0.4rem 1rem \!important;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.1s \!important;
}
.nav-cta:hover {
  background: #b51a1f;
  transform: translate(-1px, -1px);
  color: var(--white) \!important;
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
}

/* ====== CTA BUTTON (global) ====== */
.cta-btn {
  display: inline-block;
  margin-top: 2rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Bangers', cursive;
  font-size: 1.4rem;
  letter-spacing: 2px;
  padding: 0.9rem 2.5rem;
  border: 4px solid #000;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000;
  background: #ffe84d;
}

/* ====== PAGE HERO (inner pages) ====== */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0D1B4A 60%, var(--dark) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  border-bottom: 5px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,215,0,0.05) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.page-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--gold);
  text-shadow: 3px 3px 0px var(--red), 6px 6px 0px rgba(0,0,0,0.4);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 1rem;
}
.page-subtitle {
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* ====== PAGE SECTIONS ====== */
.page-section {
  padding: 5rem 2rem;
}
.page-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ====== PAGE CTA SECTION ====== */
.page-cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--red) 0%, #8B0000 100%);
  text-align: center;
  border-top: 5px solid var(--gold);
}
.page-cta-section h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  text-shadow: 3px 3px 0px #000;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.page-cta-section p {
  color: var(--cream);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* ====== ABOUT PAGE ====== */
.about-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-top: 2.5rem;
  align-items: start;
}
.stats-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat-block {
  background: rgba(255,215,0,0.05);
  border: 3px solid var(--gold);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-big {
  font-family: 'Bangers', cursive;
  font-size: 2.8rem;
  color: var(--gold);
  text-shadow: 2px 2px 0px var(--red);
  letter-spacing: 2px;
}
.stat-desc {
  color: var(--cream);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.4rem;
}
.client-tags-large {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.client-tag-lg {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,215,0,0.4);
  color: var(--cream);
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  letter-spacing: 1px;
}
.cred-list-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.cred-item-page {
  padding: 1.5rem;
  border-left: 5px solid var(--gold);
  background: rgba(255,215,0,0.03);
}
.cred-item-page strong {
  display: block;
  font-family: 'Bangers', cursive;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.cred-item-page p {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ====== SERVICES PAGE ====== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.service-detail-card {
  background: linear-gradient(145deg, rgba(27,58,140,0.25) 0%, rgba(13,17,23,0.9) 100%);
  border: 3px solid var(--blue);
  box-shadow: var(--shadow);
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.service-detail-card:hover {
  transform: translate(-2px, -2px);
  border-color: var(--gold);
}
.service-detail-card::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.service-detail-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.service-detail-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  text-shadow: var(--shadow-sm);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}
.service-detail-card p {
  color: var(--cream);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.service-detail-price {
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  color: rgba(255,215,0,0.7);
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,215,0,0.2);
  padding-top: 0.75rem;
}
.service-detail-price strong {
  color: var(--gold);
  font-size: 1.3rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.process-num {
  font-family: 'Bangers', cursive;
  font-size: 3rem;
  color: var(--red);
  text-shadow: 2px 2px 0px #000;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ====== PORTFOLIO PAGE ====== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.portfolio-card {
  background: linear-gradient(145deg, rgba(27,58,140,0.2) 0%, rgba(13,17,23,0.95) 100%);
  border: 3px solid var(--blue);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  transition: transform 0.2s, border-color 0.2s;
}
.portfolio-card:hover {
  transform: translate(-2px, -2px);
  border-color: var(--gold);
}
.portfolio-category {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Bangers', cursive;
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  letter-spacing: 2px;
  border: 2px solid var(--gold);
  margin-bottom: 0.75rem;
}
.portfolio-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.portfolio-desc {
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.portfolio-player {
  margin-bottom: 1rem;
}
.portfolio-player audio {
  border-radius: 4px;
  accent-color: var(--gold);
}
.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.portfolio-tags span {
  font-size: 0.75rem;
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255,215,0,0.3);
  color: rgba(255,215,0,0.6);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.industry-tile {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,215,0,0.3);
  color: var(--cream);
  font-family: 'Bangers', cursive;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.industry-tile:hover {
  border-color: var(--gold);
  background: rgba(255,215,0,0.08);
}

/* ====== FAQ PAGE ====== */
.faq-inner {
  max-width: 800px;
}
.faq-category {
  margin-bottom: 3rem;
}
.faq-cat-title {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--red);
  text-shadow: 1px 1px 0px #000;
  letter-spacing: 2px;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--gold);
  margin-bottom: 1.5rem;
}
.faq-item {
  border-bottom: 1px solid rgba(255,215,0,0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-q {
  font-family: 'Bangers', cursive;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.5px;
  padding: 1rem 2.5rem 1rem 0;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.2s;
}
.faq-item.open .faq-q {
  color: var(--gold);
}
.faq-item.open .faq-q::after {
  content: '−';
}
.faq-a {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 0 0 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* ====== CONTACT PAGE ====== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  /* left column */
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form label {
  display: block;
  font-family: 'Bangers', cursive;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,215,0,0.3);
  color: var(--cream);
  font-family: 'Comic Neue', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form select option {
  background: var(--dark);
  color: var(--cream);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  border: 4px solid var(--gold);
  background: rgba(255,215,0,0.05);
}
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: 'Bangers', cursive;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.6;
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-card {
  background: rgba(255,215,0,0.04);
  border: 2px solid rgba(255,215,0,0.2);
  padding: 1.5rem;
}
.contact-info-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,215,0,0.2);
}
.contact-steps {
  list-style: none;
  counter-reset: steps;
}
.contact-steps li {
  padding: 0.6rem 0;
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-steps li:last-child { border-bottom: none; }
.contact-steps li strong {
  color: var(--gold);
  font-family: 'Bangers', cursive;
  letter-spacing: 0.5px;
  font-size: 1rem;
  display: block;
}
.contact-price-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-price-row {
  display: flex;
  justify-content: space-between;
  color: var(--cream);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-price-row strong {
  color: var(--gold);
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* ====== FOOTER LINKS ====== */
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.footer-links a {
  font-family: 'Bangers', cursive;
  font-size: 0.9rem;
  color: rgba(255,249,230,0.5);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}

/* ====== RESPONSIVE: new pages ====== */
@media (max-width: 768px) {
  .nav-mobile-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue);
    border-bottom: 3px solid var(--gold);
    padding: 1rem 2rem;
    gap: 0.75rem;
    z-index: 99;
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav { position: relative; flex-wrap: wrap; }
  .about-page-grid { grid-template-columns: 1fr; }
  .cred-list-page { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
}
