@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;700&display=swap');

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

body {
  background: rgb(242, 242, 242);
  color: #f5f0eb;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

#intro {
  position: fixed;
  inset: 0;
  background: #0d0d0d;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  animation: introDrop 0.7s cubic-bezier(.77, 0, .18, 1) 2.5s forwards;
}

.intro-logo-wrap {
  margin-bottom: 0.5rem;
}

.intro-logo {
  width: 90px;
  height: 90px;
  border: 3px solid #cc0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #f5f0eb;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.1s forwards;
}

#intro h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  color: #f5f0eb;
  letter-spacing: 0.05em;
  overflow: hidden;
}

#intro h1 span {
  display: inline-block;
  animation: slideUp 0.8s cubic-bezier(.77, 0, .18, 1) 0.2s both;
}

#intro .sub {
  font-size: clamp(0.7rem, 1.6vw, 0.95rem);
  letter-spacing: 0.35em;
  color: #888;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.6s ease 1s forwards;
}

#intro .bar {
  width: 0;
  height: 2px;
  background: #cc0000;
  margin-top: 1rem;
  animation: barGrow 1.2s ease 0.8s forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(110%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes barGrow {
  to {
    width: 180px;
  }
}

@keyframes introDrop {
  to {
    transform: translateY(-100%);
  }
}

#main {
  opacity: 0;
  animation: revealMain 0.8s ease 3.2s forwards;
}

@keyframes revealMain {
  to {
    opacity: 1;
  }
}

.navbar {
  background: #0a0a0a;
  padding: 10px 0;
  border-bottom: 3px solid #cc0000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-circle {
  width: 62px;
  height: 62px;
  border: 3px solid #cc0000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  font-weight: 900;
  background: rgba(204, 0, 0, 0.1);
  flex-shrink: 0;
}

.logo-text h2 {
  color: white;
  margin: 0;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 900;
  letter-spacing: 2px;
}

.logo-text span {
  color: #cc0000;
}

.logo-text p {
  color: #aaa;
  margin: 0;
  letter-spacing: 6px;
  font-size: 11px;
  font-weight: 600;
}

.desktop-menu {
  display: block;
  margin-left: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
  flex-wrap: nowrap;
}

.nav-link {
  color: #ddd;
  text-decoration: none;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border-radius: 4px;
  white-space: nowrap;
}

.nav-link:hover {
  color: white;
  background: rgba(204, 0, 0, 0.2);
}

.nav-link.active {
  color: white;
  background: #cc0000;
}

.mobile-dropdown {
  display: none;
  margin-left: auto;
}

.menu-btn {
  background: #cc0000;
  color: white;
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  transition: background 0.2s;
}

.menu-btn:hover {
  background: #aa0000;
}

.custom-menu {
  background: #111;
  border: 1px solid #222;
  border-top: 2px solid #cc0000;
  width: 230px;
  margin-top: 12px;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.custom-menu .dropdown-item {
  color: #ccc;
  padding: 13px 22px;
  font-size: 14px;
  border-bottom: 1px solid #1a1a1a;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
}

.custom-menu .dropdown-item:last-child {
  border-bottom: none;
}

.custom-menu .dropdown-item:hover {
  background: #cc0000;
  color: white;
}

@media (max-width: 1100px) {
  .desktop-menu {
    display: none;
  }

  .mobile-dropdown {
    display: block;
  }
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #0d0d0d;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 4rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-left .tag {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #cc0000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-left .tag::before {
  content: '';
  width: 30px;
  height: 2px;
  background: #cc0000;
  display: inline-block;
}

.hero-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  color: #f5f0eb;
}

.hero-left h2 em {
  font-style: normal;
  color: #cc0000;
}

.hero-left>p {
  color: #ffffff !important;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}

.badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.badge-custom {
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #f5f0eb;
  padding: 0.35rem 0.85rem;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #cc0000;
  line-height: 1;
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 0.7rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #2a2a2a;
}

.hero-right {
  background: #111111;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 4rem 4rem 6rem;
  position: relative;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(204, 0, 0, 0.08), transparent 55%);
  pointer-events: none;
}

.form-wrap {
  width: 100%;
  max-width: 440px;
}

.form-brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.form-logo {
  width: 46px;
  height: 46px;
  border: 2px solid #cc0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #f5f0eb;
  flex-shrink: 0;
}

.form-wrap h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.2rem;
  color: #f5f0eb;
}

.form-wrap .subtitle {
  font-size: 0.82rem;
  color: #fffefe;
  margin: 0;
}

.field-group {
  margin-bottom: 1.1rem;
}

.field-group>label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.label-hint {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
  color: #ffffff;
}

.field-group input[type="text"],
.field-group input[type="email"],
.field-group select {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #ffffff;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.field-group input:focus,
.field-group select:focus {
  border-color: #cc0000;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.field-group select option {
  background: #1a1a1a;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #bbb;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  transition: border-color 0.2s, color 0.2s;
  font-weight: 400;
}

.check-item:hover {
  border-color: #cc0000;
  color: #f5f0eb;
}

.check-item input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #cc0000;
  flex-shrink: 0;
}

.consent-group .consent {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.5;
  border: none;
  background: transparent;
  padding: 0;
}

.consent-group .consent:hover {
  border: none;
  color: #aaa;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  background: #cc0000;
  color: #fff;
  border: none;
  padding: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.btn-submit:hover {
  background: #a80000;
  transform: translateX(3px);
}

.divider-dark-to-light {
  background: #f2f2f2;
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
  margin-top: -1px;
}

.divider-light-to-dark {
  height: 80px;
  background: #0d0d0d;
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
  margin-top: -1px;
}

.features {
  background: #f2f2f2;
  padding: 5rem 0 3rem;
}

.features h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #0d0d0d;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.features .section-eyebrow {
  display: block;
  width: 40px;
  height: 3px;
  background: #cc0000;
  margin: 0 auto 2.5rem;
}

.feature-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  height: 100%;
  border-top: 3px solid #cc0000;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55px;
  height: 55px;
  background: rgba(204, 0, 0, 0.05);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: #0d0d0d;
}

.feature-card p {
  font-size: 0.85rem;
  color: #0d0c0c;
  line-height: 1.6;
}

.categories {
  background: #0d0d0d;
  padding: 5rem 0;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #cc0000;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #f5f0eb;
}

.section-eyebrow-dark {
  display: block;
  width: 40px;
  height: 3px;
  background: #cc0000;
  margin: 0 auto 3rem;
}

.category-card {
  background: #111111;
  border: 1px solid #2a2a2a;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s, border-color 0.3s;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: #cc0000;
}

.category-img {
  height: 150px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.category-body {
  padding: 1.5rem;
}

.category-body h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  color: #f5f0eb;
}

.category-body p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.category-tag {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cc0000;
  border: 1px solid rgba(204, 0, 0, 0.35);
  display: inline-block;
  padding: 0.22rem 0.65rem;
}

footer {
  background: #0a0a0a;
  border-top: 3px solid #cc0000;
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-circle {
  width: 62px;
  height: 62px;
  border: 3px solid #cc0000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 900;
  color: white;
  background: rgba(204, 0, 0, 0.08);
}

.text-secondary {
  color: #ffffff !important;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: transform 0.25s;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  color: white;
}

.facebook {
  background: #1877f2;
  box-shadow: 0 4px 18px rgba(24, 119, 242, 0.4);
}

.instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  box-shadow: 0 4px 18px rgba(238, 42, 123, 0.4);
}

.twitter {
  background: #1a1a1a;
  box-shadow: 0 4px 18px rgba(150, 150, 150, 0.25);
}

.youtube {
  background: #cc0000;
  box-shadow: 0 4px 18px rgba(204, 0, 0, 0.45);
}

.tiktok {
  background: #1a1a1a;
  box-shadow: 0 4px 18px rgba(255, 0, 80, 0.3);
}

.custom-select-dropdown {
  position: relative;
  width: 100%;
}

.custom-select-toggle {
  width: 100%;
  text-align: left;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #ffffff;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.custom-select-toggle:hover,
.custom-select-toggle:focus {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #cc0000;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.custom-select-toggle::after {
  display: none;
}

.custom-select-toggle .chevron {
  font-size: 0.75rem;
  color: #cc0000;
  transition: transform 0.2s;
}

.custom-select-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.custom-select-menu {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-top: 2px solid #cc0000;
  padding: 0;
  margin-top: 4px;
  max-height: 260px;
  overflow-y: auto;
}

.custom-select-menu .dropdown-item {
  color: #ccc;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  white-space: normal;
  border-bottom: 1px solid #2a2a2a;
}

.custom-select-menu .dropdown-item:last-child {
  border-bottom: none;
}

.custom-select-menu .dropdown-item:hover,
.custom-select-menu .dropdown-item.active {
  background: #cc0000;
  color: #fff;
}

#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #cc0000;
  color: #fff;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    clip-path: none;
    padding: 3rem 2rem;
  }

  .hero-left {
    padding: 9rem 2rem 2rem;
  }

  .form-wrap {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .row-2 {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .divider-dark-to-light,
  .divider-light-to-dark,
  .clip-to-footer {
    height: 50px;
  }

  .stat-row {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .menu-btn {
    padding: 8px 18px;
    font-size: 11px;
  }

  .menu-btn i {
    font-size: 14px;
  }
}