/* ===== ABO PAGE - EXTRAVAGANT, MODERN, DEZENT ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6ab04c;
    --secondary: #7ec760;
    --accent: #5a9c3e;
    --dark: #1a1a1a;
    --text: #1a1a1a;
    --light: #f5f5f5;
    --gray: #888;
}

html {
    scroll-behavior: smooth;
}

/* =================== ANIMATIONS =================== */

@keyframes floatBlobMassive {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    }
    15% {
        transform: translateY(-150px) translateX(120px) scale(1.3) rotate(90deg);
    }
    30% {
        transform: translateY(-200px) translateX(180px) scale(1.4) rotate(180deg);
    }
    45% {
        transform: translateY(-120px) translateX(100px) scale(1.25) rotate(270deg);
    }
    60% {
        transform: translateY(100px) translateX(-150px) scale(1.35) rotate(360deg);
    }
    75% {
        transform: translateY(-80px) translateX(80px) scale(1.2) rotate(450deg);
    }
}

@keyframes floatBgOrbMassive {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    20% {
        transform: translate(200px, -150px) scale(1.4);
        opacity: 0.2;
    }
    40% {
        transform: translate(250px, 120px) scale(0.8);
        opacity: 0.15;
    }
    60% {
        transform: translate(100px, -100px) scale(1.3);
        opacity: 0.25;
    }
    80% {
        transform: translate(-150px, 150px) scale(1.1);
        opacity: 0.18;
    }
}

@keyframes cardHoverGlow {
    0% {
        box-shadow:
            0 20px 60px rgba(106, 176, 76, 0.3),
            0 0 40px rgba(106, 176, 76, 0.15);
    }
    50% {
        box-shadow:
            0 40px 100px rgba(106, 176, 76, 0.45),
            0 0 60px rgba(126, 199, 96, 0.25);
    }
    100% {
        box-shadow:
            0 20px 60px rgba(106, 176, 76, 0.3),
            0 0 40px rgba(106, 176, 76, 0.15);
    }
}

@keyframes slideInUpMassive {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

@keyframes slideInDownMassive {
    from {
        opacity: 0;
        transform: translateY(-50px) rotateX(20deg);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes buttonGlowPulse {
    0% {
        box-shadow:
            0 20px 50px rgba(106, 176, 76, 0.4),
            0 0 30px rgba(106, 176, 76, 0.2);
    }
    50% {
        box-shadow:
            0 20px 50px rgba(106, 176, 76, 0.5),
            0 0 40px rgba(106, 176, 76, 0.3);
    }
    100% {
        box-shadow:
            0 20px 50px rgba(106, 176, 76, 0.4),
            0 0 30px rgba(106, 176, 76, 0.2);
    }
}

@keyframes buttonWaveShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    80% {
        opacity: 0;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* =================== BODY & BACKGROUND =================== */

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* FLOATING BACKGROUND ORBS */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(106, 176, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(126, 199, 96, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(90, 156, 62, 0.07) 0%, transparent 50%);
    animation: floatBgOrbMassive 25s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

body::after {
    content: '';
    position: fixed;
    top: -30%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126, 199, 96, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBgOrbMassive 30s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: -1;
    filter: blur(50px);
}

/* =================== HERO SECTION =================== */

.hero-section {
    background: linear-gradient(135deg, #6ab04c 0%, #5a9c3e 15%, #4a8c2e 35%, #3d7a24 65%, #2d6b1f 100%);
    padding: 7rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    perspective: 1500px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlobMassive 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
    box-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlobMassive 30s ease-in-out infinite reverse;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.2);
}

.hero-section h1 {
    color: white;
    font-weight: 900;
    font-size: 4rem;
    text-shadow:
        0 25px 60px rgba(0, 0, 0, 0.75),
        0 0 50px rgba(255, 255, 255, 0.4),
        0 0 100px rgba(106, 176, 76, 0.3);
    letter-spacing: -3px;
    animation: slideInDownMassive 1.2s ease-out;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.99);
    font-size: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    animation: slideInDownMassive 1.4s ease-out;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 248, 0.95) 100%);
    backdrop-filter: blur(50px);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(106, 176, 76, 0.3);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInUpMassive 1s ease-out;
    animation-fill-mode: both;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-color: #6ab04c;
    box-shadow: 0 8px 30px rgba(106, 176, 76, 0.15);
    transform: translateY(-4px);
}

.feature-highlight:nth-child(1) { animation-delay: 0.4s; }
.feature-highlight:nth-child(2) { animation-delay: 0.6s; }
.feature-highlight:nth-child(3) { animation-delay: 0.8s; }


.feature-highlight i {
    margin-right: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* =================== PRICING CARDS =================== */

/* =================== PRICING GALLERY - ELEGANT 4-COLUMN LAYOUT =================== */

.pricing-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

/* === BASE CARD STYLING === */

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(106, 176, 76, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: slideInUpMassive 0.8s cubic-bezier(0.23, 1, 0.320, 1) both;
}

.pricing-card:nth-child(1) { animation-delay: 0.2s; }
.pricing-card:nth-child(2) { animation-delay: 0.35s; }
.pricing-card:nth-child(3) { animation-delay: 0.5s; }
.pricing-card:nth-child(4) { animation-delay: 0.65s; }


.card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-featured {
    border: 2px solid #fbbf24;
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}


/* === CARD SECTIONS === */

.card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6ab04c 0%, #7ec760 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    font-weight: 600;
}

.card-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #6ab04c;
    line-height: 1;
}

.card-featured .price-value {
    color: #f59e0b;
}

.price-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
}

.card-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(106, 176, 76, 0.2), transparent);
    margin: 1.25rem 0;
}

.card-trial-badge {
    background: linear-gradient(135deg, rgba(106, 176, 76, 0.08) 0%, rgba(126, 199, 96, 0.08) 100%);
    border: 1px solid rgba(106, 176, 76, 0.2);
    color: #5a9c3e;
    padding: 0.7rem 1rem;
    border-radius: 15px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.card-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #444;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.card-benefits li i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ab04c;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-benefits li.disabled {
    opacity: 1;
    color: #444;
}

.card-benefits li.disabled i {
    color: #999;
}

.card-action {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-start,
.btn-select {
    padding: 0.95rem 1.5rem;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-start {
    background: transparent;
    color: #6ab04c;
    border: 2px solid #6ab04c;
}


.btn-select {
    background: linear-gradient(135deg, #6ab04c 0%, #7ec760 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(106, 176, 76, 0.3);
    animation: buttonGlowPulse 3.5s ease-in-out infinite;
}

.btn-select::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}


.btn-featured {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}


/* === RESPONSIVE ===*/

@media (max-width: 1200px) {
    .pricing-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-featured {
        transform: scale(1);
    }


    .card-title {
        font-size: 1.2rem;
    }

    .price-value {
        font-size: 1.8rem;
    }

    .card-inner {
        padding: 0;
    }
}

/* ===== CARD COLOR VARIANTS ===== */

/* FREE CARD - Green */
.card-free {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdfb 100%);
    border-color: rgba(106, 176, 76, 0.2);
}

.card-free .card-icon {
    background: linear-gradient(135deg, #6ab04c 0%, #7ec760 100%);
}

.card-free .price-value {
    color: #6ab04c;
}

.card-free .btn-start {
    color: #6ab04c;
    border-color: #6ab04c;
}

.card-free .btn-start:hover {
    background: #6ab04c;
}

/* SINGLE CARD - Purple/Blue */
.card-single {
    background: linear-gradient(135deg, #f3f0ff 0%, #ede9fe 100%);
    border: 2px solid #8b5cf6;
}

.card-single .card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.card-single .price-value {
    color: #8b5cf6;
}

.card-single .btn-select {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.card-single .btn-select::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}


/* DUO CARD - Pink/Rose */
.card-duo {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    border-color: rgba(244, 63, 94, 0.2);
}

.card-duo.card-featured {
    border-color: #ec4899;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.card-duo .card-icon {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.card-duo .price-value {
    color: #ec4899;
}

.card-duo .btn-featured {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.card-duo .btn-featured::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.card-duo .btn-featured:hover {
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.4);
}

.card-duo .card-trial-badge {
    background: rgba(236, 72, 153, 0.08);
    border-color: rgba(236, 72, 153, 0.2);
    color: #db2777;
}

/* FAMILY CARD - Orange */
.card-family {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border: 2px solid #f97316;
}

.card-family .card-icon {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.card-family .price-value {
    color: #f97316;
}

.card-family .btn-select {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.card-family .btn-select::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}



.btn-large.btn-primary:active {
    transform: translateY(-3px);
}

/* =================== TABLE =================== */

.table-responsive {
    background: white;
    border-radius: 40px;
    padding: 0;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    animation: slideInUpMassive 1.2s ease-out;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.table {
    margin: 0;
    border-collapse: collapse;
}

.table thead {
    background: transparent;
}

.table thead th {
    padding: 2rem 1.5rem !important;
    font-weight: 900 !important;
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.table thead th:last-child {
    border-right: none !important;
}

.table thead th:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.9) 100%);
    color: #333 !important;
    border-right: 2px solid #f0f0f0;
}

.table thead th:nth-child(2) {
    background: linear-gradient(135deg, #6ab04c 0%, #7ec760 100%);
    color: white !important;
    box-shadow: inset 0 0 20px rgba(106, 176, 76, 0.2);
}

.table thead th:nth-child(3) {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white !important;
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.table thead th:nth-child(4) {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white !important;
    box-shadow: inset 0 0 20px rgba(236, 72, 153, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.table thead th:nth-child(5) {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white !important;
    box-shadow: inset 0 0 20px rgba(249, 115, 22, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.table tbody tr {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}


.table tbody td {
    padding: 1.8rem 1.5rem !important;
    vertical-align: middle;
    font-weight: 700 !important;
    color: #555;
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.table tbody td:last-child {
    border-right: none !important;
}

.table tbody td:nth-child(1) {
    font-weight: 900 !important;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.5);
}

/* Feature Icons */
.table tbody td i.fa-check {
    color: #6ab04c;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(106, 176, 76, 0.3));
}

.table tbody td i.fa-times {
    color: #ff6b6b;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Column-spezifische Textfarben */
.table tbody tr:nth-child(n) td:nth-child(2) {
    color: #6ab04c;
    font-weight: 800;
}

.table tbody tr:nth-child(n) td:nth-child(3) {
    color: #8b5cf6;
    font-weight: 800;
}

.table tbody tr:nth-child(n) td:nth-child(4) {
    color: #ec4899;
    font-weight: 800;
}

.table tbody tr:nth-child(n) td:nth-child(5) {
    color: #f97316;
    font-weight: 800;
}

/* =================== ACCORDION =================== */

.accordion-section {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.accordion-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -2px;
    animation: slideInDownMassive 1s ease-out;
}

.accordion-section p {
    font-size: 1.15rem;
    color: #999;
    font-weight: 800;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white !important;
    border-radius: 25px !important;
    overflow: hidden;
    margin-bottom: 2rem !important;
    border: 2px solid #f0f0f0 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: slideInUpMassive 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    animation-fill-mode: both;
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #ccc;
    z-index: 99;
    pointer-events: none;
}

.accordion-item:nth-child(1) { animation-delay: 0.2s; }
.accordion-item:nth-child(1)::before { background: linear-gradient(180deg, #6ab04c 0%, #7ec760 100%); }

.accordion-item:nth-child(2) { animation-delay: 0.35s; }
.accordion-item:nth-child(2)::before { background: linear-gradient(180deg, #8b5cf6 0%, #a78bfa 100%); }

.accordion-item:nth-child(3) { animation-delay: 0.5s; }
.accordion-item:nth-child(3)::before { background: linear-gradient(180deg, #ec4899 0%, #f472b6 100%); }

.accordion-item:nth-child(4) { animation-delay: 0.65s; }
.accordion-item:nth-child(4)::before { background: linear-gradient(180deg, #f97316 0%, #fb923c 100%); }

.accordion-item:nth-child(5) { animation-delay: 0.8s; }
.accordion-item:nth-child(5)::before { background: linear-gradient(180deg, #06b6d4 0%, #22d3ee 100%); }

.accordion-button {
    background: white !important;
    color: var(--text) !important;
    font-weight: 900;
    padding: 2rem 2.2rem !important;
    border: none !important;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 3rem !important;
    display: flex;
    align-items: center;
}

.accordion-button::after {
    content: '▼';
    width: auto !important;
    height: auto !important;
    background: transparent;
    border: none;
    border-radius: 0;
    position: absolute;
    right: 2rem;
    margin-left: 0 !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: currentColor;
    font-weight: bold;
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 0.95) 100%) !important;
    color: var(--text) !important;
    border-radius: 25px 25px 0 0;
}

.accordion-item:nth-child(1) .accordion-button:not(.collapsed) {
    color: #6ab04c !important;
}

.accordion-item:nth-child(2) .accordion-button:not(.collapsed) {
    color: #8b5cf6 !important;
}

.accordion-item:nth-child(3) .accordion-button:not(.collapsed) {
    color: #ec4899 !important;
}

.accordion-item:nth-child(4) .accordion-button:not(.collapsed) {
    color: #f97316 !important;
}

.accordion-item:nth-child(5) .accordion-button:not(.collapsed) {
    color: #06b6d4 !important;
}


.accordion-body {
    padding: 2.5rem 2.2rem !important;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 600;
    border-top: 1px solid #f0f0f0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 252, 255, 0.5) 100%);
}

/* =================== CTA SECTION =================== */

.cta-section {
    background: linear-gradient(135deg, #6ab04c 0%, #7ec760 50%, #5a9c3e 100%);
    border-radius: 50px;
    padding: 8rem 5rem !important;
    position: relative;
    overflow: hidden;
    margin: 8rem auto 4rem !important;
    z-index: 1;
    box-shadow: 0 30px 80px rgba(106, 176, 76, 0.25);
    max-width: 1200px;
    display: block !important;
    width: calc(100% - 4rem) !important;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlobMassive 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlobMassive 26s ease-in-out infinite reverse;
    z-index: 0;
    pointer-events: none;
    filter: blur(90px);
}

.cta-section h2 {
    color: white;
    font-weight: 900;
    font-size: 3.2rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin: 0 auto 3rem;
    line-height: 1.6;
    max-width: 700px;
}

.cta-section .btn-light {
    background: white;
    color: #6ab04c;
    border: none;
    font-weight: 900;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    z-index: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-right: 1.5rem;
}

.cta-section .btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 176, 76, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}


.cta-section .btn-outline-light {
    border: 3px solid white;
    color: white;
    font-weight: 900;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    z-index: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: transparent;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-section .btn-outline-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}


.cta-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    letter-spacing: 0.3px;
}

.cta-info::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* =================== RESPONSIVE =================== */

@media (max-width: 1024px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }

    .table-responsive {
        border-radius: 30px;
    }

    .cta-section {
        padding: 4rem 2rem !important;
    }
}

@media (max-width: 700px) {
    .hero-section h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .feature-highlight {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .pricing-card {
        margin-bottom: 1.5rem;
    }

    .plan-title {
        font-size: 1.6rem;
    }

    .table-responsive {
        padding: 1.5rem;
        border-radius: 25px;
    }

    .table thead th {
        padding: 1.2rem 0.75rem !important;
        font-size: 0.85rem !important;
    }

    .table tbody td {
        padding: 1rem 0.75rem !important;
        font-size: 0.9rem !important;
    }

    .accordion-section h2 {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 3rem 1.5rem !important;
        border-radius: 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section .btn-light,
    .cta-section .btn-outline-light {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .plan-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .pricing-card {
        border-radius: 25px;
    }
}
