﻿/* ===== TOT HERO ===== */

.tot-hero {
    position: relative;
    padding: 120px 0;
    color: #fff;
    background: radial-gradient(900px 420px at 12% -10%, rgb(11 245 200 / 27%), #22bdbe00), linear-gradient(180deg, #0b201f, #071516);
    overflow: hidden;
}

.tot-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
}

/* BADGE */
.tot-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    background: rgb(11 245 174 / 18%);
    color: #8aecfd;
}

/* TEXT */
.tot-subtitle {
    margin-top: 16px;
    max-width: 560px;
    color: rgba(255,255,255,.9);
}

/* ACTIONS */
.tot-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.tot-btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
}

.tot-primary {
    background: linear-gradient(135deg, #0bf5ad, #06cdd9);
    color: #111;
}

.tot-outline {
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
}

/* METRICS */
.tot-metrics {
    display: flex;
    gap: 22px;
    margin-top: 34px;
}

.mx-metric .top {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mx-metric .bottom {
    font-size: 13px;
    opacity: .75;
}

/* RIGHT CARD */
.tot-cred-card {
    background: rgba(17,23,43,.85);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.08);
}

    .tot-cred-card .head {
        display: flex;
        gap: 14px;
        align-items: center;
        margin-bottom: 18px;
    }

    .tot-cred-card .icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, #0bf5ad, #06cdd9);
        color: #111;
    }

.tot-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

    .tot-grid .pill {
        background: rgba(255,255,255,.05);
        border-radius: 12px;
        padding: 10px 12px;
    }

    .tot-grid .k {
        font-weight: 700;
        font-size: 13px;
    }

    .tot-grid .v {
        font-size: 12px;
        opacity: .8;
    }

/* GLOW */
.tot-glow {
    position: absolute;
    inset: auto 0 -120px 0;
    height: 240px;
    background: radial-gradient(60% 100% at 50% 100%, rgba(245,158,11,.25), transparent);
    pointer-events: none;
}



/* ===============================
   TOT PROGRAM SECTION
================================ */

.tot-section {
    padding: 96px 0;
    background: #0b1220;
    color: #fff;
}

    /* SECTION HEAD */
    .tot-section .section-head {
        margin-bottom: 48px;
    }

        .tot-section .section-head h3 {
            font-size: 34px;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .tot-section .section-head p {
            margin-top: 8px;
            font-size: 15px;
            color: rgba(255,255,255,.7);
        }

/* ===============================
   ACCORDION WRAPPER
================================ */

.tot-accordion {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

/* ===============================
   ACCORDION ITEM
================================ */

.tot-item {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    transition: border-color .25s ease, background .25s ease;
}

    .tot-item:hover {
        border-color: rgba(245,158,11,.35);
        background: rgba(255,255,255,.045);
    }

/* ===============================
   HEADER (BUTTON)
================================ */

.tot-header {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 14px;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

    /* NUMBER */
    .tot-header .n {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        font-weight: 700;
        font-size: 14px;
        background: linear-gradient(135deg, #0bf5ad, #06cdd9);
        color: #111;
    }

    /* TITLE */
    .tot-header .t {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.35;
    }

    /* ICON */
    .tot-header i {
        font-size: 18px;
        opacity: .6;
        transition: transform .35s ease, opacity .35s ease;
    }

/* ===============================
   ACTIVE STATE
================================ */

.tot-item.active {
    border-color: #8aecfd;
    background: rgba(245,158,11,.06);
    height: 200px;
}

    .tot-item.active .tot-header i {
        transform: rotate(180deg);
        opacity: 1;
        
    }

/* ===============================
   BODY
================================ */

.tot-body {
  
    padding: 0 22px 0px 82px;
    animation: totFade .35s ease;
}

.tot-item.open .tot-body {
    max-height: 1000px;
}



.tot-body ul {
    padding: 18px 0 22px;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.tot-body li {
    position: relative;
    padding-left: 18px;
    font-size: 14.5px;
    color: rgba(255,255,255,.85);
  
}

    .tot-body li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #8aecfd;
    }

/* ===============================
   ANIMATION
================================ */

@keyframes totFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

    .tot-header {
        grid-template-columns: 38px 1fr auto;
        padding: 16px;
    }

        .tot-header .n {
            width: 34px;
            height: 34px;
            font-size: 13px;
        }

        .tot-header .t {
            font-size: 15px;
        }

    .tot-body {
        padding: 0 16px 18px 60px;
    }
}






@media (max-width: 640px) {
    .tot-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    .tot-cred-card {
        margin: 0 auto;
        max-width: 320px;
    }
    .tot-body {
        padding: 0 16px 18px 48px;
    }
}


/* Price*/

/* ===============================
   TOT PRICE BOX (HERO)
================================ */

.tot-price-box {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed rgba(255,255,255,.15);
}

/* PRICE */
.tot-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

    .tot-price .label {
        font-size: 13px;
        color: rgba(255,255,255,.7);
    }

    .tot-price strong {
        font-size: 32px;
        font-weight: 800;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, #0be6f5, #06d9a6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* META LIST */
.tot-price-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

    .tot-price-meta li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: rgba(255,255,255,.85);
    }

    .tot-price-meta i {
        color: #06cdd9;
        font-size: 15px;
    }





/* ===============================
   EXTRA PREMIUM CTA
================================ */

.tot-cta {
    position: relative;
    background: radial-gradient(700px 300px at 15% -10%, rgba(245,158,11,.18), transparent), linear-gradient(180deg, #070c16, #050912);
    overflow: hidden;
}

.tot-cta-box {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    padding: 56px;
    border-radius: 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(6px);
}

/* TEXT */
.tot-cta-text h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 16px 0;
}

.tot-cta-lead {
    font-size: 16px;
    color: rgba(255,255,255,.9);
    max-width: 520px;
}

.tot-cta-sub {
    margin-top: 10px;
    font-size: 14.5px;
    color: rgba(255,255,255,.75);
    max-width: 520px;
}

/* BADGE */
.tot-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: rgb(11 245 174 / 18%);
    color: #8aecfd;
}

/* ACTION */
.tot-cta-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-items: flex-start;
}

.tot-btn.tot-lg {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 16px;
}

.tot-cta-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.7);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tot-cta-box {
        grid-template-columns: 1fr;
        padding: 36px;
        gap: 28px;
    }

    .tot-cta-action {
        align-items: flex-start;
    }

    .tot-cta-text h2 {
        font-size: 30px;
    }
}
