:root {
  --primary: #ff3b30;
  --primary-2: #e31e24;
  --dark: #3f0101;
  --secondary: #3f0101;
  --light: #f5f5f5;
  --primary-glow: rgba(227, 30, 36, 0.3);
  --dark-bg: #0a0a0a; /* True Black for blending */
  --card-bg: #151515; /* Slightly lighter black for cards */
  --text-gray: #b0b0b0;
  --white: #f5f5f5;
  --gold: #d4af37; /* Keeping your gold accent for titles */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Outfit", sans-serif;
  background: #3f0101;
  color: var(--dark);
  line-height: 1.5;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: #fff;
}

.features {
  padding: 100px 20px;
  background-color: var(--dark);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background-color: var(--light);
  border: 1px solid rgba(227, 30, 36, 0.2);
  color: #000;
  border-radius: 16px;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-2);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-2);
  box-shadow: 10px 10px var(--primary-2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

.feature-card p {
  font-size: 1rem;
  color: var(--dark-bg);
  line-height: 1.6;
  font-weight: 400;
}

.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  color: var(--light);
  padding: 60px 0 100px;
  text-align: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.logo {
  max-width: 200px;
  height: auto;
  aspect-ratio: 1/1;
}
h1 {
  font-size: 3rem;
  margin: 15px 0;
  line-height: 1.2;
}
.accent {
  color: var(--primary);
}

/* The Form Box - Central Focus */
.hero-box {
  max-width: 600px;
  margin: 0 auto;
}
.lead-form {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.lead-form img {
  width: 100%;
  padding: 15px;
}
.lead-form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
}

/* Directional Cue Button */
.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.btn-submit:hover {
  background: #dc143c;
  filter: brightness(1.1);
}

.security-text {
  color: #64748b;
  font-size: 0.8rem;
  margin-top: 10px;
}

/* Social Proof Bar */
.proof-bar {
  background: #f8fafc;
  padding: 30px 0;
  border-bottom: 1px solid #e2e8f0;
}
.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

/* Product in Action Section */
.process {
  padding: 80px 0;
  text-align: center;
}
.video-placeholder {
  background: #475569;
  margin-top: 40px;
  aspect-ratio: 16/9;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
.play-icon {
  font-size: 50px;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Testimonial Card */
.testimonial-section {
  padding: 60px 0;
  background: #f1f5f9;
}
.testimonial-card {
  font-style: italic;
  font-size: 1.4rem;
  border-left: 5px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 20px;
}
cite {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  font-style: normal;
  font-size: 1rem;
  color: #64748b;
}

.minimal-footer {
  padding: 30px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  color: #fff;
  text-decoration: none;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  .hero {
    padding: 40px 0;
  }
}

.network-footer {
  margin-top: 50px;
}
.net-header {
  text-align: center;
  margin-bottom: 40px;
}
.net-header h3 {
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.net-header span {
  color: #ff0000;
  text-shadow: 0 0 10px #ff0000;
}

.net-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.net-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
  border-left: 2px solid #ff0000;
  padding-left: 10px;
}
.net-list li {
  padding: 0;
  margin: 0 0 8px 0;
  list-style: none;
}
.net-list li::before {
  content: none;
}
.net-list a {
  color: #fff;
  font-size: 13px;
}
.net-list a:hover {
  color: #fff;
  padding-left: 5px;
}

.brand-btn {
  display: block;
  background: var(--light);
  padding: 10px;
  margin-bottom: 8px;
  text-align: center;
  border-radius: 5px;
  border: 3px solid var(--primary-2);
}
.brand-btn span {
  display: block;
  font-weight: 800;
  color: var(--primary);
}
.brand-btn small {
  display: block;
  font-size: 10px;
  color: #000;
}
.brand-btn:hover {
    border-color: #d4af37;
}
