/* ============================================================
   MAX VOLTAGE — Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500&display=swap');

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

:root {
  --accent:        #3A7BD5;
  --accent-bright: #5A9BF5;
  --accent-dim:    #1A4B95;
  --accent-glow:   rgba(58,123,213,0.15);
  --accent-border: rgba(58,123,213,0.35);
  --bg-dark:       #080B12;
  --bg-mid:        #0D1220;
  --bg-card:       #111827;
  --bg-card2:      #162035;
  --text:          #E8EDF5;
  --text-muted:    #7A8AAA;
  --text-dim:      #3A4560;
  --border:        rgba(255,255,255,0.06);
  --white:         #FFFFFF;
  --red:           #FF4A2C;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

a { color: var(--accent-bright); text-decoration: none; }
a:hover { opacity: 0.85; }

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 9999;
  background: rgba(8,11,18,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  height: 64px;
  display: flex; align-items: center;
  padding: 0 4%;
  gap: 24px;
}

.nav-logo img {
  height: 44px; width: auto;
}

.nav-links {
  display: flex; align-items: center; gap: 24px;
  list-style: none;
  margin-left: auto;
  margin-right: 24px;
}

.nav-links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); opacity: 1; }

.nav-book {
  background: var(--accent); color: var(--white) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px !important; font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  padding: 8px 18px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 1 !important;
  transition: background 0.15s !important;
}
.nav-book:hover { background: var(--accent-bright) !important; opacity: 1 !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; margin-left: auto;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(8,11,18,0.98);
  backdrop-filter: blur(16px);
  z-index: 9998;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 900;
  text-transform: uppercase; color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--white); opacity: 1; }
.mobile-menu .nav-book {
  font-size: 24px !important;
  padding: 12px 32px;
}

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.section { padding: 80px 5%; }
.section-mid { background: var(--bg-mid); }
.section-card { background: var(--bg-card); }

.section-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--accent-bright);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px; display: block;
}

.section-title {
  font-size: clamp(36px, 5vw, 54px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 520px; margin-bottom: 48px;
  line-height: 1.65;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 3px;
  font-size: 16px; padding: 13px 28px;
  cursor: pointer; border: none;
  display: inline-block; transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-bright); color: var(--white); opacity: 1; }
.btn-secondary { background: transparent; color: var(--text-muted); border: 0.5px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { border-color: var(--accent-border); color: var(--accent-bright); opacity: 1; }
.btn-youtube { background: var(--red); color: var(--white); }
.btn-youtube:hover { background: #ff6b50; color: var(--white); opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 88vh; padding: 100px 5%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--bg-dark);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(58,123,213,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,123,213,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-glow {
  position: absolute; top: -120px; right: -80px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,123,213,0.1) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(58,123,213,0.1);
  border: 0.5px solid var(--accent-border);
  border-radius: 2px; padding: 4px 12px; margin-bottom: 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--accent-bright);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-tag .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-bright);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(52px, 9vw, 96px);
  line-height: 0.92; margin-bottom: 28px;
}
.hero h1 .accent { color: var(--accent-bright); display: block; }
.hero p {
  font-size: 17px; color: var(--text-muted);
  max-width: 520px; line-height: 1.65; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 0.5px solid var(--border); padding-top: 40px;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 900;
  color: var(--accent-bright); line-height: 1; margin-bottom: 4px;
}
.stat-label {
  font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
}
.service-card {
  background: var(--bg-card); padding: 36px 28px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-card2); }
.service-icon {
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--accent-glow);
  border: 0.5px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 18px;
}
.service-card h3 { font-size: 22px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.service-link {
  display: inline-block; margin-top: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--accent-bright);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============================================================
   YOUTUBE STRIP
   ============================================================ */
.yt-strip {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 6px; padding: 40px;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.yt-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,74,44,0.1);
  border: 0.5px solid rgba(255,74,44,0.3);
  border-radius: 2px; padding: 4px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: #FF6B50;
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.yt-strip h2 { font-size: 32px; margin-bottom: 10px; }
.yt-strip p { font-size: 14px; color: var(--text-muted); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.about-photo-wrap {
  position: relative; border-radius: 6px;
  overflow: hidden; border: 0.5px solid var(--border);
}
.about-photo-wrap img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
}
.about-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(8,11,18,0.88));
  padding: 48px 24px 24px;
}
.about-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900;
  text-transform: uppercase; color: var(--white); line-height: 1;
}
.about-title-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--accent-bright);
  letter-spacing: 0.08em; margin-top: 6px;
}
.about-content h2 { font-size: clamp(36px,4vw,52px); margin-bottom: 24px; }
.about-content h2 span { color: var(--accent-bright); }
.about-content p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.cred-list { list-style: none; margin: 28px 0 32px; }
.cred-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-top: 0.5px solid var(--border);
  font-size: 14px; color: var(--text-muted);
}
.cred-list li:last-child { border-bottom: 0.5px solid var(--border); }
.cred-bullet {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: var(--accent-bright);
  margin-top: 3px; white-space: nowrap;
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 6px; padding: 28px 24px;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: var(--accent-border); }
.product-badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px; margin-bottom: 16px;
}
.badge-new { background: rgba(58,123,213,0.12); color: var(--accent-bright); border: 0.5px solid var(--accent-border); }
.badge-free { background: rgba(50,180,100,0.1); color: #5DD890; border: 0.5px solid rgba(50,180,100,0.25); }
.badge-soon { background: rgba(180,130,50,0.1); color: #F0A840; border: 0.5px solid rgba(180,130,50,0.25); }
.badge-live { background: rgba(255,74,44,0.1); color: #FF6B50; border: 0.5px solid rgba(255,74,44,0.25); }
.product-card h3 { font-size: 20px; margin-bottom: 8px; }
.product-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 900; color: var(--accent-bright);
}
.product-price span { font-size: 13px; color: var(--text-dim); font-family: 'Inter', sans-serif; font-weight: 400; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-mid);
  border-top: 0.5px solid var(--border);
  padding: 80px 5%; text-align: center;
}
.cta-section h2 { font-size: clamp(40px,6vw,68px); margin-bottom: 20px; }
.cta-section h2 span { color: var(--accent-bright); }
.cta-section p { font-size: 16px; color: var(--text-muted); max-width: 480px; margin: 0 auto 36px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.contact-info h3 { font-size: 24px; margin-bottom: 20px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-top: 0.5px solid var(--border);
  font-size: 14px; color: var(--text-muted);
}
.contact-detail:last-child { border-bottom: 0.5px solid var(--border); }
.contact-detail-icon {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: var(--accent-bright);
  white-space: nowrap;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 6px; padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--accent-bright);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 0.5px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent-border); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }
.form-msg {
  margin-top: 16px; padding: 12px 16px;
  border-radius: 3px; font-size: 14px;
  display: none;
}
.form-msg.success { background: rgba(50,180,100,0.1); color: #5DD890; border: 0.5px solid rgba(50,180,100,0.25); }
.form-msg.error { background: rgba(255,74,44,0.1); color: #FF6B50; border: 0.5px solid rgba(255,74,44,0.25); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 80px 5% 60px;
  background: var(--bg-dark);
  border-bottom: 0.5px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,123,213,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,123,213,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(48px,7vw,80px); margin-bottom: 16px; }
.page-hero h1 span { color: var(--accent-bright); }
.page-hero p { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.65; }

/* ============================================================
   COMING SOON CARD
   ============================================================ */
.coming-soon-card {
  background: var(--bg-card);
  border: 0.5px solid var(--accent-border);
  border-radius: 6px; padding: 48px;
  text-align: center;
}
.coming-soon-card .cs-icon {
  font-size: 48px; margin-bottom: 20px;
}
.coming-soon-card h3 { font-size: 28px; margin-bottom: 12px; }
.coming-soon-card p { font-size: 15px; color: var(--text-muted); max-width: 400px; margin: 0 auto 28px; line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 0.5px solid var(--border);
  padding: 48px 5% 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 240px; }
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--accent-bright);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--text); opacity: 1; }
.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 60px 5%; }
  .hero { padding: 80px 5%; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .yt-strip { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 60px 5% 40px; }
}
