@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');
    
    body {
      box-sizing: border-box;
    }

    * {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
    }

    /* Utility Classes */
    .w-full { width: 100%; }
    .h-full { height: 100%; }
    .text-center { text-align: center; }
    .text-white { color: white; }
    .font-bold { font-weight: 700; }
    .font-semibold { font-weight: 600; }
    .text-lg { font-size: 18px; }
    .text-xl { font-size: 20px; }
    .rounded-full { border-radius: 9999px; }
    .px-8 { padding-left: 32px; padding-right: 32px; }
    .px-10 { padding-left: 40px; padding-right: 40px; }
    .px-12 { padding-left: 48px; padding-right: 48px; }
    .py-3 { padding-top: 12px; padding-bottom: 12px; }
    .py-5 { padding-top: 20px; padding-bottom: 20px; }
    .py-6 { padding-top: 24px; padding-bottom: 24px; }

    :root {
      --primary-blue: #2563EB;
      --primary-purple: #7C3AED;
      --primary-green: #10B981;
      --accent-orange: #F59E0B;
      --accent-pink: #EC4899;
      --light-bg: #F0F9FF;
      --dark-text: #1E293B;
      --light-text: #475569;
      --card-white: #FFFFFF;
      --border-color: #E0E7FF;
    }

    .gradient-bg {
      background: linear-gradient(135deg, #7C3AED 0%, #2563EB 50%, #10B981 100%);
    }
img {
  cursor: zoom-in;
}
.section-container img{
  cursor: zoom-in;
}


    .gradient-text {
      background: linear-gradient(135deg, #2563EB, #7C3AED);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .glass-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

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

    .card-shadow {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .hover-lift {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hover-lift:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .btn-primary {
      background: linear-gradient(135deg, #2563EB, #7C3AED);
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #1D4ED8, #6D28D9);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    }

    .card-blue {
      background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
      border-left: 4px solid var(--primary-blue);
    }

    .card-purple {
      background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
      border-left: 4px solid var(--primary-purple);
    }

    .card-green {
      background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
      border-left: 4px solid var(--primary-green);
    }

    .icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 36px;
    }

    .icon-blue { background: linear-gradient(135deg, #DBEAFE, #93C5FD); }
    .icon-purple { background: linear-gradient(135deg, #F3E8FF, #C4B5FD); }
    .icon-green { background: linear-gradient(135deg, #D1FAE5, #6EE7B7); }

    .timeline-line {
      position: absolute;
      left: 23px;
      top: 50px;
      bottom: 50px;
      width: 2px;
      background: var(--primary-green);
    }

    .step-circle {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 20px;
      position: relative;
      z-index: 10;
      box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    }

    .faq-item {
      border-bottom: 1px solid var(--border-color);
      transition: all 0.3s ease;
    }

    .faq-question {
      cursor: pointer;
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--primary-blue);
      font-size: 18px;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      color: var(--light-text);
      line-height: 1.7;
    }

    .faq-answer.active {
      max-height: 500px;
      padding-bottom: 24px;
    }

    .faq-icon {
      transition: transform 0.3s ease;
      font-size: 24px;
    }

    .faq-icon.active {
      transform: rotate(45deg);
    }

    .sticky-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      padding: 16px 24px;
      display: flex;
      justify-content: center;
    }

    .badge {
      display: inline-block;
      padding: 8px 20px;
      background: var(--primary-green);
      color: white;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .check-icon {
      color: var(--primary-green);
      font-size: 24px;
      margin-right: 12px;
    }

    html {
      scroll-behavior: smooth;
    }

    /* Desktop Styles */
    .main-wrapper {
      margin: 0;
      background: linear-gradient(135deg, #C7D4E8 0%, #D8B4E8 50%, #B8E1F5 100%);
    }

    .hero-section {
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .hero-card {
      padding: 60px 40px;
      border-radius: 16px;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-headline {
      color: white;
      font-size: 38px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 24px;
    }

    .hero-subtext {
      color: rgba(255, 255, 255, 0.95);
      font-size: 20px;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .section-subtitle {
      text-align: center;
      font-size: 18px;
      color: var(--light-text);
      margin-bottom: 60px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .problem-card {
      padding: 40px;
      border-radius: 20px;
      text-align: center;
    }

    .problem-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .problem-card p {
      line-height: 1.6;
      font-weight: 500;
    }

    .problem-card-blue h3 {
      color: var(--primary-blue);
    }

    .problem-card-blue p {
      color: var(--dark-text);
    }

    .problem-card-purple h3 {
      color: var(--primary-purple);
    }

    .problem-card-purple p {
      color: var(--dark-text);
    }

    .problem-card-green h3 {
      color: var(--primary-green);
    }

    .problem-card-green p {
      color: var(--dark-text);
    }

    .callout-box {
      text-align: center;
      margin-top: 60px;
      padding: 40px;
      background: linear-gradient(135deg, #EDE9FE 0%, #F3E8FF 100%);
      border-radius: 16px;
      border-left: 4px solid var(--primary-purple);
    }

    .callout-primary {
      font-size: 24px;
      font-weight: 600;
      color: var(--primary-purple);
      margin-bottom: 12px;
    }

    .callout-secondary {
      font-size: 20px;
      color: var(--primary-purple);
      font-weight: 600;
    }

    .promise-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .promise-badge {
      background: var(--primary-green);
    }

    .promise-title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .promise-text {
      font-size: 18px;
      color: var(--light-text);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .promise-highlight {
      font-size: 20px;
      font-weight: 600;
      color: var(--dark-text);
      line-height: 1.8;
    }

    .promise-emoji {
      text-align: center;
      font-size: 120px;
    }

    .timeline-container {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }

    .timeline-step {
      display: flex;
      gap: 24px;
      margin-bottom: 40px;
      position: relative;
    }

    .timeline-card {
      flex: 1;
      background: var(--card-white);
      padding: 30px;
      border-radius: 16px;
    }

    .timeline-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 12px;
    }

    .timeline-card p {
      color: var(--light-text);
      line-height: 1.6;
    }

    .timeline-note {
      text-align: center;
      margin-top: 40px;
      color: var(--light-text);
      font-style: italic;
    }

    .included-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 24px;
    }

    .included-item {
      display: flex;
      align-items: start;
      padding: 24px;
      border-radius: 12px;
    }

    .included-item-blue {
      background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
      border-left: 4px solid var(--primary-blue);
    }

    .included-item-purple {
      background: linear-gradient(135deg, #F3E8FF, #E9D5FF);
      border-left: 4px solid var(--primary-purple);
    }

    .included-item-green {
      background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
      border-left: 4px solid var(--primary-green);
    }

    .included-item h4 {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark-text);
      margin-bottom: 8px;
    }

    .included-item p {
      line-height: 1.6;
      font-weight: 500;
    }

    .included-item-blue p {
      color: var(--light-text);
    }

    .included-item-purple p {
      color: var(--dark-text);
    }

    .included-item-green p {
      color: var(--dark-text);
    }

    .included-check-blue {
      color: var(--primary-blue);
    }

    .included-check-purple {
      color: var(--primary-purple);
    }

    .included-check-green {
      color: var(--primary-green);
    }

    .solo-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

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

    .solo-emoji {
      font-size: 48px;
      margin-bottom: 12px;
    }

    .solo-text {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark-text);
    }

    .pricing-container {
      max-width: 500px;
      margin: 0 auto;
      background: var(--card-white);
      border-radius: 20px;
      padding: 50px;
      border: 3px solid var(--primary-green);
      text-align: center;
    }

    .pricing-badge {
      font-size: 16px;
      background: var(--primary-green);
    }

    .pricing-content {
      margin: 30px 0;
    }

    .pricing-setup {
      margin-bottom: 20px;
    }

    .pricing-setup-label {
      font-size: 18px;
      color: var(--light-text);
      margin-bottom: 8px;
    }

    .pricing-setup-amount {
      font-size: 48px;
      font-weight: 800;
      color: var(--dark-text);
    }

    .pricing-budget {
      margin-bottom: 20px;
      padding: 20px;
      background: var(--light-bg);
      border-radius: 12px;
    }

    .pricing-budget-label {
      font-size: 18px;
      color: var(--light-text);
      margin-bottom: 8px;
    }

    .pricing-budget-amount {
      font-size: 32px;
      font-weight: 700;
      color: var(--dark-text);
    }

    .pricing-feature {
      font-size: 20px;
      font-weight: 600;
      color: var(--dark-text);
      margin-bottom: 8px;
    }

    .pricing-description {
      color: var(--light-text);
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .pricing-button {
      width: 100%;
    }

    .cta-title {
      color: white;
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .cta-text {
      color: rgba(255, 255, 255, 0.95);
      font-size: 20px;
      margin-bottom: 40px;
    }

    .cta-button-white {
      background: white !important;
      color: var(--primary-blue) !important;
    }

    .cta-button-white:hover {
      background: #f0f0f0 !important;
      transform: translateY(-2px);
    }

    .about-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .about-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 24px;
    }

    .about-you-container {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 60px;
      align-items: center;
      background: var(--card-white);
      padding: 50px;
      border-radius: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .about-you-photo {
      width: 300px;
      height: 300px;
      border-radius: 20px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-you-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-you-content {
      flex: 1;
    }

    .about-you-name {
      font-size: 32px;
      font-weight: 800;
      color: var(--dark-text);
      margin-bottom: 8px;
    }

    .about-you-company {
      font-size: 18px;
      font-weight: 600;
      color: var(--primary-blue);
      margin-bottom: 24px;
    }

    .about-you-bio {
      font-size: 18px;
      color: var(--light-text);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    @media (max-width: 768px) {
      .about-you-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
      }

      .about-you-photo {
        width: 100%;
        height: 250px;
      }

      .about-you-name {
        font-size: 24px;
      }

      .about-you-company {
        font-size: 16px;
      }

      .about-you-bio {
        font-size: 16px;
      }
    }

    .faq-wrapper {
      background: var(--card-white);
      border-radius: 16px;
      padding: 20px 40px;
    }

    .footer {
      background: var(--dark-text);
      color: white;
      padding: 40px 24px;
      text-align: center;
    }

    .footer-text {
      opacity: 0.8;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .section-padding {
        padding: 60px 20px;
      }

      .hero-headline {
        font-size: 28px !important;
      }

      .hero-card {
        padding: 40px 24px;
      }

      .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 28px;
      }

      .promise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .promise-emoji {
        font-size: 80px;
      }

      .step-circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }

      .timeline-line {
        left: 19px;
      }

      .section-title {
        font-size: 26px;
      }

      .promise-title {
        font-size: 26px;
      }

      .cta-title {
        font-size: 26px;
      }

      .pricing-container {
        padding: 40px 24px;
      }

      .faq-wrapper {
        padding: 20px 20px;
      }
}
/* ===== FIX INCLUDED SECTION FOR MOBILE ===== */
@media (max-width: 768px) {

  .included-grid {
    grid-template-columns: 1fr !important;   /* force single column */
    gap: 16px;
  }

  .included-item {
    flex-direction: column;                  /* stack icon and text */
    align-items: center;
    text-align: center;
    padding: 18px;
  }

  .check-icon {
    margin: 0 0 10px 0;                     /* remove right margin */
    font-size: 20px;
  }

  .included-item h4 {
    font-size: 17px;
  }

  .included-item p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}