@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root {
  --main-bg: #ebf1f4; /* The light blue-grey background */
  --blue-accent: #2d68ff;
  --text-dark: #1a1a1a;
  --text-grey: #667085;
}

.hero-marketing {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--main-bg);
  padding: 80px 5% 0 5%;
  color: var(--text-dark);
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* TOP SECTION */
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-align: left; /* Heading Left Aligned */
  flex: 1.5;
}

.hero-cta-box {
  flex: 1;
  max-width: 400px;
  padding-top: 15px;
}

.hero-description {
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1rem;
}

.get-started-btn {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 6px 6px 6px 22px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.arrow-bg {
  background: var(--blue-accent);
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-left: 15px;
}

/* GRID LAYOUT - EQUAL SIZES */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1fr;
  align-items: stretch; /* Forces equal height columns */
}

/* COLUMN 1: Teams */
.team-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
}

.avatar-group {
  display: flex;
  margin-bottom: 25px;
}

.avatar-group img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid white;
  margin-right: -12px;
}

.white-label {
  background: white;
  padding: 15px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 40px;
}

.main-stat .number { font-size: 5rem; font-weight: 800; }
.main-stat .plus { color: var(--blue-accent); font-size: 5rem; }
.main-stat p { font-weight: 600; margin-top: -10px; color: var(--text-grey); }

/* COLUMN 2: PERSON (IMAGE OVER BOX) */
.person-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.blue-box-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.blue-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 85%; /* Shorter than the image */
  background-color: var(--blue-accent);
  z-index: 1;
}

.person-img {
  position: relative;
  z-index: 2; /* Image sits in front */
  width: 100%;
  height: auto;
  display: block;
}

/* COLUMNS 3 & 4: WHITE CARDS */
.white-card {
  background-color: white; /* Card background white */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
}

.border-right {
  border-right: 1px solid #eee;
}

.stat-num {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.stat-num span { color: var(--blue-accent); }

.white-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 15px 0;
}

.white-card p {
  color: var(--text-grey);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-top { flex-direction: column; }
  .hero-title { font-size: 3rem; margin-bottom: 30px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
}





@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.plan-selector {
  --bg-blue: #d6eaff;
  --pink: #f9c4d2;
  --dark: #1a1a1a;
  background-color: var(--bg-blue);
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
  padding: 50px 0;
}

.containers {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: flex-start; /* Crucial for sticky to work */
}

/* LEFT SIDE: STATIC/STICKY */
.static-content {
  flex: 0 0 400px;
  position: sticky;
  top: 100px; /* Distance from top when it stops scrolling */
}

.icon-box {
  width: 50px; height: 50px; border: 2px solid var(--dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 25px;
}

.heading {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem; line-height: 0.9; margin: 0 0 20px 0;
}

.description {
  font-size: 1.1rem; color: #4b5563; line-height: 1.5; max-width: 350px;
}

/* RIGHT SIDE: SCROLLABLE */
.scrollable-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 100px; /* Extra space at bottom */
}

.card {
  border-radius: 40px; padding: 40px;
  cursor: pointer; transition: all 0.4s ease;
  overflow: hidden;
}

.pink-card { background-color: var(--pink); border: 2.5px solid transparent; }
.white-card.active { 
  background-color: white; 
  border: 2.5px solid var(--dark);
  box-shadow: 10px 10px 0px rgba(0,0,0,0.05);
}

.card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.info h2 { font-size: 2.4rem; margin: 0; font-weight: 700; }
.info p { font-size: 0.95rem; color: #4b5563; margin: 5px 0; }
.price { font-size: 2.8rem; font-weight: 800; }
.price span { font-size: 1rem; color: #6b7280; font-weight: 400; }

.badge {
  background: var(--dark); color: #fff; padding: 6px 15px;
  border-radius: 20px; font-size: 0.75rem; font-weight: 700;
  display: inline-block; margin-bottom: 15px;
}

.view-bar {
  margin-top: 30px; padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; text-transform: lowercase;
}

.toggle-icon {
  width: 24px; height: 24px; border: 1.5px solid var(--dark);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
}

/* ACCORDION ANIMATION */
.details {
  max-height: 0; opacity: 0;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.card.active .details {
  max-height: 1000px; opacity: 1;
  transition: all 0.5s cubic-bezier(1, 0, 1, 0);
  margin-top: 20px;
}

.details ul { list-style: none; padding: 0; margin: 0; }
.details li {
  padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: center; font-weight: 600; font-size: 0.95rem;
}
.details li::before {
  content: "✓"; background: var(--dark); color: white;
  width: 20px; height: 20px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 10px; margin-right: 15px;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  .containers { flex-direction: column; padding: 20px; }
  .static-content { position: relative; top: 0; flex: none; width: 100%; margin-bottom: 40px; }
  .heading { font-size: 3.5rem; }
}

/* =========================
   MOBILE FIXES (ADD AT END)
========================= */


/* -------- Tablet: tighten spacing -------- */
@media (max-width: 1024px) {
  .hero-marketing { padding: 60px 5% 0 5%; }
  .hero-grid { gap: 16px; }

  .card { padding: 28px; border-radius: 28px; }
  .info h2 { font-size: 2rem; }
  .price { font-size: 2.2rem; }
}

/* -------- Mobile: stack layout properly -------- */
@media (max-width: 768px) {

  /* HERO */
  .hero-marketing { padding: 40px 4% 0 4%; }
  .hero-title {
    font-size: 2.4rem;
    line-height: 1.05;
  }
  .hero-cta-box {
    max-width: 100%;
    padding-top: 12px;
  }

  /* Make hero grid single column for clean mobile */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-stat { padding-bottom: 10px; }
  .white-label { margin-bottom: 18px; }

  /* Person image column size */
  .person-col { min-height: 320px; }
  .blue-bg { height: 70%; }
  .person-img { max-height: 420px; object-fit: contain; }

  /* White cards spacing */
  .white-card { padding: 24px 18px; }
  .border-right { border-right: none; }
  .stat-num { font-size: 3rem; margin-bottom: 10px; }

  /* PLAN SELECTOR layout */
  .plan-selector { padding: 40px 0; min-height: auto; }
  .containers { gap: 25px; padding: 14px; }

  .static-content { margin-bottom: 10px; }
  .heading {
    font-size: 3rem;
    line-height: 0.95;
  }
  .description { font-size: 1rem; max-width: 100%; }

  /* Cards */
  .card {
    padding: 22px;
    border-radius: 26px;
  }

  /* ✅ IMPORTANT: stack title + price so it won't cut */
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .info h2 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .info p {
    font-size: 0.92rem;
  }

  .price {
    font-size: 2rem;
    line-height: 1;
  }

  .price span {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.95rem;
  }

  .view-bar {
    margin-top: 18px;
    padding-top: 14px;
    font-size: 0.95rem;
  }

  .details li {
    font-size: 0.92rem;
    padding: 10px 0;
  }
}

/* -------- Small mobile: extra tightening -------- */
@media (max-width: 420px) {
  .hero-title { font-size: 2.05rem; }
  .get-started-btn { width: 100%; justify-content: space-between; }

  .card { padding: 18px; border-radius: 22px; }

  .info h2 { font-size: 1.45rem; }
  .price { font-size: 1.75rem; }

  .toggle-icon { width: 22px; height: 22px; }
}
