
        :root {
            --homi-primary: #f76652;
            --homi-primary-dark: #e0533f;
            --homi-accent: #37384a;
            --homi-text: #37384a;
            --homi-muted: #6b6b7b;
            --homi-border: #e2e2e8;
            --homi-surface: #f9f9fb;
        }

        body {
            font-family: var(--e-global-typography-text-font-family);
            color: var(--homi-text);
            background-color: #fff;
        }

        .public-navbar {
            background: #fff;
            border-bottom: 1px solid var(--homi-border);
            padding: 1rem 0;
        }

        .public-navbar .navbar-brand img {
            height: 36px;
        }

        .public-navbar .navbar-brand span {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--homi-primary);
            letter-spacing: -0.5px;
        }

        .nav-login-btn {
            background: var(--homi-primary);
            color: #fff !important;
            border-radius: 8px;
            padding: 0.45rem 1.2rem !important;
            font-weight: 600;
            transition: background 0.2s;
        }

        .nav-login-btn:hover {
            background: var(--homi-primary-dark) !important;
        }

        .page-hero {
            background: linear-gradient(135deg, #f76652 0%, #e0533f 100%);
            color: white;
            padding: 4rem 0 3rem;
            text-align: center;
        }

        .page-hero h1 {
            font-family: var(--e-global-typography-secondary-font-family);
            font-size: clamp(1.9rem, 3.2vw, var(--e-global-typography-secondary-font-size));
            font-weight: var(--e-global-typography-secondary-font-weight);
            text-transform: var(--e-global-typography-secondary-text-transform);
            line-height: var(--e-global-typography-secondary-line-height);
            margin-bottom: 0.75rem;
        }

        .page-hero p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .plan-card {
            border: 1px solid var(--homi-border);
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .plan-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(247, 102, 82, 0.12);
        }

        .plan-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: linear-gradient(135deg, #fff1ee 0%, #ffe0da 100%);
        }

        .plan-card-img-placeholder {
            width: 100%;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #fff1ee 0%, #ffe0da 100%);
            color: var(--homi-primary);
            font-size: 3rem;
        }

        .plan-card-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .plan-badge {
            display: inline-flex;
            align-items: center;
            background: #fff1ee;
            color: var(--homi-primary);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.65rem;
            border-radius: 100px;
            margin-bottom: 0.75rem;
        }

        .plan-name {
            font-family: var(--e-global-typography-06a1534-font-family);
            font-size: clamp(1.3rem, 1.8vw, var(--e-global-typography-06a1534-font-size));
            font-weight: var(--e-global-typography-06a1534-font-weight);
            margin-bottom: 0.5rem;
            color: var(--homi-text);
        }

        .plan-description {
            color: var(--homi-muted);
            font-size: 0.92rem;
            line-height: 1.6;
            flex: 1;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--homi-primary);
            margin: 1rem 0 0.25rem;
        }

        .plan-price small {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--homi-muted);
        }

        .plan-duration {
            font-size: 0.85rem;
            color: var(--homi-muted);
            margin-bottom: 1.25rem;
        }

        .btn-plan-buy {
            background: var(--homi-primary);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 0.7rem 1.5rem;
            font-weight: 600;
            width: 100%;
            transition: background 0.2s;
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .btn-plan-buy:hover {
            background: var(--homi-primary-dark);
            color: #fff;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0;
            font-size: 0.9rem;
            color: var(--homi-text);
        }

        .feature-list li i {
            color: var(--homi-accent);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .checkout-section {
            background: var(--homi-surface);
            border-radius: 16px;
            border: 1px solid var(--homi-border);
            padding: 2rem;
        }

        .checkout-section h5 {
            font-family: var(--e-global-typography-18a0a44-font-family);
            font-size: clamp(1.2rem, 1.9vw, var(--e-global-typography-18a0a44-font-size));
            font-weight: var(--e-global-typography-18a0a44-font-weight);
            line-height: var(--e-global-typography-18a0a44-line-height);
            margin-bottom: 1.25rem;
            color: var(--homi-text);
        }

        .form-label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--homi-text);
        }

        .form-control,
        .form-select {
            border-radius: 8px;
            border: 1px solid var(--homi-border);
            padding: 0.6rem 0.9rem;
            font-size: 0.95rem;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--homi-primary);
            box-shadow: 0 0 0 3px rgba(247, 102, 82, 0.12);
        }

        .card-group-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--homi-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
            margin-top: 1.25rem;
        }

        .btn-checkout {
            background: var(--homi-accent);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 0.85rem 2rem;
            font-size: 1.05rem;
            font-weight: 700;
            width: 100%;
            transition: background 0.2s;
        }

        .btn-checkout:hover {
            background: var(--homi-primary-dark);
            color: #fff;
        }

        .btn-checkout:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .plan-detail-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: 16px;
        }

        .plan-detail-img-placeholder {
            width: 100%;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #fff1ee 0%, #ffe0da 100%);
            color: var(--homi-primary);
            font-size: 5rem;
            border-radius: 16px;
        }

        .plan-detail-price {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--homi-primary);
        }

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

        .section-divider {
            border-top: 1px solid var(--homi-border);
            margin: 1.5rem 0;
        }

        .module-chip {
            display: inline-flex;
            align-items: center;
            background: #fff1ee;
            color: #c4402e;
            border: 1px solid #ffb0a6;
            border-radius: 100px;
            padding: 0.3rem 0.75rem;
            font-size: 0.82rem;
            font-weight: 600;
            margin: 0.2rem;
        }

        .module-chip i {
            margin-right: 0.3rem;
        }

        .security-badges {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .security-badge {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            color: var(--homi-muted);
        }

        .security-badge i {
            color: var(--homi-accent);
        }

        .checkout-section-label {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--homi-muted);
            text-transform: uppercase;
            letter-spacing: 0.07em;
            margin-bottom: 0.85rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--homi-border);
        }

        .alert {
            border-radius: 10px;
        }
    
