/* =========================================
   BASE
========================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f6f8fb;
    color: #1b2b3a;
}

/* =========================================
   SECTION
========================================= */

.plans-section {
    padding: 40px 20px;
}

.plans-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* =========================================
   HEADINGS
========================================= */

.plans-container h1 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #06283D;
}

.subtitle {
    font-size: 17px;
    color: #5b6875;
    line-height: 1.6;
}

.hint {
    font-size: 14px;
    color: #0e7490;
    font-weight: 600;
    margin-bottom: 25px;
}

/* =========================================
   TABS
========================================= */

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tab-button {
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    background: #e6eef5;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s ease;
    color: #06283D;
}

.tab-button:hover {
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, #06283D, #0e7490);
    color: #fff;
    border-color: transparent;
}

/* =========================================
   TAB SYSTEM
========================================= */

.tab-wrapper {
    width: 100%;
    min-height: 650px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* =========================================
   TABLE (PREMIUM BASE)
========================================= */

.plans-table {
    width: 100%;
    border-collapse: collapse;

    background: #fff;
    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    table-layout: fixed;
}

/* COLUMN STRUCTURE */
.plans-table th,
.plans-table td {
    width: 16.66%;
    text-align: center;
    vertical-align: middle;
}

/* FIRST COLUMN BIGGER */
.plans-table th:first-child,
.plans-table td:first-child {
    width: 50%;
    text-align: left;
}

/* =========================================
   HEADER
========================================= */

.plans-table th {
    background: #06283D;
    color: #fff;
    padding: 18px 20px;

    font-size: 14px;
    font-weight: 600;
}

/* =========================================
   BODY
========================================= */

.plans-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #edf2f7;

    font-size: 14px;
    color: #334155;
}

/* FIRST COLUMN TEXT */
.plans-table td:first-child {
    font-weight: 600;
    color: #06283D;
}

/* ROW HOVER */
.plans-table tr:hover td {
    background: #fbfdff;
}

/* LAST ROW */
.plans-table tr:last-child td {
    border-bottom: none;
}

/* =========================================
   CHECK / CROSS (BASE STYLE)
========================================= */

.check {
    color: #14b8a6;
    font-weight: 800;
}

.cross {
    color: #dc2626;
    font-weight: 800;
}

/* =========================================
   PREMIUM ICON BADGES
========================================= */

.plans-table td .check,
.plans-table td .cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    border-radius: 6px;

    font-size: 14px;
}

/* CHECK BADGE */
.plans-table td .check {
    background:none;
}

/* CROSS BADGE */
.plans-table td .cross {
    background: none;
}

/* =========================================
   RESPONSIVE TABS
========================================= */

@media (max-width: 768px) {

    .tabs {
        display: flex;
        flex-direction: column;

        width: 100%;

        max-width: 420px;

        margin: 0 auto 25px;

        gap: 12px;
    }

    .tab-button {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;

        padding: 14px 18px;

        font-size: 14px;
        font-weight: 600;

        border-radius: 10px;

        text-align: center;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .tabs {
        max-width: 100%;
    }

    .tab-button {
        width: 100%;
    }
}