/* ====================================
   REGISTER PAGE - CSS PROFESIONAL CORPORAT
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    line-height: 1.6;
    font-weight: 400;
}

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

/* Header Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #b91c1c;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #b91c1c;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b91c1c;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #b91c1c !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: #991b1b !important;
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e293b;
    transition: 0.3s;
}

/* Main Content */
.register-hero {
    padding: 140px 0 100px;
    position: relative;
}

.register-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(226, 232, 240, 0.6) 100%);
    z-index: -1;
}

.register-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Side */
.register-intro {
    padding: 40px 0;
}

.register-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-description {
    font-size: 20px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: white;
    border-color: #dc2626;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
    transform: translateY(-2px);
}

.benefit-item i {
    color: #059669;
    font-size: 22px;
    width: 28px;
    text-align: center;
    background: rgba(5, 150, 105, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.benefit-item span {
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
}

/* Right Side - Form */
.register-form-container {
    padding: 20px 0;
}

.register-form-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.register-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 50%, #dc2626 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.form-header p {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

/* Form Structure */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-step {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.form-step:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: #cbd5e1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e293b;
    padding-bottom: 16px;
    border-bottom: 3px solid #e2e8f0;
    position: relative;
}

.form-step h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 15px;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea {
    padding: 16px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Placeholder styling - foarte subtil, doar 55% vizibil */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cbd5e1;
    opacity: 0.55;
    font-weight: 400;
    font-style: italic;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.3;
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    background: #fefefe;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    font-size: 13px;
    color: #64748b;
    font-style: italic;
    font-weight: 500;
}

/* Form States */
.form-group input.is-success,
.form-group textarea.is-success {
    border-color: #059669;
    background-color: #f0fdf4;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

/* Username feedback styling */
#username-feedback {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
}

#username-feedback .success {
    color: #059669;
}

#username-feedback .error {
    color: #dc2626;
}

.form-group input.is-error,
.form-group textarea.is-error {
    border-color: #dc2626;
    background-color: #fef2f2;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-group input.is-warning,
.form-group textarea.is-warning {
    border-color: #d97706;
    background-color: #fffbeb;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

/* Buttons */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid #f1f5f9;
}

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: #fefefe;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Alerts */
.register-alert {
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    border-left: 4px solid;
}

.alert-success {
    background: #f0fdf4;
    color: #065f46;
    border-left-color: #059669;
}

.alert-error {
    background: #fef2f2;
    color: #7f1d1d;
    border-left-color: #dc2626;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
    color: #b91c1c;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .register-hero-content {
        gap: 60px;
    }
    
    .register-title {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .register-hero-content {
        gap: 50px;
    }
    
    .register-title {
        font-size: 38px;
    }
    
    .register-form-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .register-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .register-intro {
        text-align: center;
    }
    
    .register-title {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .register-form-card {
        padding: 32px 24px;
    }
    
    .form-step {
        padding: 24px 20px;
    }
    
    .register-title {
        font-size: 32px;
    }
    
    .register-hero {
        padding: 120px 0 80px;
    }
}

/* Subscription Info Section */
.subscription-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.subscription-info h3 {
    color: #1e293b;
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subscription-info h3::before {
    content: "🎯";
    font-size: 1.2rem;
}

.subscription-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.subscription-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #fef7f0 0%, #fef3ec 100%);
    border-bottom: 1px solid #fed7aa;
}

.subscription-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.subscription-details {
    flex: 1;
}

.subscription-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.subscription-period {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.subscription-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.monthly-price {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.total-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #dc2626;
}

.subscription-note {
    padding: 16px 24px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 0.95rem;
}

.subscription-note i {
    color: #3b82f6;
    font-size: 1rem;
}

/* Terms Agreement Styles */
.terms-agreement {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.checkbox-group {
    margin-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: #3b82f6;
    background-color: #f1f5f9;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    color: #475569;
    font-weight: 500;
}

.terms-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.terms-note {
    color: #64748b;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding-left: 32px;
}

.terms-note i {
    color: #3b82f6;
}

/* Submit Button Disabled State */
.btn.disabled,
.btn:disabled {
    background: #e2e8f0 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn.disabled:hover,
.btn:disabled:hover {
    background: #e2e8f0 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ====================================
   SUBSCRIPTION SELECTOR STYLES
   ==================================== */

.subscription-selector {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(185, 28, 28, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.08);
}

.subscription-selector h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subscription-description {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.subscription-options {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.selection-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* Module Cards */
.module-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.module-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(185, 28, 28, 0.1);
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: auto;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-card:hover {
    border-color: rgba(185, 28, 28, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.15);
}

.module-card:hover::before {
    opacity: 1;
}

.module-card.active {
    border-color: #b91c1c;
    background: rgba(254, 242, 242, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.2);
}

.module-card.active::before {
    opacity: 1;
}

/* Icon removed - no longer needed */

.module-card h4 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.module-price {
    color: #b91c1c;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Features removed - no longer needed */

/* Period Cards */
.period-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.period-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(185, 28, 28, 0.1);
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.period-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.period-card:hover {
    border-color: rgba(185, 28, 28, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 28, 28, 0.12);
}

.period-card:hover::before {
    opacity: 1;
}

.period-card.active {
    border-color: #b91c1c;
    background: rgba(254, 242, 242, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 28, 28, 0.2);
}

.period-card.active::before {
    opacity: 1;
}

.period-card h4 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

/* Discount badge removed - no longer needed */

.period-note {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Subscription Summary */
.subscription-summary {
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid #b91c1c;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.summary-details h4 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.summary-details p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.summary-pricing {
    text-align: right;
}

.summary-pricing .monthly-price {
    display: block;
    color: #b91c1c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.summary-pricing .total-price {
    display: block;
    color: #374151;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Responsive pentru subscription info */
@media (max-width: 768px) {
    .subscription-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .subscription-price {
        text-align: center;
    }
    
    .subscription-info {
        padding: 24px 20px;
    }
    
    .terms-agreement {
        padding: 20px;
    }
    
    .terms-note {
        padding-left: 0;
        margin-top: 12px;
    }
    
    .subscription-selector {
        padding: 24px 20px;
    }
    
    .module-cards {
        grid-template-columns: 1fr;
    }
    
    .period-cards {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .summary-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .summary-pricing {
        text-align: center;
    }
}