:root {
  --bg-color: #050505;
  --bg-gradient: linear-gradient(135deg, #0a0e17 0%, #001021 100%);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent-color: #00E676;
  /* Vibrant Green for Money/Action */
  --accent-hover: #00C853;
  --premium-gold: #FFD700;
  --danger-red: #FF3D00;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --section-padding: 80px 20px;
  --container-width: 1200px;
  --font-main: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--premium-gold);
  color: var(--premium-gold);
}

.btn-outline:hover {
  background: var(--premium-gold);
  color: #000;
}

/* Typography Utilities */
.text-gold {
  color: var(--premium-gold);
}

.text-green {
  color: var(--accent-color);
}

.text-red {
  color: var(--danger-red);
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* Section Specifics */
section {
  padding: var(--section-padding);
}

/* Header */
header {
  padding: 20px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  /* Space for header */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  background: linear-gradient(to right, #fff, #bbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Agitation Section */
.agitation {
  background: #000;
  position: relative;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pain-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 12px;
  transition: var(--transition);
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.pain-card h3 {
  color: var(--danger-red);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Solution Section */
.solution {
  background: #0a0e17;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--premium-gold);
}

/* Offer Section */
.offer {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0));
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.offer-box {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--premium-gold);
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  position: relative;
}

.offer-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--premium-gold);
  color: #000;
  padding: 10px 20px;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
}

.offer-list {
  text-align: left;
  max-width: 600px;
  margin: 30px auto;
}

.offer-list li {
  margin-bottom: 15px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.offer-list li span {
  margin-right: 10px;
  color: var(--accent-color);
}

/* Trust Section */
.trust {
  text-align: center;
}

.trust-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-item {
  max-width: 200px;
}

.trust-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}


/* Form Section */
.form-section {
  background: #020202;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
}

.micro-copy {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 5px;
  display: block;
}

/* Footer */
footer {
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-badges {
    justify-content: center;
  }

  .trust-icons {
    flex-direction: column;
    align-items: center;
  }

  .row {
    flex-direction: column;
    text-align: center;
  }

  .col-text {
    padding-right: 0 !important;
    margin-bottom: 40px;
  }
}

/* New Campaign Styles */
.hero-badges {
  display: flex;
  gap: 15px;
  padding: 0;
  margin-top: 20px;
}

.hero-badges li {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--premium-gold);
}

.section-padding {
  padding: 80px 20px;
}

.upload-area {
  border: 2px dashed var(--text-secondary);
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.upload-area:hover {
  border-color: var(--accent-color);
  background: rgba(0, 230, 118, 0.05);
}

/* Trust Section Overhaul */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.shield-img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(0, 230, 118, 0.2));
  /* Blend mode helps remove slight black edges if any, but clean crop is better */
  mix-blend-mode: screen;
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  transform: translateX(10px);
}

.trust-icon {
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.3);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--premium-gold);
}

.trust-text h3 {
  margin-bottom: 5px;
  color: var(--premium-gold);
  font-size: 1.2rem;
}

.trust-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .shield-img {
    max-width: 250px;
    margin-bottom: 30px;
  }

  .trust-card:hover {
    transform: translateY(-5px);
    /* On mobile move up, not right */
  }
}

/* Improved Hero Features */
.hero-features {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  align-items: center;
}

.h-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 230, 118, 0.1);
  /* Subtle green */
  border-radius: 6px;
  color: var(--accent-color);
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.icon-box svg {
  width: 16px;
  height: 16px;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  color: var(--premium-gold);
  stroke-width: 1.5px;
}

/* Sticky Header & Header Button */
header {
  position: fixed;
  /* Fix header to top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Ensure it stays above everything */
  background: rgba(5, 5, 5, 0.9);
  /* Add background so content doesn't bleed through */
  backdrop-filter: blur(10px);
  /* Glass effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}

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

.hero {
  padding-top: 120px;
  /* Increase padding to account for fixed header */
}

.header-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.2rem;
  }

  .header-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

.logo-img {
  height: 90px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-img {
    height: 60px;
  }
}
/* Fix for Select Dropdown visibility on white backgrounds */
select.form-control option {
    color: #000;
    background-color: #fff;
}
