/* ============================
   GLOBAL RESET
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #000;
  color: #fff;
  line-height: 1.6;
  padding-top: 80px; /* Prevent header overlap */
}

/* ============================
   STICKY HEADER
============================ */
.sticky-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 0, 0, 0.35);
  z-index: 999;
  padding: 14px 0;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ff1a1a;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.nav-links a {
  margin-left: 24px;
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #ff1a1a;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.7);
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
}
/* Existing header + logo styles here */

/* Add hover pulse effect below */
.autoflow-header:hover .autoflow-logo {
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.75));
  transition: filter 0.25s ease-out;
}

.autoflow-header:active .autoflow-logo {
  filter: drop-shadow(0 0 22px rgba(255, 0, 0, 1));
}
/* ============================
   AUTOFLOW HEADER IMAGE
============================ */
.autoflow-header {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 40px 0;
  position: relative;
}

.autoflow-header img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

/* Subtle green glow behind the image */
.autoflow-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(0, 255, 100, 0.18) 0%,
    rgba(0, 255, 100, 0.08) 40%,
    rgba(0, 255, 100, 0) 80%
  );
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}
/* ============================
   HERO SECTION (STYLE A)
============================ */
.hero {
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 40%, #1a0000 100%);
  padding: 140px 20px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 0, 0, 0.4);
}

.hero-inner {
  max-width: 900px;
  margin: auto;
}

.hero-inner h1 {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #e60000;
  text-shadow: 0 0 25px #ff0000;
  margin-bottom: 20px;
}

.subtitle,
.hero-inner p {
  font-size: 1.3rem;
  color: #e6e6e6;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ============================
   EMAIL FORM
============================ */
.email-box {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.email-box input {
  padding: 14px 18px;
  width: 300px;
  border-radius: 6px;
  border: 1px solid rgba(255, 0, 0, 0.4);
  background: #111;
  color: white;
  font-size: 1rem;
}

.email-box input::placeholder {
  color: #888;
}

.email-box button {
  padding: 14px 22px;
  background: #ff1a1a;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.email-box button:hover {
  background: #ff3333;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}

/* Glow animation */
@keyframes redGlow {
  0% { box-shadow: 0 0 6px rgba(255, 0, 0, 0.4); }
  50% { box-shadow: 0 0 14px rgba(255, 0, 0, 0.9); }
  100% { box-shadow: 0 0 6px rgba(255, 0, 0, 0.4); }
}

.glow-red {
  animation: redGlow 2.8s ease-in-out infinite;
  border-radius: 6px;
}

/* ============================
   SECTIONS
============================ */
.section {
  padding: 100px 20px;
  text-align: center;
}

.section.dark {
  background: #0a0a0a;
}

.section.light {
  background: #111;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.section-title.red {
  color: #ff1a1a;
}

.section-text {
  max-width: 800px;
  margin: auto;
  color: #ccc;
  font-size: 1.2rem;
}

/* ============================
   FEATURES GRID
============================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-card {
  background: #111;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(255, 0, 0, 0.3);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.5);
}

/* ============================
   CTA SECTION
============================ */
.cta {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(180deg, #1a0000, #000);
  border-top: 2px solid rgba(255, 0, 0, 0.4);
}

.cta h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 600px) {
  .hero-inner h1 {
    font-size: 54px;
  }

  .email-box {
    flex-direction: column;
  }

  .email-box input,
  .email-box button {
    width: 100%;
  }
}
.logo img {
  height: 42px;      /* adjust if needed */
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.6)); /* matches your red glow aesthetic */
}
/* FORCE BIG HEADER LOGO */
.sticky-header .logo img {
  width: 280px;     /* Increase this number to make it bigger */
  height: auto;
}
/* Center logo inside header */
.sticky-header .header-inner {
  display: flex;
  justify-content: center;   /* centers everything */
  align-items: center;
  gap: 40px;                 /* spacing between logo + nav */
}

/* Make nav sit to the right of the centered logo */
.nav-links {
  margin-left: auto;
}
.autoflow-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px 0;
}

.autoflow-header img {
  max-width: 100%;
  height: auto;
  display: block;
}

.autoflow-header {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.autoflow-header img {
  width: 100%;
  max-width: 900px; /* adjust if you want it bigger or smaller */
  height: auto;
  display: block;
}
.autoflow-header {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  position: relative;
}

.autoflow-header img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

/* Subtle green glow behind the image */
.autoflow-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(0, 255, 100, 0.18) 0%,
    rgba(0, 255, 100, 0.08) 40%,
    rgba(0, 255, 100, 0) 80%
  );
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}
