/* ========================================
   PLANTILLASPRO - DISEÑO STRIPE PERFECTO
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Sohne:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/sohne');

:root {
    --stripe-purple: #635BFF;
    --stripe-blue: #0073E6;
    --stripe-green: #00D924;
    --text-dark: #0A2540;
    --text-gray: #425466;
    --text-light: #697386;
    --bg-light: #F6F9FC;
    --border: #E3E8EE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sohne', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: white;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
}

.navbar.scrolled .nav-brand h1 {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.navbar.scrolled .nav-links a {
    color: var(--text-gray);
}

.nav-links a:hover {
    color: white;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--text-dark);
}

/* ==================== BUTTONS ==================== */
.btn-primary,
.btn-secondary {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-primary {
    background: white;
    color: var(--stripe-purple);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .btn-primary {
    background: var(--stripe-purple);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .btn-secondary {
    background: transparent;
    color: var(--text-gray);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.navbar.scrolled .btn-secondary:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg,
            #FF6B6B 0%,
            #FF8E53 20%,
            #FE6B8B 40%,
            #C471ED 60%,
            #9B59B6 80%,
            #667EEA 100%);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    perspective: 1000px;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    animation: fadeInUp 0.8s ease;
}

.hero-title .gradient-text {
    color: rgba(10, 37, 64, 0.9);
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-note {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Preview Cards */
.hero-preview {
    position: relative;
    z-index: 2;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.preview-card-floating {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow:
        0 50px 100px -20px rgba(50, 50, 93, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 -2px 6px 0 rgba(10, 37, 64, 0.35);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-width: 340px;
    margin: 0 auto;
}

.hero-preview:hover .preview-card-floating {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.preview-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

.preview-search {
    background: #F6F9FC;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-gray);
    cursor: pointer;
}

.preview-template {
    text-align: center;
    margin-bottom: 24px;
}

.template-thumb {
    width: 80px;
    height: 100px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin: 0 auto 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.template-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.template-colors {
    display: flex;
    gap: 4px;
}

.template-colors span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.template-info h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.template-info p {
    font-size: 13px;
    color: var(--text-gray);
}

.preview-pay-btn {
    background: #0A2540;
    color: white;
    width: 100%;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 16px;
    cursor: pointer;
    font-family: inherit;
}

.preview-divider {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
    position: relative;
}

.preview-divider::before,
.preview-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #E3E8EE;
}

.preview-divider::before {
    left: 0;
}

.preview-divider::after {
    right: 0;
}

.preview-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #E3E8EE;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 13px;
    font-family: inherit;
}

.preview-card-info {
    background: #F6F9FC;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #E3E8EE;
}

.preview-info-label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.stats-card {
    position: absolute;
    right: -40px;
    bottom: 40px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 240px;
    animation: floatCard 7s ease-in-out infinite reverse;
}

.stats-header {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stats-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.stats-label {
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

/* ==================== SECTIONS ==================== */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== FEATURES ==================== */
.features {
    padding: 8rem 0;
    background: white;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 16px;
    background: white;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--stripe-purple);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--stripe-purple) 0%, #818CF8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 16px rgba(99, 91, 255, 0.3);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* ==================== PRICING IMPACTANTE ==================== */
.pricing {
    padding: 8rem 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1500px;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
    transform-style: preserve-3d;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.pricing-card:hover {
    transform: translateY(-20px) rotateX(-5deg) scale(1.05);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(99, 91, 255, 0.1),
        inset 0 0 60px rgba(99, 91, 255, 0.05);
    border-color: var(--stripe-purple);
    z-index: 10;
}

.pricing-card.featured {
    border-color: var(--stripe-purple);
    background: linear-gradient(135deg, #ffffff 0%, #f8f7ff 100%);
    box-shadow: 0 20px 50px rgba(99, 91, 255, 0.25);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-20px) rotateX(-5deg) scale(1.1);
}

.badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--stripe-purple) 0%, #FF6B9D 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(99, 91, 255, 0.5);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 8px 20px rgba(99, 91, 255, 0.5);
    }

    50% {
        box-shadow: 0 12px 30px rgba(99, 91, 255, 0.7);
    }
}

.pricing-card h3 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--stripe-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.5rem 0;
    letter-spacing: -0.03em;
    position: relative;
}

.price::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--stripe-purple) 0%, transparent 100%);
    border-radius: 2px;
}

.price-note {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.875rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.features-list li:hover {
    transform: translateX(5px);
    color: var(--stripe-purple);
}

.features-list li::before {
    content: '✓';
    color: var(--stripe-green);
    font-weight: 700;
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 36, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-card:nth-child(1) {
    transition-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    transition-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    transition-delay: 0.3s;
}

.pricing-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* ==================== MODALS STRIPE FULL-SCREEN ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667EEA 0%, #C471ED 25%, #F7797D 50%, #FBD786 75%, #667EEA 100%);
    animation: modalFadeIn 0.4s ease;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Registro - Layout 2 columnas */
.modal.register-modal .modal-content {
    display: grid;
    grid-template-columns: 400px 500px;
    gap: 0;
    max-width: 900px;
    margin: 4rem auto;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    animation: modalSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-info {
    background: #F6F9FC;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.modal-info p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-form {
    background: white;
    padding: 3.5rem 3rem;
}

/* Modal Login - Centrado */
.modal.login-modal .modal-content {
    background: white;
    margin: 8% auto;
    padding: 3.5rem;
    border-radius: 16px;
    max-width: 480px;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.modal-content label,
.modal-content .subtitle {
    display: block;
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-content input {
    width: 100%;
    padding: 0.875rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

.modal-content input:focus {
    outline: none;
    border-color: var(--stripe-purple);
    box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.1);
}

.modal-content .btn-primary {
    width: 100%;
    background: var(--stripe-purple);
    color: white;
    padding: 0.875rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.modal-content .btn-primary:hover {
    background: #5651DF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.4);
}

.modal-content p {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.modal-content a {
    color: var(--stripe-purple);
    text-decoration: none;
    font-weight: 600;
}

.modal-content a:hover {
    text-decoration: underline;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: var(--text-dark);
}

/* ====================DASHBOARD ==================== */
.dashboard {
    padding: 4rem 0;
    min-height: calc(100vh - 80px);
}

.dashboard h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.dashboard-subtitle {
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.category-card:hover {
    border-color: var(--stripe-purple);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--stripe-purple) 0%, #818CF8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.credits-badge {
    background: var(--stripe-purple);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9375rem;
}

/* ==================== EDITOR ==================== */
.editor-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    height: calc(100vh - 80px);
}

.editor-sidebar {
    background: var(--bg-light);
    padding: 2rem;
    border-right: 1px solid var(--border);
    overflow-y: auto;
}

.editor-sidebar h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.editor-canvas {
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #F3F4F6;
    overflow-y: auto;
}

#template-preview {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    min-width: 700px;
    min-height: 500px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

/* ==================== TOAST ==================== */
#toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 3000;
}

.toast {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
    animation: slideIn 0.3s ease;
    border-left: 4px solid var(--stripe-green);
}

.toast.error {
    border-left-color: #EF4444;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==================== ANIMATIONS ==================== */
.arrow-animated {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-left: 6px;
}

.btn-secondary:hover .arrow-animated {
    transform: translateX(5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-preview {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .modal.register-modal .modal-content {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .modal-info {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .editor-container {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}