/* TOGGLE */
.toggle-bar {
    padding: 40px 0;
    background: var(--off-white);
    text-align: center;
}

.toggle-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 50px;
    padding: 6px 20px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-track {
    position: absolute;
    inset: 0;
    background: var(--gray-100);
    border-radius: 12px;
    transition: background 0.3s;
}

.toggle-thumb {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked+.toggle-track {
    background: var(--teal);
}

.toggle-switch input:checked~.toggle-thumb {
    transform: translateX(20px);
}

.save-badge {
    background: var(--mint);
    color: var(--teal-dark);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-mono);
}

/* ADDONS */
.addons-section {
    padding: 80px 0;
    background: white;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.addon-card {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
}

.addon-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.addon-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.addon-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 6px;
}

.addon-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.addon-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--teal);
}

/* COMPARE TABLE */
.compare-section {
    padding: 80px 0;
    background: var(--off-white);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 48px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(13, 27, 42, 0.06);
}

.compare-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    background: var(--navy);
    color: white;
    font-family: var(--font-mono);
    letter-spacing: 1px;
}

.compare-table th:first-child {
    color: var(--gray-300);
}

.compare-table th.highlight-col {
    background: var(--teal);
    color: white;
}

.compare-table td {
    padding: 16px 24px;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.compare-table td.highlight-col {
    background: rgba(0, 184, 169, 0.04);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:hover td {
    background: var(--off-white);
}

.compare-table tr:hover td.highlight-col {
    background: rgba(0, 184, 169, 0.08);
}

.tick {
    color: var(--teal);
    font-size: 18px;
    font-weight: 700;
}

.pricing-cross-mark {
    color: var(--gray-300);
    font-size: 18px;
}

/* GUARANTEE */
.guarantee-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.guarantee-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.guarantee-item {
    text-align: center;
    max-width: 180px;
}

.guarantee-icon-wrap {
    width: 72px;
    height: 72px;
    background: var(--mint);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
}

.guarantee-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.guarantee-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* FAQ MINI */
.faq-mini {
    padding: 80px 0;
    background: var(--off-white);
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.faq-mini-item {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--gray-100);
}

.faq-mini-q {
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 10px;
}

.faq-mini-a {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}

@media(max-width:900px) {
    .addons-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-mini-grid {
        grid-template-columns: 1fr;
    }

    .compare-section {
        overflow-x: auto;
    }
}
