* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background: linear-gradient(135deg, #fbe7d8, #f9efe7);
  color: #1e1e1e;
}

/* Header */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo img {
  width: 36px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

/* Hero */
.hero {
  padding: 120px 20px;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 48px);
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #444;
}

.cta {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}

.primary {
  background: linear-gradient(135deg, #ffb703, #ff8c00);
  color: white;
}

.outline {
  border: 2px solid #ffb703;
  color: #ff8c00;
}

/* Story */
.story {
  padding: 100px 20px;
}

.story-container {
  max-width: 1100px;
  margin: auto;
}

.story-header {
  text-align: center;
  margin-bottom: 60px;
}

.story-header h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.story-lead {
  font-size: 18px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.story-card {
  background: white;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.story-card h3 {
  margin-bottom: 14px;
}

.story-card ul {
  list-style: none;
}

.story-card li {
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.story-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff8c00;
}

.story-audience {
  margin-top: 70px;
  text-align: center;
}

/* ===== AUDIENCE SECTION (FINAL – FIXED) ===== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 60px auto 0;
}

.audience-item {
  background: rgba(255,255,255,.98);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
}

.audience-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
}

.audience-item span {
  font-size: 22px;
  font-weight: 600;
  color: #1e1e1e;
}

.audience-item.last-item {
  grid-column: 1 / -1;
  max-width: 700px;
  justify-self: center;
}

/* Hover effect */
.audience-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,.18);
}


.story-closing {
  text-align: center;
  font-size: 20px;
  margin-top: 50px;
}

/* Video Poster */
.video-wrapper {
  max-width: 900px;
  margin: 60px auto;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
}

.video-poster {
  width: 100%;
  display: block;
}

/* Play Button */
.play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-button::before {
  content: "";
  width: 80px;
  height: 80px;
  background: rgba(0,0,0,.6);
  border-radius: 50%;
}

.play-button::after {
  content: "";
  position: absolute;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 24px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 30px;
  padding: 80px 20px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,.06);
}

/* Pricing */
.pricing {
  text-align: center;
  padding: 100px 20px;
}

.price-card {
  display: inline-block;
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.1);
}

.price {
  font-size: 44px;
  margin: 20px 0;
}

.price-card button {
  padding: 14px 32px;
  background: #ff8c00;
  border: none;
  color: white;
  border-radius: 30px;
  cursor: pointer;
}

/* Download */
.download {
  text-align: center;
  padding: 80px 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  color: #666;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.download a {
  display: inline-block;
  line-height: normal;
}


.slide-up {
  animation: slideUp 0.9s ease forwards;
}

.delay { animation-delay: .2s; }
.delay2 { animation-delay: .4s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* ===== MOBILE RESPONSIVE FIX ===== */

@media (max-width: 768px) {

  .audience-grid {
    grid-template-columns: 1fr;   /* stack cards */
    gap: 32px;
    padding: 0 10px;
  }

  .audience-item {
    max-width: 100%;
  }

  .audience-item img {
    height: 200px;                /* slightly smaller for mobile */
  }

  .audience-item.last-item {
    grid-column: auto;
    max-width: 100%;
  }

}

/* Extra small devices */
@media (max-width: 480px) {

  .audience-item img {
    height: 180px;
  }

  .audience-item span {
    font-size: 20px;
  }

}

/* ===== HAMBURGER MENU ===== */

.nav {
  display: flex;
  align-items: center;
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

  .top-bar {
    flex-direction: row;
    justify-content: space-between;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
  }

  .nav-links a {
    margin: 0;
    font-size: 16px;
  }

  .nav-links.active {
    display: flex;
  }
}

/* ===== FREE TRIAL MODAL ===== */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.modal-content button {
  padding: 12px 24px;
  background: #ff8c00;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.error {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

.hero {
  position: relative;
  z-index: 2;
}

/* ===== FIX: HERO CTA CLICK ISSUE ===== */

.hero,
.hero-inner,
.cta {
  position: relative;
  z-index: 10;
}

.cta button,
.cta a {
  pointer-events: auto;
}

