/* CSS Reset & Variables */
        :root {
            --bg-gradient: linear-gradient(135deg, #FFF9F5 0%, #FFEBE0 100%);
            --card-bg: rgba(255, 255, 255, 0.95);
            --text-main: #2D241F;
            --text-light: #7A6960;
            --primary-color: #E85D04;
            --primary-gradient: linear-gradient(135deg, #F48C06 0%, #E85D04 100%);
            --shadow-sm: 0 4px 12px rgba(232, 93, 4, 0.05);
            --shadow-lg: 0 16px 40px rgba(232, 93, 4, 0.12);
            --border-radius: 20px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        body {
            background: var(--bg-gradient);
            color: var(--text-main);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0,0,0,0.03);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .btn-header {
            background: var(--primary-gradient);
            color: white;
            text-decoration: none;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 12px rgba(232, 93, 4, 0.2);
            transition: var(--transition);
        }

        .btn-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(232, 93, 4, 0.3);
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px 40px;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-main);
        }

        .promo-code {
            display: inline-flex;
            align-items: center;
            background: #FFF1E6;
            border: 1px dashed var(--primary-color);
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 10px;
        }

        .promo-code span {
            background: var(--primary-color);
            color: white;
            padding: 2px 8px;
            border-radius: 6px;
            margin-left: 10px;
            font-size: 0.9rem;
        }

        /* Grid & Cards */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px 60px;
            flex: 1;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 32px 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(255,255,255,0.6);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: #FFEBE0;
        }

        .card-header {
            margin-bottom: 20px;
        }

        .product-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .price-wrap {
            margin-bottom: 24px;
        }

        .price {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
        }

        .price-period {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .features {
            list-style: none;
            margin-bottom: 30px;
            flex: 1;
        }

        .features li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 12px;
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        .btn-order {
            display: block;
            text-align: center;
            background: #FFF1E6;
            color: var(--primary-color);
            text-decoration: none;
            padding: 14px 0;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            transition: var(--transition);
        }

        .card:hover .btn-order {
            background: var(--primary-gradient);
            color: white;
            box-shadow: 0 4px 12px rgba(232, 93, 4, 0.25);
        }

        /* Footer */
        footer {
            background: #2D241F;
            color: rgba(255,255,255,0.7);
            text-align: center;
            padding: 40px 20px;
            font-size: 0.9rem;
            margin-top: auto;
        }

        footer p {
            margin-bottom: 8px;
        }

        /* Mobile jmsgw.com Adjustments */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .promo-code { font-size: 1rem; flex-direction: column; gap: 8px; padding: 16px; }
            .promo-code span { margin-left: 0; }
            .products-grid { grid-template-columns: 1fr; gap: 20px; }
            .card { padding: 24px 20px; }
        }