/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --dark:    #1a1a1a;
  --card:    rgba(20, 20, 20, 0.88);
  --white:   #ffffff;
  --off:     #f5f5f5;
  --muted:   #aaaaaa;
  --accent:  #2a6496;
  --border:  rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
}
.logo {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?w=1600&auto=format&fit=crop')
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
}
.hero-content h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* ===== PANEL SECTIONS ===== */
.panel-section {
  padding: 6rem 2rem;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?w=1600&auto=format&fit=crop')
    center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dark-section {
  background-image:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?w=1600&auto=format&fit=crop');
}
.panel-section h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1.2rem;
}
.divider {
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 2.5rem;
}

/* ===== DARK CARD ===== */
.dark-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  max-width: 680px;
  width: 100%;
}
.dark-card ul {
  list-style: none;
  padding: 0;
}
.dark-card ul li {
  padding: 0.55rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.9);
}
.dark-card ul li:last-child { border-bottom: none; }
.dark-card ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--muted);
}
.note {
  color: var(--muted);
  font-size: 0.88em;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2.5rem;
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn:hover {
  background: #2c2c2c;
  border-color: rgba(255,255,255,0.5);
}

/* ===== FORM ===== */
.form-card { max-width: 680px; }
.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.3rem;
}
.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  color: var(--white);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(255,255,255,0.5);
}
.form-row input[type="file"] {
  padding: 0.5rem 0;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
}
.form-msg {
  padding: 0.7rem 1rem;
  border-radius: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form-msg.hidden  { display: none; }
.form-msg.info    { background: rgba(255,255,255,0.08); color: var(--white); }
.form-msg.success { background: rgba(40,167,69,0.25);  color: #7dde9a; border: 1px solid rgba(40,167,69,0.4); }
.form-msg.error   { background: rgba(220,53,69,0.25);  color: #f5a0a8; border: 1px solid rgba(220,53,69,0.4); }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
footer a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.5rem;
}
footer a:hover { color: var(--white); }

/* ===== COMPANY LINKS & BANKRUPT ===== */
.dark-card a {
  color: rgba(255,255,255,0.88);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.dark-card a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255,255,255,0.7);
}
.bankrupt {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(170,170,170,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .dark-card { padding: 1.8rem 1.4rem; }
}
