    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #f5f2ec;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      scroll-behavior: smooth;
    }

    /* ----- STICKY HEADER (same as provided, with sticky enhancement) ----- */
    .uptalk_home_header_wrapper {
      background: #f5f2ec;
      padding: 18px 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(0px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.02);
      border-bottom: 1px solid rgba(0,0,0,0.03);
    }
.uptalk_home_header_btn {

    padding: 4px 2px !important;}
    .uptalk_home_header_container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
    }

    /* LOGO */
    .uptalk_home_header_logo {
      font-size: 20px;
      font-weight: 700;
      color: #111;
    }

    /* NAV */
    .uptalk_home_header_nav {
      display: flex;
      gap: 30px;
    }

    .uptalk_home_header_nav a {
      text-decoration: none;
      color: #6b7280;
      font-size: 15px;
      transition: 0.2s ease;
    }

    .uptalk_home_header_nav a:hover {
      color: #111;
    }

    /* RIGHT SIDE */
    .uptalk_home_header_actions {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .uptalk_home_header_login {
      color: #6b7280;
      font-size: 15px;
      text-decoration: none;
    }

    .uptalk_home_header_login:hover {
      color: #111;
    }

    /* BUTTON */
    .uptalk_home_header_btn {
      background: linear-gradient(135deg, #f5c242, #eab308);
      border: none;
      padding: 10px 18px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      color: #111;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s;
    }

    .uptalk_home_header_btn:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    /* RESPONSIVE HEADER */
    @media (max-width: 768px) {
      .uptalk_home_header_nav {
        display: none;
      }
      .uptalk_home_header_container {
        padding: 0 16px;
      }
      
      .uptalk_home_header_actions{display:flow !important;}
    }

    /* ----- SECTION 1: want to win (features) ----- */
    .uptalk_want_to_win_wrapper {
      background: #f5f2ec;
      padding: 100px 0 80px;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    }

    .uptalk_want_to_win_container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .uptalk_want_to_win_title {
      font-size: 56px;
      font-weight: 800;
      color: #111;
      margin-bottom: 50px;
    }

    .uptalk_want_to_win_highlight {
      color: #f59e0b;
    }

    .uptalk_want_to_win_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .uptalk_want_to_win_card {
      background: #efe9e1;
      padding: 18px 20px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: all 0.25s ease;
    }

    .uptalk_want_to_win_card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }

    .uptalk_want_to_win_icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: #e9d8b4;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .uptalk_want_to_win_text {
      font-size: 16px;
      font-weight: 500;
      color: #111;
    }

    /* ----- SECTION 2: Real creators. Real money (testimonials) ----- */
    .uptalk_section_rcrm_wrapper {
      background: #f5f2ec;
      padding: 80px 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    }

    .uptalk_section_rcrm_container {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
      padding: 0 20px;
    }

    .uptalk_section_rcrm_title {
      font-size: 56px;
      font-weight: 800;
      color: #111;
      margin-bottom: 60px;
    }

    .uptalk_section_rcrm_highlight {
      color: #f59e0b;
    }

    .uptalk_section_rcrm_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .uptalk_section_rcrm_card {
      background: #efe9e1;
      padding: 28px;
      border-radius: 20px;
      text-align: left;
      transition: all 0.25s ease;
    }

    .uptalk_section_rcrm_card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.05);
    }

    .uptalk_section_rcrm_quote {
      font-size: 18px;
      color: #111;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .uptalk_section_rcrm_name {
      font-weight: 700;
      color: #111;
      font-size: 14px;
    }

    .uptalk_section_rcrm_role {
      font-size: 13px;
      color: #6b7280;
    }

    /* ----- SECTION 3: audience ready to pay (pricing card) ----- */
    .uptalk_audience_ready_to_pay_wrapper {
      background: #f5f2ec;
      padding: 80px 0 100px;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    }

    .uptalk_audience_ready_to_pay_container {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
      padding: 0 20px;
    }

    .uptalk_audience_ready_to_pay_title {
      font-size: 56px;
      font-weight: 800;
      color: #111;
    }

    .uptalk_audience_ready_to_pay_highlight {
      color: #f59e0b;
    }

    .uptalk_audience_ready_to_pay_subtitle {
      margin-top: 12px;
      font-size: 18px;
      color: #6b7280;
    }

    .uptalk_audience_ready_to_pay_card {
      margin-top: 50px;
      background: #efe9e1;
      border-radius: 24px;
      padding: 60px 40px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    }

    .uptalk_audience_ready_to_pay_label {
      font-size: 13px;
      letter-spacing: 2px;
      color: #6b7280;
      margin-bottom: 10px;
    }

    .uptalk_audience_ready_to_pay_price {
      font-size: 110px;
      font-weight: 800;
      color: #111;
      line-height: 1;
    }

    .uptalk_audience_ready_to_pay_price span {
      font-size: 40px;
      font-weight: 700;
    }

    .uptalk_audience_ready_to_pay_desc {
      margin-top: 10px;
      color: #6b7280;
      font-size: 15px;
    }

    .uptalk_audience_ready_to_pay_strong {
      margin-top: 6px;
      font-size: 18px;
      font-weight: 600;
      color: #111;
    }

    .uptalk_audience_ready_to_pay_tags {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .uptalk_audience_ready_to_pay_tag {
      background: #e9d8b4;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
    }

    .uptalk_audience_ready_to_pay_btn {
      margin-top: 30px;
      background: linear-gradient(135deg, #f5c242, #eab308);
      border: none;
      padding: 16px 32px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s;
    }

    .uptalk_audience_ready_to_pay_btn:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    /* responsive adjustments */
    @media (max-width: 992px) {
      .uptalk_want_to_win_title {
        font-size: 38px;
        text-align: center;
      }
      .uptalk_want_to_win_grid {
        grid-template-columns: 1fr;
      }
      .uptalk_section_rcrm_title {
        font-size: 38px;
      }
      .uptalk_section_rcrm_grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .uptalk_audience_ready_to_pay_title {
        font-size: 36px;
      }
      .uptalk_audience_ready_to_pay_price {
        font-size: 70px;
      }
      .uptalk_audience_ready_to_pay_price span {
        font-size: 28px;
      }
      .uptalk_audience_ready_to_pay_card {
        padding: 40px 20px;
      }
    }

    @media (max-width: 640px) {
      .uptalk_want_to_win_wrapper,
      .uptalk_section_rcrm_wrapper,
      .uptalk_audience_ready_to_pay_wrapper {
        padding: 60px 0;
      }
      .uptalk_want_to_win_title {
        font-size: 32px;
      }
      .uptalk_section_rcrm_title {
        font-size: 32px;
      }
      .uptalk_audience_ready_to_pay_title {
        font-size: 30px;
      }
    }

    /* simple container override for .container used in header (global) */
    .container {
      width: 100%;
    }

    /* smooth anchor link offset */
    html {
      scroll-padding-top: 80px;
    }

            /* RESET & BASE */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f2ec;
            overflow-x: hidden;
        }

        /* custom properties */
        :root {
            --bg-warm: #f5f2ec;
            --card-bg: #ffffffea;
            --card-warm-bg: #fffcf8;
            --text-dark: #1e1a15;
            --text-muted: #6b7280;
            --accent-gold: #f2c94c;
            --accent-gold-dark: #e9b83b;
            --green-income: #10a34b;
            --border-light: rgba(0, 0, 0, 0.05);
            --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02);
            --shadow-hover: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
        }

        /* utility container */
        .max-w-7xl {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* HERO SECTION - reduced padding */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 3rem 0 2rem 0;
        }

        /* grid layout */
        .grid-lg-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* typography */
        .display-heading {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.02em;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .gradient-text-primary {
            background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .body-text {
            font-size: 1.125rem;
            line-height: 1.55;
            color: #4b5563;
            max-width: 520px;
            margin-bottom: 2rem;
        }

        /* BUTTONS */
        .btn-primary-glow {
            background: var(--accent-gold);
            border: none;
            padding: 12px 32px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 1rem;
            color: #1e1a15;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(242, 201, 76, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary-glow:hover {
            background: var(--accent-gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -8px rgba(242, 201, 76, 0.4);
        }

        .btn-secondary-outline {
            background: transparent;
            border: 1.5px solid var(--text-dark);
            padding: 12px 32px;
            border-radius: 999px;
            font-weight: 500;
            font-size: 1rem;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-secondary-outline:hover {
            background: rgba(0, 0, 0, 0.03);
            border-color: var(--accent-gold);
            transform: translateY(-1px);
        }

        /* CARDS */
        .card-warm {
            background: var(--card-warm-bg);
            border-radius: 28px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid var(--border-light);
        }

        .card-warm:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: var(--shadow-hover);
            border-color: rgba(242, 201, 76, 0.4);
        }

        .p-5 {
            padding: 1.25rem 1.5rem;
        }
        .p-6 {
            padding: 1.75rem;
        }

        .flex-between {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .flex-start {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .icon-circle {
            width: 44px;
            height: 44px;
            background: #fef3c7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }
        
        .card-warm:hover .icon-circle {
            transform: scale(1.05);
        }

        .text-foreground {
            color: var(--text-dark);
            font-weight: 600;
        }

        .text-muted-foreground {
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        .income-badge {
            background: #eef9ef;
            padding: 4px 12px;
            border-radius: 60px;
            font-weight: 700;
            color: var(--green-income);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        
        .card-warm:hover .income-badge {
            background: #e2f3e4;
            transform: scale(1.02);
        }

        .tabular-nums {
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
        }

        /* total earnings card */
        .total-card {
            background: #1e1a15;
            border-radius: 28px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .total-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.25);
        }
        
        .total-card small {
            color: #d1ccc3;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-weight: 500;
        }
        
        .total-amount {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 8px;
        }
        
        .rupee-icon {
            color: #f9eec1;
        }
        
        .total-number {
            font-weight: 800;
            font-size: 1.8rem;
            color: #f9eec1;
            letter-spacing: -0.3px;
        }

        /* COUNTER SECTION - reduced padding */
        .uptalk_counter_top_wrapper {
            background: #f5f2ec;
            padding: 50px 0;
        }

        .uptalk_counter_top_container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .uptalk_counter_top_text {
            font-size: 18px;
            color: #6b7280;
            margin-bottom: 40px;
        }

        .uptalk_counter_top_text strong {
            color: #111;
            font-weight: 700;
        }

        .uptalk_counter_top_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .uptalk_counter_top_item {
            text-align: center;
        }

        .uptalk_counter_top_number {
            font-size: 48px;
            font-weight: 800;
            color: #111;
            letter-spacing: -1px;
            transition: all 0.3s ease;
        }
        
        .uptalk_counter_top_item:hover .uptalk_counter_top_number {
            transform: scale(1.05);
            color: #f59e0b;
        }

        .uptalk_counter_top_label {
            margin-top: 6px;
            font-size: 14px;
            color: #6b7280;
        }

        /* SECTION 3 - PROBLEM SECTION - REDUCED PADDING */
        .uptalk_section3_wrapper {
            background: #f5f2ec;
            padding: 50px 0 60px 0;
        }

        .uptalk_section3_container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .uptalk_section3_title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            color: #111;
        }

        .uptalk_section3_subtitle {
            display: block;
            color: #6b7280;
            font-weight: 700;
        }

        .uptalk_section3_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 40px 0;
        }

        .uptalk_section3_card {
            background: #efe9e1;
            padding: 24px 20px;
            border-radius: 18px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: default;
        }

        .uptalk_section3_card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.08);
            background: #f3ede5;
        }

        .uptalk_section3_icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            border-radius: 14px;
            background: rgba(239, 68, 68, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ef4444;
            font-size: 22px;
            transition: transform 0.2s;
        }
        
        .uptalk_section3_card:hover .uptalk_section3_icon {
            transform: scale(1.08);
        }

        .uptalk_section3_text {
            font-weight: 600;
            color: #111;
            font-size: 1rem;
        }

        .uptalk_section3_bottom {
            font-size: 18px;
            color: #6b7280;
        }

        .uptalk_section3_bottom strong {
            color: #111;
        }

        /* SECTION 4 - FEATURES SECTION - REDUCED PADDING */
        .uptalk_section4_wrapper {
            background: #f5f2ec;
            padding: 60px 0 70px 0;
        }

        .uptalk_section4_container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .uptalk_section4_title {
            font-size: 52px;
            font-weight: 800;
            color: #111;
            line-height: 1.2;
        }

        .uptalk_section4_highlight {
            color: #f59e0b;
        }

        .uptalk_section4_desc {
            margin-top: 14px;
            font-size: 18px;
            color: #6b7280;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .uptalk_section4_grid {
            margin-top: 55px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .uptalk_section4_card {
            background: #efe9e1;
            padding: 32px 28px;
            border-radius: 22px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: default;
        }

        .uptalk_section4_card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.08);
            background: #f3ede5;
        }

        .uptalk_section4_icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            border-radius: 16px;
            background: #e9d8b4;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            transition: transform 0.2s;
        }
        
        .uptalk_section4_card:hover .uptalk_section4_icon {
            transform: scale(1.06);
        }

        .uptalk_section4_card_title {
            font-size: 20px;
            font-weight: 700;
            color: #111;
            margin-bottom: 10px;
        }

        .uptalk_section4_card_desc {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.6;
        }

        /* SECTION 5 - STEPS SECTION */
        .uptalk_steps_wrapper {
            background: #f5f2ec;
            padding: 60px 0 80px 0;
        }

        .uptalk_steps_container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .uptalk_steps_title {
            font-size: 52px;
            font-weight: 800;
            color: #111;
        }

        .uptalk_steps_highlight {
            color: #f59e0b;
        }

        .uptalk_steps_line_wrapper {
            position: relative;
            margin: 50px 0 40px;
        }

        .uptalk_steps_line {
            height: 3px;
            background: #e5e0d8;
            position: relative;
            border-radius: 3px;
        }

        .uptalk_steps_line_fill {
            position: absolute;
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #f59e0b, #f2c94c);
            border-radius: 3px;
            transition: width 1.2s ease-out;
        }

        .uptalk_steps_line_fill.animated {
            width: 100%;
        }

        .uptalk_steps_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .uptalk_steps_item {
            text-align: center;
        }

        .uptalk_steps_circle {
            width: 72px;
            height: 72px;
            background: #e9d8b4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-weight: 800;
            font-size: 28px;
            color: #111;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .uptalk_steps_item:hover .uptalk_steps_circle {
            background: #f59e0b;
            color: white;
            transform: scale(1.08);
            box-shadow: 0 12px 24px rgba(245, 158, 11, 0.25);
        }

        .uptalk_steps_heading {
            font-size: 22px;
            font-weight: 700;
            color: #111;
            margin-bottom: 8px;
        }

        .uptalk_steps_desc {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.5;
        }

        /* RIGHT COLUMN CARDS */
        .right-column-cards {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        
        .total-spacing {
            margin-top: 0.25rem;
        }

        /* AOS ANIMATION OVERRIDES */
        [data-aos] {
            opacity: 0;
            transition-property: opacity, transform;
        }
        
        [data-aos].aos-animate {
            opacity: 1;
            transform: translateY(0) translateX(0) scale(1) rotate(0);
        }
        
        [data-aos="fade-up"] {
            transform: translateY(30px);
        }
        
        [data-aos="fade-right"] {
            transform: translateX(-40px);
        }
        
        [data-aos="zoom-in"] {
            transform: scale(0.9);
        }
        
        [data-aos="flip-up"] {
            transform: rotateX(-12deg) translateY(25px);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .grid-lg-2 {
                gap: 3rem;
            }
            .display-heading {
                font-size: 3.2rem;
            }
            .uptalk_section3_title {
                font-size: 38px;
            }
            .uptalk_section4_title {
                font-size: 42px;
            }
            .uptalk_steps_title {
                font-size: 42px;
            }
        }

        @media (max-width: 768px) {
            .grid-lg-2 {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .display-heading {
                font-size: 2.8rem;
            }
            .max-w-7xl, .container {
                padding: 0 24px;
            }
            .body-text {
                font-size: 1rem;
            }
            .btn-primary-glow, .btn-secondary-outline {
                padding: 10px 24px;
            }
            .hero-section {
                min-height: auto;
                padding: 2rem 0;
            }
            .uptalk_counter_top_grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .uptalk_counter_top_number {
                font-size: 36px;
            }
            .uptalk_section3_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .uptalk_section3_title {
                font-size: 32px;
            }
            .uptalk_counter_top_wrapper {
                padding: 40px 0;
            }
            .uptalk_section3_wrapper {
                padding: 40px 0 50px 0;
            }
            .uptalk_section4_grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            .uptalk_section4_title {
                font-size: 36px;
            }
            .uptalk_section4_wrapper {
                padding: 50px 0 60px 0;
            }
            .uptalk_steps_grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .uptalk_steps_title {
                font-size: 36px;
            }
            .uptalk_steps_wrapper {
                padding: 50px 0 70px 0;
            }
            .uptalk_steps_line_wrapper {
                display: none;
            }
            .uptalk_steps_circle {
                width: 64px;
                height: 64px;
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .display-heading {
                font-size: 2.3rem;
            }
            .p-5 {
                padding: 1rem 1.25rem;
            }
            .total-number {
                font-size: 1.5rem;
            }
            .uptalk_section3_title {
                font-size: 28px;
            }
            .uptalk_section4_title {
                font-size: 32px;
            }
            .uptalk_section4_card {
                padding: 28px 20px;
            }
            .uptalk_steps_title {
                font-size: 32px;
            }
            .uptalk_steps_heading {
                font-size: 20px;
            }
        }

        a {
            text-decoration: none;
        }
        button {
            font-family: inherit;
        }
        
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-4 {
            gap: 1rem;
        }
        
        
        .uptalk_footer_wrapper {
    background: #f5f2ec;
    padding: 100px 0 40px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    text-align: center !important;
}

/* TITLE */
.uptalk_footer_title {
    font-size: 56px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

.uptalk_footer_highlight {
    color: #f59e0b;
}

/* SUBTEXT */
.uptalk_footer_subtext {
    margin-top: 14px;
    font-size: 18px;
    color: #6b7280;
}

/* BUTTON */
.uptalk_footer_btn {
    margin-top: 25px;
    background: linear-gradient(135deg, #f5c242, #eab308);
    border: none;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s;
}

.uptalk_footer_btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* DIVIDER */
.uptalk_footer_divider {
    margin: 60px auto 30px;
    height: 1px;
    background: #e5e0d8;
    max-width: 1100px;
}

/* CONTACT */
.uptalk_footer_contact {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

/* COPYRIGHT */
.uptalk_footer_copy {
    font-size: 13px;
    color: #6b7280;
}

.uptalk_footer_copy a {
    color: #6b7280;
    text-decoration: underline;
}

.uptalk_footer_copy a:hover {
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .uptalk_footer_title {
        font-size: 36px;
    }
    
    .uptalk_footer_wrapper {
        padding: 60px 0 40px;
    }
    
    .uptalk_footer_btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

section.uptalk_footer_wrapper * {
    text-align: center !important;
}
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #f5f2ec;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    .uptalk_progress_calculator_wrapper {
      background: #f5f2ec;
      padding: 100px 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      text-align: center;
    }

    .uptalk_progress_calculator_container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* TITLE */
    .uptalk_progress_calculator_title {
      font-size: 56px;
      font-weight: 800;
      color: #111;
      line-height: 1.2;
    }

    .uptalk_progress_calculator_highlight {
      color: #f59e0b;
    }

    .uptalk_progress_calculator_sub {
      margin-top: 10px;
      color: #6b7280;
      font-size: 18px;
    }

    /* CARD */
    .uptalk_progress_calculator_card {
      margin-top: 50px;
      background: #efe9e1;
      padding: 40px;
      border-radius: 24px;
      text-align: left;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      transition: all 0.3s ease;
    }

    /* ROW */
    .uptalk_progress_calculator_row {
      margin-bottom: 35px;
    }

    .uptalk_progress_calculator_label_row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px;
      font-weight: 600;
      color: #111;
    }

    .uptalk_progress_calculator_value {
      font-weight: 700;
      color: #f59e0b;
      background: #e9d8b4;
      padding: 2px 8px;
      border-radius: 20px;
      font-size: 14px;
    }

    /* PROGRESS BAR STYLES - Custom styled range with visual bar effect */
    .uptalk_progress_calculator_range {
      width: 100%;
      height: 8px;
      border-radius: 999px;
      -webkit-appearance: none;
      appearance: none;
      background: linear-gradient(to right, #f5c242 0%, #f5c242 var(--progress-percent, 0%), #ddd7cf var(--progress-percent, 0%), #ddd7cf 100%);
      outline: none;
      cursor: pointer;
    }

    .uptalk_progress_calculator_range::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      background: #f5c242;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      border: 2px solid white;
      transition: transform 0.1s ease;
    }

    .uptalk_progress_calculator_range::-webkit-slider-thumb:hover {
      transform: scale(1.2);
    }

    .uptalk_progress_calculator_range::-moz-range-thumb {
      width: 20px;
      height: 20px;
      background: #f5c242;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid white;
    }

    /* Visual bar indicator below slider */
    .uptalk_progress_bar_visual {
      margin-top: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .uptalk_progress_fill_animated {
      flex: 1;
      height: 4px;
      background: #ddd7cf;
      border-radius: 4px;
      overflow: hidden;
    }

    .uptalk_progress_fill_bar {
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, #f5c242, #eab308);
      border-radius: 4px;
      transition: width 0.3s ease;
    }

    .uptalk_progress_percent_text {
      font-size: 12px;
      font-weight: 600;
      color: #f59e0b;
      min-width: 45px;
    }

    .uptalk_progress_calculator_scale {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: #6b7280;
      margin-top: 8px;
    }

    /* RESULT BOXES */
    .uptalk_progress_calculator_results {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
      margin-bottom: 10px;
    }

    .uptalk_progress_calculator_box {
      background: #f3eee7;
      padding: 24px 16px;
      border-radius: 20px;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s;
    }

    .uptalk_progress_calculator_box:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    }

    .uptalk_progress_calculator_box strong {
      display: block;
      font-size: 32px;
      font-weight: 800;
      margin-top: 10px;
      color: #111;
    }

    .uptalk_progress_calculator_box_small {
      font-size: 13px;
      color: #6b7280;
      letter-spacing: 0.3px;
    }

    .uptalk_progress_calculator_highlight_box {
      background: linear-gradient(135deg, #f5e6c6, #efe0be);
      border: 1px solid #e9d8b4;
    }

    .uptalk_progress_calculator_highlight_box strong {
      color: #f59e0b;
    }

    /* BUTTON */
    .uptalk_progress_calculator_btn {
      margin-top: 30px;
      background: linear-gradient(135deg, #f5c242, #eab308);
      border: none;
      padding: 14px 36px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.2s ease;
      color: #111;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .uptalk_progress_calculator_btn:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .uptalk_progress_calculator_wrapper {
        padding: 60px 0;
      }
      .uptalk_progress_calculator_title {
        font-size: 36px;
      }
      .uptalk_progress_calculator_results {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .uptalk_progress_calculator_card {
        padding: 28px 20px;
      }
      .uptalk_progress_calculator_box strong {
        font-size: 28px;
      }
    }

    /* animated number class */
    .animated-number {
      transition: all 0.2s ease;
    }