﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;

        }

        body {
            background-color: #f4f5f7; /* Sharekhan light gray backdrop */
            color: #22252a;

        }

        /* --- Layout Container --- */
        .pricing-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .pricing-header {
            margin-bottom: 50px;
        }

            .pricing-header h2 {
                font-size: 2.2rem;
                color: #22252a;
                text-transform: uppercase;
                font-weight: 800;
                letter-spacing: 0.5px;
            }

                .pricing-header h2 span {
                    border-bottom: 4px solid #f8c301; /* Sharekhan signature yellow bar */
                    padding-bottom: 5px;
                }

            .pricing-header p {
                margin-top: 20px;
                color: #666;
                font-size: 1.1rem;
            }

        /* --- Flex Wrap Grid --- */
        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            align-items: stretch; /* Forces equal heights on the same row */
        }

        /* --- Card Architecture --- */
        .pricing-card {
            background: #ffffff;
            border: 1px solid #e1e4e8;
            border-radius: 6px;
            padding: 40px 30px;
            flex: 1 1 320px; /* Flex-grow, flex-shrink, and base width */
            max-width: 380px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

            .pricing-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            }

            /* --- Sharekhan Premium/Featured Badge Styling --- */
            .pricing-card.featured {
                border: 2px solid #f8c301;
            }

                .pricing-card.featured::before {
                    content: "MOST POPULAR";
                    position: absolute;
                    top: -14px;
                    left: 50%;
                    transform: translateX(-50%);
                    background-color: #f8c301;
                    color: #22252a;
                    padding: 4px 16px;
                    font-size: 0.75rem;
                    font-weight: 700;
                    border-radius: 20px;
                    letter-spacing: 1px;
                }

        /* --- Card Content --- */
        .plan-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #22252a;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .price-box {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #f4f5f7;
        }

        .price {
            font-size: 2.8rem;
            font-weight: 800;
            color: #22252a;
        }

            .price span {
                font-size: 1rem;
                color: #666;
                font-weight: 400;
            }

        /* --- Features List --- */
        .features-list {
            list-style: none;
            text-align: left;
            margin-bottom: 35px;
            flex-grow: 1; /* Pushes the CTA buttons down evenly */
        }

            .features-list li {
                padding: 10px 0;
                color: #4a5568;
                font-size: 0.95rem;
                display: flex;
                align-items: center;
            }

                /* Minimalistic bullet indicator using Sharekhan Yellow */
                .features-list li::before {
                    content: "✓";
                    color: #f8c301;
                    font-weight: 900;
                    margin-right: 12px;
                    font-size: 1.1rem;
                }

        /* --- Buttons (CTA) --- */
        .pricing-btn {
            display: block;
            width: 100%;
            padding: 14px;
            text-align: center;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 4px;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        /* Charcoal Button Variant */
        .btn-dark {
            background-color: #22252a;
            color: #ffffff;
            border: 2px solid #22252a;
        }

            .btn-dark:hover {
                background-color: #f8c301;
                border-color: #f8c301;
                color: #22252a;
            }

        /* Yellow Button Variant */
        .btn-yellow {
            background-color: #f8c301;
            color: #22252a;
            border: 2px solid #f8c301;
        }

            .btn-yellow:hover {
                background-color: #22252a;
                border-color: #22252a;
                color: #ffffff;
            }
