/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #312e81 0%, #5840f4 50%, #25218e 100%);
    color: white;
    padding: 120px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDE2YzAtNi42MjcgNS4zNzMtMTIgMTItMTJzMTIgNS4zNzMgMTIgMTItNS4zNzMgMTItMTIgMTItMTItNS4zNzMtMTItMTJ6bTAgMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMnMxMiA1LjM3MyAxMiAxMi01LjM3MyAxMi0xMiAxMi0xMi01LjM3My0xMi0xMnoiLz48L2c+PC9nPjwvc3ZnPg==');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 500;
}

.icon-sparkle {
    color: #fbbf24;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: #c7d2fe;
    line-height: 1.6;
}

/* Build Future */
.build-future {
    text-align: center;
    align-items: center;
}

.author-image {
    display: block;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    color: #1a202c;
    font-weight: 700;
    font-size: 2rem;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 25px 50px rgba(251, 191, 36, 0.5);
}

.cta-button.large {
    padding: 20px 48px;
    font-size: 1.25rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.white-bg {
    background: white;
}

.light-bg {
    background: #f9fafb;
}

.blue-gradient {
    background: linear-gradient(135deg, #2128a8 0%, #4c1d95 100%);
    color: white;
}

.dark-gradient {
    background: linear-gradient(135deg, #1e1b4b 0%, #504af3 100%);
    color: white;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.section-header.light {
    color: white;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box svg {
    color: white;
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.red-gradient {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}

.yellow-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.icon-box-large {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 48px;
}

.light-text {
    color: white;
}

/* Content Blocks */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.bold-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.italic-text {
    font-style: italic;
    color: #4c1d95;
}

.centered-bold {
    text-align: center;
    font-weight: 700;
    font-size: 1.375rem;
    padding: 24px 0;
    color: #4c1d95;
}

.highlight-box {
    background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 100%);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #c7d2fe;
    margin: 32px 0;
}

.highlight-text {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.warning-box {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 24px;
    margin: 32px 0;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.stats-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.5rem;
}

.benefits-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 16px;
    margin: 32px 0;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.25rem;
}

.highlight-word {
    color: #fbbf24;
    font-weight: 600;
}

.yellow-text {
    color: #fbbf24;
}

/* Power Statement */
.power-statement {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 24px;
}

.divider {
    height: 4px;
    width: 96px;
    background: linear-gradient(90deg, #fbbf24 0%, #f97316 100%);
    margin: 32px auto;
}

.power-subtext {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.benefit-icon svg {
    color: white;
}

.benefit-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6b21a8 100%);
}

.benefit-icon.pink {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.benefit-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #6b7280;
    font-size: 1rem;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.experience-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.experience-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.experience-icon svg {
    color: white;
}

.experience-icon.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.experience-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.experience-icon.pink {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.experience-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6b21a8 100%);
}

.experience-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.experience-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.experience-card p {
    color: #6b7280;
}

/* Phases */
.phases-container {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}

.phase-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.phase-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    color: #1a202c;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phase-card h3 {
    color: white;
    margin-bottom: 12px;
}

.phase-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.pricing-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card.core-system {
    border: 2px solid #e5e7eb;
}

.pricing-card.bonuses {
    border: 2px solid #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.pricing-list {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.bonus-value {
    color: #f97316;
    font-weight: 700;
    margin-right: 8px;
}

.price-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 2px solid #e5e7eb;
}

.value-label {
    font-weight: 600;
    color: #6b7280;
}

.value-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
}

/* Order Form Container */
.order-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.order-options {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual Order Option */
.order-option {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0;
    width: 400px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Option Headers */
.option-header {
    padding: 30px 30px 20px;
    text-align: center;
}

.payment-plan .option-header {
    background-color: #e8e9ea;
}

.single-payment .option-header {
    background-color: #ffd700;
}

.option-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #1a1a1a;
}

.option-header h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    color: #1a1a1a;
}

/* Best Value Badge */
.best-value-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: #ff4444;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Option Content */
.option-content {
    padding: 20px 30px 30px;
    text-align: center;
}

.option-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Price Display */
.price-display {
    margin-bottom: 30px;
}

.original-price {
    display: block;
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current-price {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.payment-terms {
    display: block;
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Buy Button */
.buy-button {
    background-color: #ff9933;
    color: white;
    border: none;
    padding: 15px 60px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.buy-button:hover {
    background-color: #e68a2e;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.payment-methods img {
    height: 30px;
    width: auto;
}

/* Price Note */
.price-note {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .order-options {
        flex-direction: column;
        align-items: center;
    }

    .order-option {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .option-header h3 {
        font-size: 24px;
    }

    .current-price {
        font-size: 36px;
    }

    .buy-button {
        padding: 12px 40px;
        font-size: 16px;
    }
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #6b7280;
}

/* Choice Cards */
.choice-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.choice-card {
    padding: 32px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.choice-card.future-a {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.choice-card.future-b {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
}

.choice-card h3 {
    color: white;
    margin-bottom: 16px;
}

.choice-card p {
    color: rgba(255, 255, 255, 0.9);
}

.choice-question {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 32px 0;
}

.support-text {
    margin-top: 24px;
    font-size: 0.875rem;
}

.support-text a {
    color: #fbbf24;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 48px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* CTA Center */
.cta-center {
    text-align: center;
    margin: 48px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.erm-reviews-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
    /* Matches your body font */
    color: #333;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.erm-reviews-title {
    font-family: serif;
    /* Matches your elegant headings */
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.erm-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
}

.erm-review-card {
    background: #f9fbfb;
    /* Subtle brand-aligned tint */
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.erm-review-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
}

.erm-review-attribution {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.erm-narrative-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
    color: #333;
    line-height: 1.8;
}

.erm-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.erm-narrative-title {
    font-family: serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.erm-narrative-text {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.erm-highlight-box {
    background-color: #f4f7f7;
    /* Matches the site's soft teal/grey tint */
    padding: 50px 40px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid #1a1a1a;
}

.erm-question {
    font-family: serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 15px;
    display: block;
}

.erm-accent-text {
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.erm-footer-note {
    font-size: 1.3rem;
    font-family: serif;
    color: #1a1a1a;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}



/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .power-statement {
        font-size: 1.5rem;
    }

    .power-subtext {
        font-size: 1.125rem;
    }

    .your-investment .amount.final {
        font-size: 3rem;
    }

    .benefits-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .phase-card {
        flex-direction: column;
    }

    .pricing-container,
    .choice-container {
        grid-template-columns: 1fr;
    }

    .erm-reviews-title {
        font-size: 1.8rem;
    }

    .erm-reviews-section {
        padding: 50px 20px;
    }

    .erm-narrative-title {
        font-size: 2rem;
    }

    .erm-question {
        font-size: 1.3rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


.pricing-flex-container {
    display: flex;
    align-items: center; /* Centers the plus sign vertically */
    justify-content: center;
    gap: 30px; /* Controls the space between cards */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .pricing-card {
    flex: 1; /* Ensures both cards take up equal space */
    min-width: 320px; /* Prevents them from getting too narrow */
    max-width: 500px;
  }

  .plus-divider {
    font-size: 5rem;
    font-weight: 200; /* Thin, elegant plus sign */
    color: #1a1a1a;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
  }

  /* Responsive: Stack them on mobile */
  @media (max-width: 991px) {
    .pricing-flex-container {
      flex-direction: column;
    }
    .plus-divider {
      margin: 10px 0;
      font-size: 4rem;
    }
    .pricing-card {
      width: 100%;
      max-width: 100%;
    }
  }


  /* Styling for the Plus Sign */
.pricing-plus-sign {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem; /* Makes it BIG */
    font-weight: 700;
    color: #ff3c00; /* Gold color to match a premium feel, or change to #000 for black */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin: 0 20px; /* Space between cards on desktop */
    line-height: 1;
}

/* Ensure it works with the flex layout of the container */
.pricing-container {
    display: flex;
    align-items: center; /* Vertically centers the plus sign between cards */
    justify-content: center;
    flex-wrap: wrap; /* Allows stacking on mobile */
}

/* Mobile adjustments: when cards stack vertically */
@media (max-width: 768px) {
    .pricing-plus-sign {
        margin: 10px 0; /* Vertical space when stacked */
        font-size: 4rem;
        width: 100%; /* Forces it to stay on its own line in the center */
        text-align: center;
    }
}

    .erm-section {
        padding: 60px 20px;
        max-width: 900px;
        margin: 0 auto;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        line-height: 1.7;
        color: #333;
    }

    .erm-card {
        background: #fff;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid #f0f0f0;
        text-align: center;
    }

    .guarantee-box {
        border: 2px solid #d4af37;
        background-color: #fdfaf2;
    }

    .erm-button {
        display: inline-block;
        background-color: #d4af37;
        color: #fff;
        padding: 20px 40px;
        font-size: 1.2rem;
        font-weight: bold;
        text-decoration: none;
        border-radius: 50px;
        margin-top: 25px;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .erm-button:hover {
        background-color: #c4a030;
        transform: translateY(-2px);
    }

    .cost-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
        text-align: left;
    }

    .cost-item {
        background: #fdfdfd;
        padding: 25px;
        border-radius: 10px;
        border-left: 4px solid #b22222;
    }

    .highlight-red { color: #b22222; font-weight: bold; }
    .highlight-gold { color: #d4af37; font-weight: bold; }
    
