/* HERO (old + new) */
#hero {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 12px 32px 40px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}


/* Make the hero subtitle bigger + more professional */
.hero-sub {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.3;
  margin-top: 12px;
}

/* Buttons closer to subtitle now that hero paragraph is gone */
#hero .btn-row {
  margin-top: 21px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: -2px;
}



/* old: .hero-text | new: .hero-left */
.hero-text,
.hero-left {
  max-width: 320px;
  margin-top: 150px;
}


/* Nudge the hero headline slightly left */
.hero-title {
  margin-left: -6px; 
}


/* old: .hero-text h2 | new: .hero-title */
.hero-text h2,
.hero-title {
  font-size: 54px;
  font-weight: 800;
}

/* old: .hero-image img | new: .hero-right img / .hero-img */
.hero-image img,
.hero-right img,
.hero-img {
  width: 520px;
  border-radius: 12px;
  opacity: 0.85;
}

/* old: .hero-description | new: .hero-text (body line) */
.hero-description,
.hero-text {
  width: 420px;
}

/* AUDIENCE (old + new) */
.audience,
.aud {
  background-color: rgb(248, 249, 251);
  padding: 80px 0;
}

/* Audience layout: 2 columns on desktop */
.aud .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

/* ---------- Pricing Buttons (NOW use gradient sticker style) ---------- */

.price .btn.btn-primary,
.price .btn.btn-secondary {
  position: relative;
  overflow: hidden;

  background: linear-gradient(90deg, rgb(59, 130, 246), rgb(124, 58, 237));
  
  color: #fff;

  border: none;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  transition: transform 140ms ease, box-shadow 140ms ease;
}

/* Soft highlight like the sticker */
.price .btn.btn-primary::after,
.price .btn.btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), rgba(255,255,255,0) 55%);
  pointer-events: none;
}

/* Hover lift */
.price .btn.btn-primary:hover,
.price .btn.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}




/* CONTACT */
.contact {
  padding: 40px 32px;
}

/* ABOUT (old + new) */
.about {
  padding: 80px 0;
}

.about-inner,
.about .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-text,
.about .text {
  max-width: 700px;
  color: rgb(80, 80, 80);
  line-height: 1.6;
  margin: 0;
}

/* CTA (old + new) */
.cta-band,
.cta {
  background-color: rgb(12, 14, 18);
  padding: 70px 0;
}

.cta-band .cta-title,
.cta-band .cta-subtitle,
.cta .title,
.cta .sub {
  color: rgb(230, 230, 230);
}

/* HOW IT WORKS (old + new) */
.how-it-works .center,
.how .center {
  text-align: left;
}

.how-grid {
  justify-content: start;
}

/* OLD list version support */
.how-steps li {
  border-left: 3px solid rgb(230, 230, 230);
  padding: 10px 0 10px 16px;
  margin: 10px 0;
  line-height: 1.5;
}

.how-steps {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  counter-reset: step;
}

.how-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
}

.how-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 700;
  color: rgb(120, 120, 120);
}

/* NEW div-step version support */
.steps {
  counter-reset: step;
}

.steps .step {
  counter-increment: step;
  position: relative;

  border-left: 3px solid rgb(230, 230, 230);
  padding: 10px 0 10px 44px;
  margin: 10px 0;
  line-height: 1.5;
}

.steps .step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 700;
  color: rgb(120, 120, 120);
}

/* =========================
   PRICING STICKERS (TOP-RIGHT)
   ========================= */


/* Only affect pricing cards inside the pricing section */
.price .grid > .card {
  position: relative;
}

/* Extra top room only on cards that have a top-right sticker */
.price .grid > .card.has-sticker {
  padding-top: 68px;
}

/* Smaller green badge-style stickers (message look, not button look) */
.price .sticker,
.price .sticker-soon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;

  /* smaller */
  padding: 6px 10px;
  

  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.1px;
  line-height: 1.2;

  /* stop it from stretching across the whole card */
  max-width: 260px;
  white-space: normal;     /* allows wrapping */
  word-break: break-word;  /* wraps long text nicely */
  text-align: left;

  /* green badge look */
  background: linear-gradient(90deg, rgb(16, 185, 129), rgb(34, 197, 94));
  color: white;

  box-shadow:
    0 10px 20px rgba(0,0,0,0.10),
    0 0 0 1px rgba(16, 185, 129, 0.35);
}

/* Slightly different green for the "coming soon" badge */
.price .sticker-soon {
  background: linear-gradient(90deg, rgb(34, 197, 94), rgb(22, 163, 74));
}



#hero .btn-row .btn.btn-neon,
.cta .btn-row .btn.btn-neon {
  position: relative;
  display: inline-block;

  /* Keep your button sizing/typography from existing .btn styles,
     but override the look */
  padding: 12px 20px;
  border-radius: 14px;

  border: 2px solid transparent;

  /* Dark fill + gradient border */
  background:
    linear-gradient(rgb(10, 12, 20), rgb(10, 12, 20)) padding-box,
    linear-gradient(90deg, rgb(168, 85, 247), rgb(34, 211, 238)) border-box;

  color: white;
  text-decoration: none;

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 140ms ease, box-shadow 140ms ease;
}


.price .btn.btn-primary,
.price .btn.btn-secondary {
  padding: 15px 25px;   /* bigger button */
  font-size: 16px;      /* bigger text */
  border-radius: 16px;  /* optional: slightly rounder */
}


/* Glow for contact and view pricing*/
#hero .btn-row .btn.btn-neon::after,
.cta .btn-row .btn.btn-neon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;

  background: linear-gradient(90deg, rgb(168, 85, 247), rgb(34, 211, 238));
  filter: blur(14px);
  opacity: 0.35;

  z-index: -1;
  transition: opacity 140ms ease;
}

#hero .btn-row .btn.btn-neon:hover,
.cta .btn-row .btn.btn-neon:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

#hero .btn-row .btn.btn-neon:hover::after,
.cta .btn-row .btn.btn-neon:hover::after {
  opacity: 0.55;
}

/* Keyboard focus (accessibility) */
#hero .btn-row .btn.btn-neon:focus-visible,
.cta .btn-row .btn.btn-neon:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.45);
  outline-offset: 3px;
}


/* CTA-only: lighter neon buttons so they stand out on dark background */
.cta .btn-row .btn.btn-neon {
  background:
    linear-gradient(rgb(44, 58, 88), rgb(28, 38, 62)) padding-box,
    linear-gradient(90deg, rgb(168, 85, 247), rgb(34, 211, 238)) border-box !important;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

/* Glow a bit stronger on CTA */
.cta .btn-row .btn.btn-neon::after {
  opacity: 0.62;
}

/* Hover: brighter fill + more glow */
.cta .btn-row .btn.btn-neon:hover {
  background:
    linear-gradient(rgb(60, 78, 112), rgb(36, 50, 76)) padding-box,
    linear-gradient(90deg, rgb(168, 85, 247), rgb(34, 211, 238)) border-box !important;

  transform: translateY(-1px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.40),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.cta .btn-row .btn.btn-neon:hover::after {
  opacity: 0.82;
}


/* Background image behind HEADER + HERO + ABOUT */
.top-bg {
  position: relative;
}

.top-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../images/IMG_0350.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.18; /* lower = more clear text */
  z-index: 0;
}

/* Keep the text/content above the background */
.top-bg > div {
  position: relative;
  z-index: 1;
}


