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

:root {
    --primary-color: #4F46E5;
    --secondary-color: #10B981;
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --text-color: #374151;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.notification-stack {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(360px, calc(100vw - 32px));
    z-index: 2000;
    pointer-events: none;
}

.notification-toast {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 36px rgba(31, 41, 55, 0.16);
    backdrop-filter: blur(14px);
    transform: translateY(-12px) scale(0.96);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: auto;
}

.notification-toast.is-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.notification-toast.is-leaving {
    transform: translateY(-10px) scale(0.97);
    opacity: 0;
}

.notification-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    box-shadow: inset 0 -6px 12px rgba(0,0,0,0.12);
}

.notification-copy strong {
    display: block;
    margin-bottom: 2px;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.notification-copy p {
    margin: 0;
    color: #4b5563;
    font-size: 0.92rem;
}

.notification-close {
    border: 0;
    background: transparent;
    color: #9ca3af;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    padding: 2px;
}

.notification-close:hover {
    color: var(--dark-color);
}

.notification-success .notification-icon {
    background: linear-gradient(135deg, #34d399, #10b981);
}

.notification-error .notification-icon {
    background: linear-gradient(135deg, #fb7185, #ef4444);
}

.notification-info .notification-icon {
    background: linear-gradient(135deg, #60a5fa, #4f46e5);
}

body.pricing-pending #heroOldPrice,
body.pricing-pending #heroNewPrice,
body.pricing-pending #starterOldPrice,
body.pricing-pending #starterCurrentPrice,
body.pricing-pending #starterPriceNote,
body.pricing-pending #professionalOldPrice,
body.pricing-pending #professionalCurrentPrice,
body.pricing-pending #professionalPriceNote,
body.pricing-pending #enterpriseOldPrice,
body.pricing-pending #enterpriseCurrentPrice,
body.pricing-pending #enterprisePriceNote {
    visibility: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login {
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #4338CA;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.2rem;
}

.new-price {
    font-size: 3rem;
    font-weight: bold;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.btn-hero {
    padding: 1rem 2rem;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.hero-illustration {
    text-align: center;
    opacity: 0.3;
}

.rating-box {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.stars {
    color: #FCD34D;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    color: #fff;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-color);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.best-deal {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-color);
}

.discount-badge {
    display: inline-block;
    background: var(--danger-color);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.price .current-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price .period {
    font-size: 1.2rem;
    color: var(--text-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pricing:hover {
    background: #4338CA;
    transform: translateY(-2px);
}

.price-guarantee {
    text-align: center;
    margin: 1rem 0;
    padding: 0.5rem;
    background: var(--light-color);
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--success-color);
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--success-color);
}

.money-back {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
}

.money-back h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card .stars {
    color: #FCD34D;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info strong {
    display: block;
    color: var(--dark-color);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-color);
}

.review-date {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #4338CA;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    padding: 1.25rem 0;
    font-size: 0.875rem;
}

/* Currency Switcher */
.currency-switcher {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3px;
    gap: 0;
    position: relative;
}

.currency-pill {
    position: absolute;
    height: calc(100% - 6px);
    top: 3px;
    background: var(--primary-color);
    border-radius: 18px;
    pointer-events: none;
    z-index: 0;
}

.currency-pill.ready {
    transition: left 0.22s cubic-bezier(0.4, 0, 0.2, 1), width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.currency-btn {
    padding: 4px 13px;
    border: none;
    border-radius: 18px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--text-color);
    transition: color 0.22s;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.currency-btn.active {
    color: #fff;
}

.currency-btn:not(.active):hover {
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 24px 16px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(2px);
    overflow: hidden;
}

.modal-content {
    background: #fff;
    margin: 0 auto;
    padding: 1.5rem;
    width: 90%;
    max-width: 480px;
    max-height: calc(100vh - 48px);
    border-radius: 16px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}

.modal-content h2 {
    margin-bottom: 1rem;
    padding-right: 2.5rem;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.close {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s;
    padding: 0;
}

.close:hover {
    color: var(--dark-color);
}

/* Plan summary card */
.selected-plan {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 1px solid #c4b5fd;
    border-left: 4px solid var(--primary-color);
    padding: 0.9rem 1.1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.selected-plan-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.selected-plan-icon {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.selected-plan h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
}

.selected-plan-billing {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.25);
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.selected-plan-price {
    font-size: 2rem;
    color: var(--dark-color);
    font-weight: 800;
    margin: 0.25rem 0 0;
    line-height: 1.1;
}

.selected-plan-period {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 400;
}

.selected-plan-divider {
    height: 1px;
    background: #c4b5fd;
    opacity: 0.5;
    margin: 0.6rem 0;
}

.selected-plan-total {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}

.selected-plan-total strong {
    color: var(--dark-color);
    font-weight: 700;
}

.selected-plan-currency-note {
    font-size: 0.72rem;
    color: #6B7280;
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.selected-plan-savings {
    font-size: 0.78rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0.1rem 0 0.35rem;
}

.selected-plan-savings i {
    margin-right: 3px;
}

.selected-plan-features {
    list-style: none;
    margin: 0 0 0.15rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.selected-plan-features li {
    font-size: 0.74rem;
    color: var(--text-color);
    background: rgba(79, 70, 229, 0.07);
    border: 1px solid rgba(79, 70, 229, 0.15);
    padding: 2px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.selected-plan-features li i {
    color: var(--secondary-color);
    font-size: 0.65rem;
}

/* Form */
#paymentForm {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

#paymentForm .form-group {
    margin-bottom: 0;
}

#paymentForm label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
}

#paymentForm .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#paymentForm .input-wrapper i {
    position: absolute;
    left: 0.9rem;
    color: #9ca3af;
    font-size: 0.82rem;
    pointer-events: none;
    transition: color 0.2s;
}

#paymentForm .input-wrapper:focus-within i:first-child {
    color: var(--primary-color);
}

#paymentForm .input-wrapper::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0.9rem;
    color: var(--success-color);
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

#paymentForm .input-wrapper.input-valid::after {
    opacity: 1;
}

#paymentForm .input-wrapper.input-valid input {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

#paymentForm .form-group input {
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 10px;
    border: 1.5px solid var(--border-color);
    background: #f9fafb;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-size: 0.95rem;
}

#paymentForm .form-group input:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

#card-errors {
    color: var(--danger-color);
    margin-top: 0.4rem;
    font-size: 0.875rem;
    min-height: 1.2em;
}

#submitPayment {
    margin-top: 0.25rem;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
    font-size: 1rem;
    letter-spacing: 0.01em;
}

#submitPayment:hover {
    background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
    transform: translateY(-1px);
}

#submitPayment i {
    font-size: 0.8rem;
    opacity: 0.85;
}

.payment-trust {
    text-align: center;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}

.payment-trust i {
    margin-right: 3px;
    color: var(--secondary-color);
}

.plan-switcher {
    text-align: center;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.6rem;
}

.plan-switch-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.15s;
}

.plan-switch-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.spinner {
    border: 2px solid rgba(255,255,255,0.35);
    border-top: 2px solid #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

.hidden {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

.modal-animate {
    animation: modalIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .currency-switcher {
        font-size: 0.72rem;
        padding: 2px;
    }

    .currency-btn {
        padding: 3px 10px;
        font-size: 0.72rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: start;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .modal {
        padding: 12px;
    }

    .modal-content {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 1.25rem;
        border-radius: 14px;
    }

    .modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .selected-plan {
        padding: 0.9rem 1rem;
        margin-bottom: 1rem;
    }

    .selected-plan-price {
        font-size: 1.65rem;
    }

    #paymentForm {
        gap: 0.75rem;
    }

    #paymentForm .form-group input,
    #submitPayment {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    #paymentForm .form-group input {
        padding-left: 2.5rem;
    }
}

/* Products Page */
.nav-link-active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.products-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #312e81 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.products-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.products-hero p {
    font-size: 1.15rem;
    opacity: 0.75;
    max-width: 560px;
    margin: 0 auto;
}

.products-section {
    padding: 80px 0;
    background: var(--light-color);
}

.product-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.product-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.product-card > p {
    color: var(--text-color);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-features li {
    font-size: 0.88rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.product-features li i {
    color: var(--secondary-color);
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.products-cta {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.products-cta h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.products-cta p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.btn-cta {
    padding: 0.85rem 2.5rem;
}
