/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #d42b2b;
  --red-bright: #ff3a3a;
  --blue:       #00c3ff;
  --black:      #050505;
  --dark:       #0e0e0e;
  --card-bg:    #111111;
  --border:     rgba(255,255,255,0.07);
  --text:       #e8e8e8;
  --muted:      #888;
  --glow-red:   0 0 24px rgba(212,43,43,0.55);
  --glow-blue:  0 0 22px rgba(0,195,255,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────────────────── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.red  { color: var(--red-bright); }
.blue { color: var(--blue); }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--glow-red);
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 0 32px rgba(255,58,58,0.7);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: var(--glow-blue);
}
.btn-outline:hover {
  background: rgba(0,195,255,0.08);
  box-shadow: 0 0 32px rgba(0,195,255,0.65);
}

/* ── Header ───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 5%;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.header-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.header-nav a:hover { color: var(--blue); }
.header-nav a:hover::after { transform: scaleX(1); }

.header-cta { font-size: 0.85rem; padding: 0.6rem 1.3rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  z-index: 999;
  background: rgba(5,5,5,0.97);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5% 2rem;
  flex-direction: column;
  gap: 1.4rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .btn { align-self: flex-start; }

/* ── Hero ─────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 55%, rgba(0,195,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 15% 40%, rgba(212,43,43,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,195,255,0.1);
  border: 1px solid rgba(0,195,255,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.03em;
  line-height: 1.0;
  margin-bottom: 1.25rem;
}
.hero-headline .accent-line {
  color: var(--red-bright);
  text-shadow: var(--glow-red);
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #b0b0b0;
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-status {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.hero-status::before {
  content: '●';
  color: var(--red);
  font-size: 0.6rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,195,255,0.18),
    0 30px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(0,195,255,0.12);
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,195,255,0.15), transparent);
  pointer-events: none;
}

.hero-float-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--glow-red);
}

/* ── Section wrapper ──────────────────────────────────── */
.section {
  padding: 90px 5%;
  position: relative;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 2px;
  margin: 1rem 0 2.5rem;
}

/* ── Services ─────────────────────────────────────────── */
#services {
  background: linear-gradient(180deg, var(--black) 0%, #0a0a0a 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  border-color: rgba(0,195,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,195,255,0.1), 0 4px 16px rgba(0,0,0,0.5);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212,43,43,0.15);
  border: 1px solid rgba(212,43,43,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── About ────────────────────────────────────────────── */
#about {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.about-text p {
  color: #b0b0b0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-text p:last-child { margin-bottom: 0; }

.about-note {
  background: rgba(212,43,43,0.07);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: #999;
  line-height: 1.6;
  margin-top: 1.5rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stat-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.stat-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--blue);
  letter-spacing: 0.04em;
  line-height: 1;
}
.stat-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── Inquiry Form ─────────────────────────────────────── */
#inquiry { background: var(--black); }

.form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.form-intro {
  color: #999;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

#inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field-full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bbb;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,195,255,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }

.form-submit-wrap {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.btn-submit {
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-red);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.btn-submit:hover {
  background: var(--red-bright);
  box-shadow: 0 0 36px rgba(255,58,58,0.65);
  transform: translateY(-2px);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Form success */
#form-success {
  display: none;
  background: rgba(0,195,255,0.07);
  border: 1px solid rgba(0,195,255,0.3);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  text-align: center;
}
#form-success.visible { display: block; }
#form-success .check { font-size: 2.5rem; margin-bottom: 0.75rem; }
#form-success h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
#form-success p { font-size: 0.9rem; color: #aaa; line-height: 1.7; }

/* ── Contact ──────────────────────────────────────────── */
#contact {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.25s;
}
.contact-card:hover { border-color: rgba(0,195,255,0.25); }

.contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0,195,255,0.08);
  border: 1px solid rgba(0,195,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-body h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-card-body a,
.contact-card-body p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.contact-card-body a:hover { color: var(--blue); }

/* ── Footer ───────────────────────────────────────────── */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 2.5rem 5%;
  text-align: center;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin: 0 auto 1rem;
  opacity: 0.85;
}

.footer-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.coming-soon-label {
  display: inline-block;
  background: rgba(212,43,43,0.15);
  border: 1px solid rgba(212,43,43,0.3);
  color: var(--red-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: #444;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.footer-bottom { font-size: 0.75rem; color: #333; }

/* ── Scroll-reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger  { display: flex; }

  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    gap: 2.5rem;
  }
  .hero-subheadline { margin-left: auto; margin-right: auto; }
  .hero-cta-group   { justify-content: center; }
  .hero-status      { justify-content: center; }
  .hero-visual      { order: -1; }
  .hero-image-wrap  { max-width: 480px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card   { flex: 1 1 200px; }
}

@media (max-width: 600px) {
  .section { padding: 60px 5%; }
  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  #inquiry-form  { grid-template-columns: 1fr; }
  .field-full    { grid-column: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats   { flex-direction: column; }
}
