* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    overflow-x: hidden;

}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  
}
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 {
  font-size: 3.5rem;
  font-weight: 800;
}
h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
h3 {
  font-size: 1.75rem;
  font-weight: 600;
}
h4 {
  font-size: 1.5rem;
  font-weight: 600;
}
p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
:root {
  --primary-orange: #ff6b35;
  --dark-bg: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #3a3a3a;
  --white: #ffffff;
  --text-muted: #cccccc;
}
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-orange);
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  min-width: 48px;
  text-align: center;
  line-height: 1.2;
}
.btn:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #ff6b354d;
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}
.btn-secondary:hover {
  background-color: var(--primary-orange);
  color: var(--white);
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background-color: var(--dark-gray);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--medium-gray);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px #0000004d;
  border-color: var(--primary-orange);
}
.section {
  padding: 4rem 0;
}
.section-dark {
  background-color: var(--dark-bg);
}
.section-gray {
  background-color: var(--dark-gray);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0acc, #ff6b351a);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
}
.form-input {
  width: 100%;
  padding: 1rem;
  background-color: var(--dark-gray);
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  min-height: 48px;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary-orange);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-orange);
  margin-top: 2px;
}
.checkbox-label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-muted);
}
.checkbox-label a {
  color: var(--primary-orange);
  text-decoration: none;
}
.checkbox-label a:hover {
  text-decoration: underline;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}
@media (max-width: 1440px) {
  .container {
    padding: 0 1.5rem;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 834px) {
  .container {
    padding: 0 1rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 3rem 0;
  }
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 320px) {
  .container {
    padding: 0 0.75rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    min-height: 48px;
  }
  .form-input {
    font-size: 16px;
  }
}
.text-center {
  text-align: center;
}
.text-orange {
  color: var(--primary-orange);
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.hidden {
  display: none;
}
.visible {
  display: block;
}
