    :root {
        --primary-blue: #2563eb;
        --dark-navy: #0f172a;
        --soft-bg: #f8fafc;
        /* Unique Shape Radius */
        --shape-radius: 60px 20px 60px 20px;
        --card-radius: 40px 10px 40px 10px;
    }

    body {
        font-family: 'Anek Bangla', sans-serif;
        background-color: #ffffff;
        color: #1e293b;
        overflow-x: hidden;
    }

    /* --- Hero Section with Custom Shape --- */
    .hero-wrapper {
        background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
        padding: 120px 0 100px;
        color: white;
        /* নিচের দিকে একটি ইউনিক কার্ভ তৈরি করবে */
        clip-path: ellipse(160% 100% at 50% 0%);
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1.2;
    }

    .text-gradient {
        background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Hero Image with Glass & Shape */
    .hero-mockup {
        border-radius: var(--shape-radius);
        box-shadow: 0 40px 80px rgba(0,0,0,0.5);
        border: 2px solid rgba(255,255,255,0.1);
        width: 100%;
        max-width: 500px;
        display: block;
        margin: 0 auto;
        transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .hero-mockup:hover {
        transform: scale(1.03) rotate(1deg);
        border-radius: 20px 60px 20px 60px; /* Hover করলে শেপ চেঞ্জ হবে */
    }

    /* --- Benefit Cards with Unique Shapes --- */
    .benefit-card {
        padding: 50px 30px;
        background: #fff;
        border: 1px solid #f1f5f9;
        border-radius: var(--card-radius);
        transition: 0.4s;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(37, 99, 235, 0.1);
        border-color: var(--primary-blue);
        border-radius: 10px 40px 10px 40px;
    }

    .icon-shape {
        width: 90px;
        height: 90px;
        background: #eff6ff;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Organic Blob Shape */
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .benefit-card:hover .icon-shape {
        border-radius: 50%;
        background: var(--primary-blue);
    }

    /* --- Pricing Section (The Highlight) --- */
    .pricing-bg {
        padding: 100px 0;
        background: #fdfdfe;
    }

    .price-card {
        background: white;
        border-radius: var(--shape-radius);
        padding: 60px 40px;
        border: 2px solid #f1f5f9;
        height: 100%;
        transition: 0.5s;
        position: relative;
    }

    /* Starter Template Pack - Custom Shape */
    .starter-pack {
        border-bottom: 8px solid #cbd5e1;
    }

    /* Premium Unique Pack - Custom Shape */
    .premium-pack {
        background: var(--dark-navy);
        color: white;
        border: none;
        box-shadow: 0 40px 80px rgba(15, 23, 42, 0.2);
        border-radius: 20px 80px 20px 80px; /* একদম আলাদা শেপ */
    }

    @media (min-width: 992px) {
        .premium-pack { transform: scale(1.08); z-index: 5; }
        .premium-pack:hover { transform: scale(1.1) rotate(-1deg); }
    }

    .price-amount {
        font-size: 3.5rem;
        font-weight: 800;
        margin: 20px 0;
        color: var(--primary-blue);
    }

    .premium-pack .price-amount { color: #60a5fa; }
    .premium-pack .text-muted { color: #94a3b8 !important; }

    /* Custom Unique Buttons */
    .btn-shape {
        padding: 18px 35px;
        border-radius: 40px 10px 40px 10px; /* Unique button shape */
        font-weight: 700;
        font-size: 1.1rem;
        transition: 0.3s;
        text-decoration: none;
        display: inline-block;
        border: none;
    }

    .btn-starter-shape {
        background: #f1f5f9;
        color: var(--dark-navy);
    }

    .btn-premium-shape {
        background: var(--primary-blue);
        color: white;
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    }

    .btn-premium-shape:hover {
        border-radius: 10px 40px 10px 40px;
        color: white;
        transform: translateY(-3px);
    }

    /* Section Title Shape Header */
    .section-header {
        position: relative;
        display: inline-block;
        margin-bottom: 50px;
    }

    .section-header::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 12px;
        background: rgba(37, 99, 235, 0.1);
        border-radius: 50%;
        z-index: -1;
    }

    @media (max-width: 991px) {
        .hero-wrapper { padding: 60px 0; }
        .hero-title { font-size: 2.3rem; }
        .hero-mockup { margin-top: 40px; transform: none; border-radius: 40px 15px; }
        .premium-pack { margin-top: 30px; }
    }
        .price-wrapper {
        position: relative;
        padding-top: 20px;
    }
    
    .save-badge {
        position: absolute;
        top: -15px;
        right: 0;
        background: #ef4444;
        color: white;
        padding: 5px 15px;
        font-size: 0.8rem;
        font-weight: 800;
        border-radius: 50px 10px 50px 10px;
        box-shadow: 0 10px 20px rgba(239, 68, 68, 0.2);
        transform: rotate(5deg);
        z-index: 10;
    }

    .premium-pack .save-badge {
        background: #06b6d4;
        box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
        color: #0f172a;
    }

    .old-price-line {
        position: relative;
        display: inline-block;
        color: #94a3b8;
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .old-price-line::after {
        content: '';
        position: absolute;
        width: 110%;
        height: 2px;
        background: #ef4444;
        top: 50%;
        left: -5%;
        transform: rotate(-12deg);
    }

    .feature-list {
        list-style: none;
        padding: 0;
        text-align: left;
    }

    .feature-item {
        padding: 12px 0;
        border-bottom: 1px dashed rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
    }

    .premium-pack .feature-item {
        border-bottom: 1px dashed rgba(255,255,255,0.1);
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary-blue);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }

    .premium-pack .feature-icon {
        background: rgba(6, 182, 212, 0.2);
        color: #06b6d4;
    }
        :root {
        --scroll-speed: 10s; 
        --accent-blue: #2563eb;
        --text-dark: #0f172a;
        --text-muted: #64748b;
    }

    .journey-section-container {
        padding: 100px 0;
        background: #ffffff;
        overflow: hidden;
        position: relative;
    }

    /* Gradient Fades for Scroll */
    .journey-section-container::before,
    .journey-section-container::after {
        content: "";
        position: absolute;
        top: 0;
        width: 15%;
        height: 100%;
        z-index: 10;
        pointer-events: none;
    }
    .journey-section-container::before {
        left: 0;
        background: linear-gradient(to right, white, transparent);
    }
    .journey-section-container::after {
        right: 0;
        background: linear-gradient(to left, white, transparent);
    }

    /* Auto Scroll Track */
    .scroll-track {
        display: flex;
        width: max-content;
        animation: scroll var(--scroll-speed) linear infinite;
        padding: 40px 0;
    }

    .scroll-track:hover {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Card Styling */
    .journey-card {
        width: 320px;
        flex-shrink: 0;
        margin: 0 20px;
        text-align: center;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .journey-card:hover {
        transform: translateY(-10px);
    }

    /* Circular Brand Logo */
    .brand-circle {
        width: 120px;
        height: 120px;
        background: white;
        border-radius: 50%;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #f1f5f9;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        position: relative;
        padding: 15px;
    }

    .brand-circle img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
    }

    .date-tag {
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent-blue);
        color: white;
        font-size: 0.7rem;
        padding: 4px 14px;
        border-radius: 50px;
        font-weight: 800;
        white-space: nowrap;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    }

    .journey-desc h5 {
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .journey-desc p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.6;
        padding: 0 10px;
    }

    /* --- CTA Section --- */
    .ultimate-cta-wrapper {
        margin-top: 60px;
        padding: 0 20px;
    }

    .cta-glass-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(37, 99, 235, 0.15);
        border-radius: 100px;
        padding: 12px 40px;
        display: inline-flex;
        align-items: center;
        gap: 30px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
        max-width: 100%;
    }

    .cta-text-group { text-align: left; }
    .cta-main-text {
        display: block;
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--text-dark);
    }
    .cta-sub-text {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    .btn-glow {
        background: var(--accent-blue);
        color: white;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
        transition: 0.3s ease;
        display: flex;
        align-items: center;
        border: none;
    }

    .btn-glow:hover {
        background: #1d4ed8;
        transform: scale(1.05);
        color: white;
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
    }

    @media (max-width: 992px) {
        .cta-glass-card {
            flex-direction: column;
            border-radius: 35px;
            padding: 40px 30px;
            text-align: center;
        }
        .cta-text-group { text-align: center; }
        .journey-section-container::before, 
        .journey-section-container::after { width: 50px; }
    }