:root {
  --black: #000000;
  --dark: #111111;
  --dark-soft: #1a1a1a;
  --text: #f3f3f3;
  --muted: #b8b8b8;
  --accent: #ff1e3c;
  --accent-grad: linear-gradient(135deg, #ff1e3c 0%, #58000f 100%);
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: var(--dark);
}

.title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 900;
}

.subtitle {
  color: var(--muted);
  max-width: 680px;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-grad);
  box-shadow: 0 12px 30px rgba(255, 30, 60, 0.32);
}

.btn-outline {
  border-color: #5d5d5d;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.logo span {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #474747;
  color: var(--text);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a {
  color: #dfdfdf;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
}

.hero {
  min-height: 84vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(85deg, rgba(0, 0, 0, 0.86) 20%, rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
}

.hero p {
  color: #d8d8d8;
  margin: 1.2rem 0 2rem;
}

.grid {
  display: grid;
  gap: 1.3rem;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 30, 60, 0.52);
}

.card h3 {
  margin: 0.85rem 0 0.45rem;
}

.card p {
  color: var(--muted);
}

.card > img:first-child {
  height: 230px;
  border-radius: 10px;
  margin-bottom: 0.65rem;
}

.feature-list {
  list-style: none;
  margin-top: 1rem;
}

.feature-list li {
  padding: 0.35rem 0;
  color: #e9e9e9;
}

.gallery img {
  border-radius: var(--radius);
  min-height: 220px;
}

.price-card.highlight {
  border-color: var(--accent);
  transform: scale(1.03);
}

.price-tag {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0.4rem 0 0.8rem;
}

.testimonial {
  font-style: italic;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  color: #fff;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 1rem 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 180px;
  padding-bottom: 1rem;
}

.cta-band {
  background: var(--accent-grad);
  text-align: center;
  border-radius: var(--radius);
  padding: 2.2rem;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

input,
textarea,
select {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #333;
  color: #fff;
  border-radius: 10px;
  padding: 0.82rem 0.9rem;
}

input:focus,
textarea:focus {
  outline: 1px solid rgba(255, 30, 60, 0.65);
}

.error {
  color: #ff7182;
  font-size: 0.86rem;
  min-height: 1.1rem;
}

.success {
  color: #7aff8c;
  font-size: 0.95rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.2rem;
}

th,
td {
  border: 1px solid #2d2d2d;
  padding: 0.8rem;
  text-align: left;
}

th {
  background: #151515;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.socials a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  background: #191919;
  border-radius: 50%;
  border: 1px solid #323232;
}

.policy-content h3 {
  margin-top: 1.4rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  margin-top: 0.65rem;
}

.site-footer {
  background: #060606;
  border-top: 1px solid #1f1f1f;
  padding: 2rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: #c7c7c7;
}

.footer-links a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #060606;
    display: none;
    padding: 1rem 4%;
    border-bottom: 1px solid #1e1e1e;
  }

  .nav-menu.open {
    display: grid;
  }

  .menu-toggle {
    display: inline-block;
  }

  .desktop-cta {
    display: none;
  }
}

@media (max-width: 700px) {
  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
  }

  .section {
    padding: 4.2rem 0;
  }
}
