.hero { padding: 0px 0 16px; position: relative; overflow: hidden; }
.hero::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    opacity: 0.5;
}
.hero .layer {
    position: absolute; height: 300px;
    background: radial-gradient(60% 120% at 50% 10%, rgba(138, 99, 210, .35), transparent 60%);
    filter: blur(40px); animation: float 8s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero .head { display: grid; grid-template-columns: 1fr 0.6fr; gap: 64px; align-items: center; }
.hero-content-area { min-width: 0; }
.hero .h1 { font-size: 48px; line-height: 1.1; margin: 12px 0; font-weight: 900; letter-spacing: -1px; }
.hero .lead { color: var(--text-dark); font-size: 18px; margin-top: 12px; max-width: 550px; }
.hero-mascot-area {
    display: flex; justify-content: center; align-items: center;
    align-self: stretch; min-height: 250px; 
}
.hero-mascot-image {
    max-width: 100%; height: 100%; object-fit: contain;
}
.hero .badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 999px; font-weight: 600;
    background: rgba(138, 99, 210, .15); color: #d7c8ff;
    border: 1px solid rgba(138, 99, 210, .2);
}
@media(max-width: 1024px) { 
    .hero .head { grid-template-columns: 1fr; } 
    .hero-mascot-area { margin-top: 32px; max-height: 250px; }
}
.packages-page {
    padding-top: 100px;
    background: radial-gradient(1200px 800px at 10% -20%, #2a1a59 0%, transparent 60%), radial-gradient(1000px 700px at 120% 10%, #2d0b3a 0%, transparent 60%), linear-gradient(180deg, #090510 0%, #0b0616 100%);
}

.page-header {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 80px;
}

.page-header .h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

.page-header .lead {
    font-size: 1.125rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 15px auto 0 auto;
}

.section {
    padding: 0 0 80px 0;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px auto;
}

.h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.sub {
    color: var(--text-dark);
    margin: 8px 0 0;
}

.switch {
    display: inline-flex;
    margin-top: 30px;
    padding: 6px;
    border-radius: 99px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.switch label {
    padding: 8px 20px;
    border-radius: 99px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.switch input { display: none; }
.switch input:checked + label {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(138, 99, 210, 0.3);
}

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.price {
    display: flex;
    flex-direction: column;
    padding: 35px;
    border-radius: 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price.popular {
    transform: translateY(-20px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(138, 99, 210, 0.2);
}

.price .ribbon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 22px 0 12px;
}

.price h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price .amount .cur {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 4px;
    color: var(--text-dark);
}

.price .amount .per {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 400;
}

.price ul {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    flex-grow: 1;
}

.price ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.price ul li svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.price .btn {
    width: 100%;
}

.feature-table-wrapper {
    background: rgba(29, 41, 57, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 8px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 700px;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
}

.comparison-table thead th {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.comparison-table thead th:first-child,
.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
}

.comparison-table tbody tr {
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:not(.group-header):hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.comparison-table tbody td {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-of-type td {
    border-bottom: none;
}

.comparison-table .group-header td {
    background-color: rgba(16, 24, 32, 0.5);
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    padding: 10px 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comparison-table tbody tr:first-of-type .group-header td {
    border-top: none;
}

.comparison-table .check, .comparison-table .cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.comparison-table .check {
    background-color: rgba(52, 211, 153, 0.2);
    color: #34D399;
}

.comparison-table .cross {
    background-color: rgba(248, 113, 113, 0.2);
    color: #F87171;
}

@media(max-width: 992px) {
    .pricing {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .pricing {
        grid-template-columns: 1fr;
    }
    .price.popular {
        transform: translateY(0);
    }
}
.collapsible-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.toggle-features-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 99px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.toggle-features-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(138, 99, 210, 0.3);
}
.toggle-features-btn svg {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.collapsible-table.is-open .toggle-features-btn svg {
    transform: rotate(180deg);
}
.table-content-wrapper {
    width: 100%;
    transition: max-height 0.7s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}
.collapsible-table.is-open .table-content-wrapper {
    max-height: 2000px; /* İçerik boyuna göre ayarlanabilir, yüksek bir değer */
    opacity: 1;
    visibility: visible;
    overflow: visible; /* Açıkken taşmaları göster */
}
.feature-table-wrapper {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 700px;
}
.comparison-table th, .comparison-table td {
    padding: 18px 22px;
    text-align: center;
    vertical-align: middle;
}
.comparison-table thead th {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    background: rgba(29, 41, 57, 0.4);
}
.comparison-table thead th:first-child { border-radius: 18px 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 18px 0 0; }
.comparison-table thead th:first-child,
.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-light);
}
.comparison-table tbody tr:nth-child(even):not(.group-header) {
    background-color: rgba(16, 24, 32, 0.5);
}
.comparison-table tbody tr:not(.group-header):hover {
    background-color: rgba(138, 99, 210, 0.1);
}
.comparison-table tbody td {
    border-bottom: 1px solid var(--border-color);
}
.comparison-table tbody tr:last-of-type td {
    border-bottom: none;
}
.comparison-table .group-header td {
    background-color: var(--bg-light);
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    padding: 12px 22px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.comparison-table tbody tr:first-of-type .group-header td {
    border-top: none;
}
.marquee {
    margin-top: 24px;
    display: flex;
    gap: 24px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee .track {
    display: flex;
    gap: 24px;
    animation: run 40s linear infinite;
}
@keyframes run {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.badge-lg {
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--border-color);
    font-weight: 700;
    text-decoration: none;
    color: var(--text-light);
    transition: background-color 0.2s;
    white-space: nowrap;
}
.badge-lg:hover {
    background-color: rgba(255, 255, 255, .15);
}