* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0b;
  --card: #171717;
  --soft: #222222;
  --white: #ffffff;
  --text: #e8e8e8;
  --muted: #b7b7b7;
  --red: #e11d1d;
  --red-dark: #b90f0f;
  --gray: #a8a8a8;
  --border: rgba(255, 255, 255, 0.08);
  --shadow-red: 0 0 25px rgba(225, 29, 29, 0.25);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #050505, #101010);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.btn-nav {
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white) !important;
  border-radius: 999px;
  box-shadow: var(--shadow-red);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 4% 18px;
  background: #0c0c0c;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* HERO */
.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(225, 29, 29, 0.3);
  border-radius: 999px;
  color: #ffd2d2;
  background: rgba(225, 29, 29, 0.08);
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-text p {
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.hero-card {
  display: flex;
  justify-content: center;
}

.logo-frame {
  width: 390px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  background: radial-gradient(circle at center, #1e1e1e, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  padding: 24px;
}

.logo-frame img {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
}

/* SECTIONS */
.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-title p {
  color: var(--muted);
}

.features {
  padding: 40px 0 70px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card,
.team-card,
.price-card,
.showcase-box,
.form-card {
  background: linear-gradient(180deg, #171717, #111111);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.info-card {
  padding: 26px;
}

.info-card h3,
.info-card h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.info-card p {
  color: var(--muted);
}

.showcase {
  padding: 10px 0 80px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.showcase-box {
  padding: 30px;
}

.showcase-box h2 {
  margin-bottom: 12px;
}

.showcase-box p {
  color: var(--muted);
}

.showcase-box.accent {
  border-color: rgba(225, 29, 29, 0.25);
  box-shadow: var(--shadow-red);
}

/* PAGE HERO */
.page-hero {
  padding: 70px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--muted);
}

.small-hero {
  padding-bottom: 20px;
}

/* ABOUT */
.about-section,
.team-section,
.pricing-section {
  padding: 30px 0 70px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.team-card {
  text-align: center;
  padding: 28px;
}

.avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--red), #6f0000);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  padding: 30px 24px;
  text-align: center;
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.price {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.price-card ul {
  list-style: none;
  margin: 22px 0;
}

.price-card ul li {
  margin: 10px 0;
  color: var(--muted);
}

.featured {
  border: 1px solid rgba(225, 29, 29, 0.35);
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--red);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* FORMS */
.form-page {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.form-card {
  width: 100%;
  max-width: 470px;
  padding: 34px 28px;
  text-align: center;
}

.form-logo-wrap {
  margin-bottom: 18px;
}

.form-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  box-shadow: var(--shadow-red);
}

.form-card h1 {
  margin-bottom: 8px;
}

.form-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.form-group {
  text-align: left;
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0f0f0f;
  color: var(--white);
  outline: none;
}

.form-group input:focus {
  border-color: rgba(225, 29, 29, 0.7);
  box-shadow: 0 0 0 3px rgba(225, 29, 29, 0.12);
}

.full-btn {
  width: 100%;
}

.form-footer {
  margin-top: 18px;
  color: var(--muted);
}

.form-footer a {
  color: #ffb6b6;
  font-weight: 700;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  background: #090909;
}

.footer-wrap {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 920px) {
  .hero-grid,
  .showcase-grid,
  .pricing-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}