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

:root {
  --red: #CC0000;
  --red-dark: #A50000;
  --gold: #F5A800;
  --dark: #111111;
  --gray: #444444;
  --light: #F8F8F8;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #eee;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--red);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon span { color: white; font-weight: 900; font-size: 16px; }
.nav-logo-text { font-weight: 800; font-size: 17px; color: var(--dark); line-height: 1.1; }
.nav-logo-text small { font-weight: 400; font-size: 11px; color: var(--gray); display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red); color: white; padding: 10px 22px;
  border-radius: 6px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dark); }

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 140px 60px 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(204,0,0,0.15) 0%, transparent 70%);
}
.page-hero > * { position: relative; }
.page-hero h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 900; color: white; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* SECTION COMMONS */
section { padding: 80px 60px; }
.inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: rgba(204,0,0,0.08);
  color: var(--red); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--gray); line-height: 1.7; max-width: 600px; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--red); color: white; padding: 14px 32px;
  border-radius: 8px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(204,0,0,0.3);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--dark); padding: 14px 32px;
  border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; border: 1.5px solid #ddd; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-white {
  display: inline-block;
  background: white; color: var(--dark); padding: 14px 32px;
  border-radius: 8px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
}
.btn-white:hover { background: #f0f0f0; }

/* FOOTER */
footer {
  background: #0a0a0a; padding: 28px 60px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
footer p { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* FORM */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e5e5e5;
  border-radius: 8px; font-size: 14px; font-family: inherit;
  transition: border 0.2s; outline: none; background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--red); color: white; border: none;
  padding: 14px; border-radius: 8px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.2s; font-family: inherit;
}
.form-submit:hover { background: var(--red-dark); }

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #eee;
    flex-direction: column;
    padding: 8px 0 16px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid #f5f5f5; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 15px; }
  .nav-cta { display: none; }
  section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  footer { padding: 24px; flex-direction: column; align-items: flex-start; }
}
