    :root {
      --primary: #F7931E; 
      --purple: #E07D10; 
      --dark: #102046; 
      
      --text: #111827;
      --muted: #6b7280;
      --light: #f4f6fc;
      --card: #ffffff;
      --border: #e2e5f1;
      --green: #10b981;
      --orange: #F7931E;
      --danger: #ef4444;
      --gradient-main: linear-gradient(135deg, #F7931E, #E07D10);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }

    section { padding: 100px 0; position: relative; }
    .section-soft { background: linear-gradient(180deg, #fff 0%, var(--light) 100%); }

    .section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.15; color: var(--dark); }
    .section-title span { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .section-sub { color: var(--muted); font-size: 17px; line-height: 1.8; max-width: 760px; font-weight: 400; }

    /* Navbar */
    .navbar { padding: 0px 0; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(0,0,0,0.05); }
    .navbar-brand img { height: 100px; mix-blend-mode: multiply; }
    .nav-link { font-weight: 600; color: #374151 !important; font-size: 14px; margin: 0 10px; transition: 0.3s; }
    .nav-link:hover { color: #F7931E !important; }

    /* Buttons */
    .btn-main { background: var(--gradient-main); color: #fff !important; border: 0; border-radius: 12px; padding: 12px 26px; font-weight: 700; box-shadow: 0 10px 25px rgba(247, 147, 30, 0.25); transition: all 0.3s ease; }
    .btn-main:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px rgba(247, 147, 30, 0.4); }
    .btn-light-custom { background: #fff; border: 2px solid var(--border); border-radius: 12px; padding: 10px 24px; font-weight: 700; color: var(--dark); transition: all 0.3s ease; }
    .btn-light-custom:hover { transform: translateY(-3px); border-color: #F7931E; color: #F7931E; }

    /* Hero Section */
    .hero { height: 100vh; min-height: 650px; padding-top: 70px; background: radial-gradient(circle at 85% 15%, rgba(247, 147, 30, 0.08), transparent 40%), radial-gradient(circle at 15% 85%, rgba(16, 32, 70, 0.05), transparent 40%), #ffffff; display: flex; align-items: center; position: relative; overflow: hidden; }
    .hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.15; color: var(--dark); }
    .hero h1 span { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .hero-copy { font-size: 16px; line-height: 1.6; color: #4b5563; margin: 18px 0 24px; }
    
    /* Hero Visual */
    .hero-visual { position: relative; height: 480px; width: 100%; z-index: 2; }
    .owner-card { position: absolute; right: 0%; top: 5%; width: 85%; height: 90%; border-radius: 30px; background: linear-gradient(180deg, rgba(7, 10, 19, 0) 30%, rgba(16, 32, 70, 0.9) 100%), url('../images/man.jfif') center/cover; box-shadow: 0 30px 80px rgba(16, 32, 70, 0.15); z-index: 2; }
    .owner-bottom { position: absolute; left: 25px; right: 25px; bottom: 25px; color: white; }
    .owner-bottom h4 { font-weight: 800; font-size: 22px; margin-bottom: 4px; }
    
    /* UPDATED: Thought Bubbles (Sleek Chat Bubble UI) */
    .thought-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.90);
      backdrop-filter: blur(12px);
      padding: 12px 18px;
      border-radius: 20px 20px 20px 4px; /* Chat bubble look */
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 15px 35px rgba(16, 32, 70, 0.12);
      border: 1px solid rgba(255, 255, 255, 1);
      color: var(--dark);
      animation: float 4s ease-in-out infinite;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    /* Add subtle dot indicator to bubbles */
    .thought-card::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      background: #F7931E;
      border-radius: 50%;
    }

    /* Adjusted positions to prevent overflow */
    .t1 { left: 0%; top: 8%; }
    .t2 { left: -5%; top: 32%; animation-delay: 0.5s; }
    .t3 { left: 2%; top: 58%; animation-delay: 1s; }
    .t4 { right: -2%; top: 18%; animation-delay: 1.5s; border-radius: 20px 20px 4px 20px; } /* Flip tail */
    .t5 { right: -8%; top: 42%; animation-delay: 2s; border-radius: 20px 20px 4px 20px; }
    .t6 { right: 2%; bottom: 12%; animation-delay: 2.5s; border-radius: 20px 20px 4px 20px; }

    @keyframes float { 0%, 100% { transform: translateY(0px) } 50% { transform: translateY(-10px) } }

    /* Cards */
    .problem-card, .solution-card { background: white; border: 1px solid var(--border); border-radius: 24px; padding: 30px; height: 100%; transition: 0.4s; position: relative; z-index: 1; overflow: hidden; }
    .problem-card:hover, .solution-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: 0 20px 50px rgba(16, 32, 70, 0.08); }
    .problem-card:hover::after, .solution-card:hover::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-main); }
    .icon-box { width: 50px; height: 50px; border-radius: 14px; background: rgba(247, 147, 30, 0.1); color: #F7931E; display: grid; place-items: center; font-size: 22px; margin-bottom: 20px; transition: 0.4s; }
    .problem-card:hover .icon-box, .solution-card:hover .icon-box { background: var(--gradient-main); color: white; transform: scale(1.1); }
    .problem-card h4, .solution-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
    .problem-card p, .solution-card p { color: var(--muted); line-height: 1.6; margin: 0; }

    /* Dark Section */
    .dark-section { background: var(--dark); color: white; position: relative; overflow: hidden; }
    .dark-section .section-title { color: white; }
    
    /* Funnel */
    .funnel { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 30px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 28px; }
    .funnel-step { padding: 12px 0; border-radius: 12px; background: rgba(255, 255, 255, 0.08); font-weight: 700; text-align: center; color: white; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
    .funnel-arrow { color: rgba(255, 255, 255, 0.3); font-size: 20px; animation: arrowDown 2s infinite; }
    @keyframes arrowDown { 0% { transform: translateY(-3px); opacity: 0.5; } 50% { transform: translateY(3px); opacity: 1; } 100% { transform: translateY(-3px); opacity: 0.5; } }
    .f-1 { width: 100%; } .f-2 { width: 92%; } .f-3 { width: 84%; } .f-4 { width: 76%; } .f-5 { width: 68%; } .f-6 { width: 60%; } .f-7 { width: 52%; background: var(--gradient-main); border: none; }

    /* Framework */
    .framework-container { position: relative; margin-top: 50px; }
    .framework-line { position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: var(--border); z-index: 1; }
    .framework { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; z-index: 2; }
    .circle-step { background: white; border: 1px solid var(--border); border-radius: 24px; padding: 24px 16px; text-align: center; transition: 0.4s; }
    .circle-num { width: 55px; height: 55px; border-radius: 50%; margin: 0 auto 15px; background: rgba(247, 147, 30, 0.1); color: #F7931E; display: grid; place-items: center; font-weight: 800; font-size: 20px; border: 2px solid white; transition: 0.3s; }
    .circle-step:hover { border-color: #F7931E; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(247, 147, 30, 0.1); }
    .circle-step:hover .circle-num { background: var(--gradient-main); color: white; }

    /* Fail Section */
    .fail-section { background: #081024; color: white; position: relative; overflow: hidden; }
    .fail-section .section-title { color: white; }
    .fail-content-box { padding-right: 30px; }
    .tactics-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0; }
    .tactic-tag { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; color: #94a3b8; }
    
    .leak-wrapper { display: flex; flex-direction: column; gap: 6px; padding: 30px; background: rgba(255,255,255,0.02); border-radius: 30px; border: 1px solid rgba(255,255,255,0.05); }
    .fail-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
    .fail-card:hover { background: rgba(239, 68, 68, 0.05); border-color: rgba(239, 68, 68, 0.3); }
    .fail-card-title { font-size: 18px; font-weight: 700; color: white; }
    .fail-badge { background: rgba(239, 68, 68, 0.15); color: #fca5a5; padding: 6px 14px; border-radius: 10px; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
    .fail-arrow { text-align: center; color: rgba(255,255,255,0.15); font-size: 18px; margin: 2px 0; }
    .fatal-card { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4); }
    .fatal-card .fail-card-title { color: #fca5a5; }
    .fatal-card .fail-badge { background: var(--danger); color: white; }

    /* Persona Cards */
    .persona-card { background: linear-gradient(135deg, #ffffff, var(--light)); border: 1px solid var(--border); border-radius: 24px; padding: 30px; height: 100%; text-align: center; transition: 0.3s; }
    .persona-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(16,32,70,0.05); }

    /* Learn Cards */
    .learn-card { padding: 16px 20px; font-weight: 600; color: var(--dark); background: white; border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
    .learn-card:hover { background: #F7931E; color: white; transform: scale(1.02); border-color: #F7931E; }
    .learn-card i { color: #F7931E; font-size: 18px; }
    .learn-card:hover i { color: white; }

    /* Promise Grid */
    .promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
    .promise-bad-box { background: white; border: 1px solid var(--border); border-radius: 30px; padding: 50px 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
    .promise-good-box { background: var(--dark); color: white; border-radius: 30px; padding: 50px 40px; box-shadow: 0 20px 50px rgba(16, 32, 70, 0.3); position: relative; overflow: hidden; }
    .promise-good-box::after { content: ''; position: absolute; right: -20%; bottom: -20%; width: 300px; height: 300px; background: rgba(247, 147, 30, 0.15); filter: blur(40px); border-radius: 50%; }
    .promise-item { display: flex; align-items: center; gap: 15px; font-size: 18px; font-weight: 700; margin-bottom: 24px; }
    .promise-item:last-child { margin-bottom: 0; }
    .promise-item.bad { color: #64748b; }
    .promise-item.bad i { color: #ef4444; font-size: 24px; }
    .promise-item.good { color: white; }
    .promise-item.good i { color: #F7931E; font-size: 24px; background: rgba(247, 147, 30, 0.1); padding: 5px; border-radius: 50%; }

    /* Stats */
    .stat-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 30px 15px; text-align: center; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.3s; }
    .stat-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
    .stat-card h3 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 5px; }

    /* Testimonials */
    .testimonial-box { background: white; border: 1px solid var(--border); border-radius: 24px; padding: 50px 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }

    /* FAQ */
    .faq-container { max-width: 900px; margin: 0 auto; }
    .accordion-item { background: white; border: 1px solid var(--border); border-radius: 20px !important; margin-bottom: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); overflow: hidden; transition: 0.3s; }
    .accordion-item:hover { border-color: #F7931E; box-shadow: 0 8px 25px rgba(247, 147, 30, 0.08); }
    .accordion-button { font-weight: 700; padding: 24px; font-size: 17px; color: var(--dark); background: white; border-radius: 20px !important; box-shadow: none !important; }
    .accordion-button:not(.collapsed) { color: #F7931E; background: #fffcf8; }
    .accordion-body { padding: 0 24px 24px 24px; color: var(--muted); line-height: 1.8; font-size: 16px; background: #fffcf8; }

    /* Final CTA & Contact Form */
    .final-cta { background: linear-gradient(135deg, rgba(16, 32, 70, 0.95), rgba(16, 32, 70, 0.85)), url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1200&q=80') center/cover; border-radius: 32px; padding: 60px 40px; color: white; box-shadow: 0 20px 50px rgba(16,32,70,0.3); }
    .final-cta .section-title { color: white; }
    
    .contact-form .form-control { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); color: white; border-radius: 12px; padding: 14px 20px; }
    .contact-form .form-control::placeholder { color: rgba(255, 255, 255, 0.6); }
    .contact-form .form-control:focus { background: rgba(255, 255, 255, 0.12); border-color: #F7931E; box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.1); }

    /* Footer */
    footer { background: #081024; color: white; padding: 70px 0 20px; }
    footer a { color: #8b95a5; text-decoration: none; margin: 8px 0; display: block; font-size: 14px; transition: 0.3s; }
    footer a:hover { color: #F7931E; padding-left: 5px; }

    .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
    .reveal.active { opacity: 1; transform: translateY(0); }

    /* Responsive */
    @media(max-width:991px) {
      .hero { height: auto; padding: 120px 0 60px; text-align: center; }
      .hero-visual { height: 400px; margin-top: 40px; }
      .owner-card { width: 100%; right: 0; }
      .framework-line { display: none; }
      .framework { grid-template-columns: 1fr 1fr; }
      .promise-grid { grid-template-columns: 1fr; }
      .final-cta { padding: 40px 20px; }
    }
    @media(max-width:575px) {
      section { padding: 70px 0; }
      .hero h1 { font-size: 28px; }
      .hero-visual { height: 320px; }
      
      /* UPDATED: Mobile responsive for thought bubbles */
      .thought-card { padding: 8px 12px; font-size: 11px; }
      .t1 { left: 5%; top: 5%; }
      .t2 { left: -2%; top: 35%; }
      .t3 { left: 5%; top: 65%; }
      .t4 { right: 5%; top: 15%; }
      .t5 { right: -2%; top: 45%; }
      .t6 { right: 5%; bottom: 10%; }

      .framework { grid-template-columns: 1fr; }
      .fail-card { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 18px; }
      .promise-bad-box, .promise-good-box { padding: 30px 20px; }
      .promise-item { font-size: 15px; }
      .accordion-button { padding: 18px; font-size: 15px; }
      .accordion-body { padding: 0 18px 18px; font-size: 14px; }
    }
