.tfmp-package,
.tfmp-package * {
    box-sizing: border-box;
}

.tfmp-package {
    --tfmp-accent: #00a8e8;
    --tfmp-dark: #061a22;
    --tfmp-text: #50616b;
    --tfmp-line: rgba(6, 26, 34, 0.10);
    width: 100%;
    background: radial-gradient(circle at 15% 6%, rgba(0, 168, 232, 0.08), transparent 32%), #ffffff;
    color: var(--tfmp-dark);
    font-family: Inter, Poppins, Arial, sans-serif;
    overflow: hidden;
}

.tfmp-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.tfmp-section {
    position: relative;
    margin-top: 58px;
}

.tfmp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tfmp-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.25;
}

.tfmp-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.tfmp-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 24px;
}

.tfmp-section-head--center {
    display: block;
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.tfmp-section-head--center .tfmp-eyebrow {
    justify-content: center;
}

.tfmp-section-title {
    margin: 8px 0 0;
    color: var(--tfmp-dark);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.tfmp-section-desc,
.tfmp-text {
    color: var(--tfmp-text);
    font-size: 16px;
    line-height: 1.75;
}

.tfmp-section-head > .tfmp-section-desc {
    max-width: 520px;
    margin: 0;
}

.tfmp-section-head--center .tfmp-section-desc {
    max-width: 720px;
    margin: 12px auto 0;
}

.tfmp-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: 520px;
    padding: 70px 58px 58px;
    border-radius: 34px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    isolation: isolate;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(2, 12, 18, .18);
}

.tfmp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(120deg, var(--tfmp-hero-overlay-1, rgba(5, 21, 28, .94)) 0%, rgba(5, 21, 28, .78) 42%, var(--tfmp-hero-overlay-2, rgba(5, 21, 28, .45)) 100%);
}

.tfmp-hero::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -1px;
    height: 64px;
    z-index: -1;
    background:
        radial-gradient(72px 26px at 6% 78%, #fff 42%, transparent 44%),
        radial-gradient(120px 36px at 20% 84%, #fff 42%, transparent 44%),
        radial-gradient(95px 34px at 38% 83%, #fff 42%, transparent 44%),
        radial-gradient(130px 42px at 58% 84%, #fff 42%, transparent 44%),
        radial-gradient(95px 32px at 78% 83%, #fff 42%, transparent 44%),
        radial-gradient(142px 46px at 94% 82%, #fff 42%, transparent 44%);
    opacity: .96;
}

.tfmp-hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -120px;
    background: var(--tfmp-accent);
    opacity: .24;
    filter: blur(90px);
    z-index: -1;
}

.tfmp-hero-content {
    width: min(760px, 100%);
    position: relative;
    z-index: 2;
}

.tfmp-hero-eyebrow {
    color: var(--tfmp-accent);
}

.tfmp-hero-title {
    margin: 12px 0 16px;
    color: #fff;
    font-size: clamp(38px, 6.3vw, 76px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: .97;
}

.tfmp-hero-subtitle {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
    line-height: 1.75;
}

.tfmp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.tfmp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 750;
}

.tfmp-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tfmp-accent);
    box-shadow: 0 0 0 5px rgba(0, 168, 232, .15);
}

.tfmp-hero-actions,
.tfmp-cta-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.tfmp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 15px 24px;
    border-radius: 40px;
    border: 1px solid transparent;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    cursor: pointer;
}

.tfmp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.tfmp-btn--primary,
.tfmp-btn--cta {
    background: var(--tfmp-accent);
    color: #fff;
}

.tfmp-btn--secondary {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: rgba(255, 255, 255, .24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tfmp-quote-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.tfmp-quote-card,
.tfmp-list-card,
.tfmp-addon-card,
.tfmp-day-card,
.tfmp-card,
.tfmp-cta-card {
    border: 1px solid var(--tfmp-line);
    background: #fff;
    box-shadow: 0 20px 45px rgba(5, 21, 28, .07);
}

.tfmp-quote-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 122px;
    padding: 24px;
    border-radius: 24px;
}

.tfmp-quote-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(0, 168, 232, .10);
    font-size: 18px;
}

.tfmp-quote-label {
    display: block;
    margin-bottom: 5px;
    color: #75838b;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.tfmp-quote-value {
    display: block;
    color: var(--tfmp-dark);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.42;
}

.tfmp-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tfmp-list-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 26px;
}

.tfmp-list-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: var(--tfmp-accent);
    opacity: .10;
}

.tfmp-list-title {
    position: relative;
    margin: 0 0 18px;
    color: var(--tfmp-dark);
    font-size: 23px;
    font-weight: 850;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.tfmp-list {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 13px;
}

.tfmp-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--tfmp-text);
    font-size: 15px;
    line-height: 1.62;
}

.tfmp-list-icon {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    margin-top: 1px;
    border-radius: 50%;
    background: #11b981;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.tfmp-list--excluded .tfmp-list-icon {
    background: #f97316;
}

.tfmp-days {
    display: grid;
    gap: 22px;
}

.tfmp-day-card {
    display: grid;
    grid-template-columns: minmax(270px, 41%) 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 28px;
}

.tfmp-day-card:nth-child(even) {
    grid-template-columns: 1fr minmax(270px, 41%);
}

.tfmp-day-card:nth-child(even) .tfmp-day-image-wrap {
    order: 2;
}

.tfmp-day-image-wrap {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    background: #e7f7fb;
}

.tfmp-day-image {
    display: block;
    width: 100%;
    height: 290px;
    min-height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .55s ease;
}

.tfmp-day-card:hover .tfmp-day-image {
    transform: scale(1.06);
}

.tfmp-day-tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 168, 232, .12);
    color: #007cb0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .3);
    font-size: 12px;
    font-weight: 850;
}

.tfmp-day-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.tfmp-day-number {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--tfmp-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tfmp-day-title {
    margin: 0 0 11px;
    color: var(--tfmp-dark);
    font-size: clamp(23px, 3vw, 32px);
    font-weight: 880;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.tfmp-day-desc {
    margin: 0;
}

.tfmp-addon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.tfmp-addon-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 168px;
    padding: 24px;
    border-radius: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.tfmp-addon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 55px rgba(5, 21, 28, .12);
}

.tfmp-addon-note {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 168, 232, .12);
    color: #007cb0;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.tfmp-addon-title {
    margin: 18px 0 14px;
    color: var(--tfmp-dark);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.tfmp-addon-price {
    margin-top: auto;
    color: var(--tfmp-accent);
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
}

.tfmp-other-card {
    margin-top: 18px;
    padding: 28px;
    border-radius: 26px;
}

.tfmp-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tfmp-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(6, 26, 34, .045);
    border: 1px solid rgba(6, 26, 34, .08);
    color: #31444d;
    font-size: 13px;
    font-weight: 750;
}

.tfmp-cta-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    overflow: hidden;
    padding: 38px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 168, 232, .36), transparent 34%),
        linear-gradient(135deg, #061a22, #09313d 62%, #00a8e8);
    color: #fff;
}

.tfmp-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 16%, rgba(255, 255, 255, .20), transparent 20%),
        linear-gradient(90deg, rgba(255, 255, 255, .06), transparent);
    pointer-events: none;
}

.tfmp-cta-card > * {
    position: relative;
    z-index: 1;
}

.tfmp-cta-title {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.tfmp-cta-text {
    max-width: 680px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .tfmp-quote-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tfmp-addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tfmp-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .tfmp-section-head > .tfmp-section-desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .tfmp-package {
        padding-left: 16px;
        padding-right: 16px;
    }

    .tfmp-section {
        margin-top: 42px;
    }

    .tfmp-hero {
        min-height: 520px;
        padding: 42px 24px 44px;
        border-radius: 26px;
        align-items: flex-end;
        background-position: center;
    }

    .tfmp-hero::after {
        height: 44px;
    }

    .tfmp-hero-title {
        font-size: clamp(34px, 12vw, 48px);
    }

    .tfmp-hero-subtitle,
    .tfmp-section-desc,
    .tfmp-text {
        font-size: 15px;
        line-height: 1.68;
    }

    .tfmp-hero-actions,
    .tfmp-cta-action {
        width: 100%;
    }

    .tfmp-btn {
        width: 100%;
    }

    .tfmp-badges {
        gap: 8px;
    }

    .tfmp-badge {
        width: 100%;
        justify-content: flex-start;
    }

    .tfmp-quote-grid,
    .tfmp-list-grid,
    .tfmp-addon-grid {
        grid-template-columns: 1fr;
    }

    .tfmp-quote-card {
        min-height: auto;
    }

    .tfmp-day-card,
    .tfmp-day-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .tfmp-day-card:nth-child(even) .tfmp-day-image-wrap {
        order: 0;
    }

    .tfmp-day-image-wrap,
    .tfmp-day-image {
        min-height: 220px;
        height: 220px;
    }

    .tfmp-day-content {
        padding: 24px;
    }

    .tfmp-list-card,
    .tfmp-other-card,
    .tfmp-cta-card {
        padding: 24px;
        border-radius: 24px;
    }

    .tfmp-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .tfmp-chip {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .tfmp-hero {
        min-height: 560px;
        padding: 36px 20px 40px;
    }

    .tfmp-section-title {
        font-size: 30px;
    }

    .tfmp-day-title {
        font-size: 24px;
    }
}
