:root {
  --color-bg: #0A0A0A;
  --color-surface: #111111;
  --color-surface-2: #1A1A1A;
  --color-border: #2A2A2A;
  --color-amber: #F5A623;
  --color-amber-dim: #C07800;
  --color-white: #FFFFFF;
  --color-text-muted: #888888;
  --color-blue-accent: #0070F3;
  --spacing-unit: 8px;
  --section-padding: 120px;
}

@media (max-width: 767px) {
  :root {
    --section-padding: 60px;
  }
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: 'DM Mono', monospace;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .bebas {
  font-family: 'Bebas Neue', cursive;
  text-transform: uppercase;
}

.mono {
  font-family: 'DM Mono', monospace;
}

.accent-label {
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
}

a {
  text-decoration: none;
  transition: 0.2s;
}

/* Global Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav-cta {
  background: var(--color-amber);
  color: #000 !important;
  border-radius: 4px;
  padding: 8px 20px;
  font-weight: bold;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
}

@media (max-width: 767px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links.is-active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
}

/* Footer */
footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 80px 40px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .tagline {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a, .footer-col ul span {
  color: var(--color-text-muted);
  font-size: 14px;
  transition: 0.2s;
}

.footer-col ul a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  margin-top: 60px;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom .copyright {
  color: var(--color-text-muted);
  font-size: 12px;
}

.va-badge {
  color: var(--color-amber);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  footer {
    padding: 60px 20px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Common Layouts */
section {
  padding: var(--section-padding) 40px;
}

@media (max-width: 767px) {
  section {
    padding: var(--section-padding) 20px;
  }
}

.section-label-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-line {
  width: 32px;
  height: 1px;
  background: var(--color-blue-accent);
}

.section-label {
  color: var(--color-blue-accent);
  font-size: 12px;
  font-weight: bold;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.5s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Index Hero */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: var(--color-bg);
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
  padding: 0 40px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: 96px;
  line-height: 0.9;
  margin-bottom: 32px;
}

.hero h1 span {
  display: block;
}

.hero h1 .amber {
  color: var(--color-amber);
}

.hero-sub {
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 28px;
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
}

.btn-primary {
  background: var(--color-amber);
  color: #000;
  border: 1px solid var(--color-amber);
}

.btn-primary:hover {
  background: #000;
  color: var(--color-amber);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

.marquee-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding: 12px 0;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee span {
  color: var(--color-amber);
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  padding-right: 40px;
}

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

@media (max-width: 767px) {
  .hero h1 {
    font-size: 56px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero {
    padding: 0 20px;
  }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid h2 {
  font-size: 72px;
  line-height: 1;
}

.accordion {
  border-top: 1px solid var(--color-border);
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
  transition: 0.2s;
}

.accordion-header {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-item:hover {
  background: rgba(245, 166, 35, 0.06);
  padding-left: 16px;
  padding-right: 16px;
}

.service-name {
  font-size: 24px;
  color: var(--color-white);
  transition: 0.2s;
}

.accordion-item:hover .service-name {
  color: var(--color-amber);
}

.service-tag {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-right: 24px;
  margin-left: auto;
}

.plus-icon {
  color: var(--color-text-muted);
  font-size: 20px;
  transition: 0.3s;
}

.accordion-item:hover .plus-icon {
  color: var(--color-amber);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content {
  padding-bottom: 24px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.accordion-item.is-open .accordion-body {
  max-height: 300px;
}

.accordion-item.is-open .plus-icon {
  transform: rotate(45deg);
  color: var(--color-amber);
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Printer Section */
.printer-section {
  display: flex;
  background: var(--color-bg);
  padding: 0;
}

.printer-img-wrap {
  width: 60%;
  position: relative;
  min-height: 600px;
}

.printer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.printer-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--color-bg));
}

.printer-content {
  width: 40%;
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.printer-content h2 {
  font-size: 64px;
  margin-bottom: 24px;
}

.printer-content p {
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.stat-grid {
  display: flex;
  gap: 16px;
}

.stat-box {
  flex: 1;
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-amber);
  padding: 16px;
}

.stat-val {
  display: block;
  font-size: 24px;
  font-family: 'Bebas Neue', cursive;
  color: var(--color-white);
}

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .printer-section {
    flex-direction: column;
  }
  .printer-img-wrap, .printer-content {
    width: 100%;
  }
  .printer-content {
    padding: 80px 20px;
  }
}

/* Mission Section */
.mission-section {
  background: var(--color-surface);
  text-align: center;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-content h2 {
  font-size: 64px;
  margin-bottom: 32px;
}

.mission-content p {
  font-size: 18px;
  color: var(--color-text-muted);
}

/* FAQ Restyle */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 56px;
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.2s;
}

.faq-question:hover, .faq-item.is-open .faq-question {
  color: var(--color-amber);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--color-text-muted);
  font-size: 14px;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

/* CTA Section */
.cta-section {
  background: var(--color-amber);
  color: #000;
  text-align: center;
}

.cta-section h2 {
  font-size: 72px;
  color: #000;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 48px;
  color: rgba(0, 0, 0, 0.7);
}

.cta-section .hero-actions {
  justify-content: center;
}

.cta-section .btn-primary {
  background: #000;
  color: #fff;
  border-color: #000;
}

.cta-section .btn-primary:hover {
  background: transparent;
  color: #000;
}

.cta-section .btn-secondary {
  border: 2px solid #000;
  color: #000;
}

.cta-section .btn-secondary:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 767px) {
  .cta-section h2 {
    font-size: 48px;
  }
}

/* About Page Specific */
.about-hero {
  background: var(--color-surface);
  text-align: center;
  padding-top: 160px;
}

.about-hero h1 {
  font-size: 80px;
  margin-bottom: 24px;
}

.logo-display {
  background: var(--color-bg);
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-display img {
  max-width: 400px;
  width: 100%;
}

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

.teaching-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.teaching-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
}

.teaching-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 48px;
  color: var(--color-amber);
  line-height: 1;
}

.teaching-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.teaching-content p {
  font-size: 15px;
  color: var(--color-text-muted);
}

.about-block {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.about-block:nth-child(even) {
  flex-direction: row-reverse;
}

.about-block-content {
  flex: 1;
}

.about-block-img {
  flex: 1;
  background: var(--color-surface);
  height: 400px;
  border: 1px solid var(--color-border);
}

@media (max-width: 767px) {
  .about-block {
    flex-direction: column !important;
    gap: 40px;
  }
  .about-hero h1 {
    font-size: 48px;
  }
}

/* Form Page Specific */
.form-page {
  padding-top: 160px;
  text-align: center;
}

.form-page h1 {
  font-size: 72px;
  margin-bottom: 16px;
}

.form-page .subline {
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.form-container {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 48px;
  text-align: left;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 14px 16px;
  border-radius: 3px;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  transition: 0.2s;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--color-amber);
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.btn-submit {
  width: 100%;
  background: var(--color-amber);
  color: #000;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  text-transform: uppercase;
  padding: 16px;
  border: 1px solid var(--color-amber);
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-submit:hover {
  background: #000;
  color: var(--color-amber);
}

@media (max-width: 767px) {
  .form-container {
    padding: 32px 20px;
  }
}
