/* ===================================
   CLIPBEE THANK YOU PAGE STYLES
   Matching special-offer.php design
   =================================== */

/* Global Utility Classes */
.ty-hidden {
    display: none !important;
}

/* Hero Banner Section */
.ty-banner {
    background: url('https://del3o5ypqgi9j.cloudfront.net/clipbee/imagesfe/banner.webp') no-repeat center top;
    background-size: cover;
    padding: 72px 0 90px 0;
    position: relative;
    overflow: hidden;
}

.ty-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

.ty-banner .navbar-brand {
    display: block;
    margin-bottom: 30px;
}

.ty-logo-img {
    width: 181px;
}

.ty-success-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.ty-success-icon i {
    font-size: 25px;
    color: #000;
}

.ty-main-title {
    color: #fff;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.ty-subtitle {
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 115%;
    letter-spacing: -0.2px;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Adaptive text contrast - uses blend mode for dynamic contrast */
.ty-banner-content {
    position: relative;
    z-index: 2;
}

/* Ensure banner content stays above the fade gradient */
.ty-banner::after {
    z-index: 1;
}

.ty-video-box {
    max-width: 1020px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
    background-color: #000;
}

.ty-video-inner {
    border-radius: 38px;
    overflow: hidden;
}

/* 16:9 Aspect Ratio for Video Players */
.autoplayer-area {
    width: 100%;
}

.autoplayer-subarea-16-by-9 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.autoplayer-subarea-16-by-9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Section Separators */
.ty-sep {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
    z-index: 10;
}

.ty-sep::before,
.ty-sep::after {
    content: '';
    flex: 1;
    max-width: 320px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 191, 33, 0.5) 100%);
}

.ty-sep::after {
    background: linear-gradient(90deg, rgba(255, 191, 33, 0.5) 0%, transparent 100%);
}

.ty-sep span {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #fff;
    border: 2px solid rgba(255, 191, 33, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 164, 0, 0.15);
    position: relative;
    z-index: 1;
    margin: 0 16px;
}

.ty-sep span i {
    font-size: 16px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Highlight Text */
.ty-highlight {
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bonus Section */
.ty-bonus-section {
    background: linear-gradient(180deg, #fff9e6 0%, #ffffff 100%);
    padding: 80px 0;
}

.ty-bonus-card-out {
    padding: 15px;
}

.ty-bonus-card {
    background: #ffffff;
    border: 1px solid rgba(255, 191, 33, 0.25);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.06);
}

.ty-bonus-card:hover {
    border-color: rgb(255, 191, 33);
    transform: translateY(-8px);
    box-shadow: 0px 25px 50px 0px rgba(255, 164, 0, 0.2);
}

.ty-bonus-icon {
    width: 80px;
    height: 80px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0px 12px 24px 0px rgba(255, 164, 0, 0.3);
}

.ty-bonus-icon i {
    font-size: 32px;
    color: #000;
}

.ty-bonus-card h3 {
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.ty-bonus-card p {
    color: #666;
    margin-bottom: 25px;
}

.ty-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    color: #000;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0px 10px 25px 0px rgba(255, 164, 0, 0.25);
}

.ty-btn-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0px 15px 35px 0px rgba(255, 164, 0, 0.4);
    color: #000;
}

.ty-bonus-note {
    display: inline-block;
    padding: 18px 35px;
    background: rgba(255, 191, 33, 0.1);
    border: 1px dashed rgba(255, 164, 0, 0.4);
    border-radius: 15px;
    color: #555;
}

.ty-bonus-note strong {
    color: #e69500;
}

/* Upsell Section */
.ty-upsell-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    padding: 20px 0 110px;
}

.ty-upsell-card-out {
    padding: 12px;
}

.ty-upsell-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fff 50%, #fffdf5 100%);
    border: 2px solid rgba(255, 191, 33, 0.35);
    border-radius: 36px;
    padding: 50px 38px 42px;
    position: relative;
    box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ty-upsell-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 191, 33, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Dark variant — CaptionsBee */
.ty-upsell-card-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    border-color: rgba(255, 191, 33, 0.3);
    box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.2);
}

.ty-upsell-card-dark::before {
    background: radial-gradient(circle, rgba(255, 191, 33, 0.1) 0%, transparent 70%);
}

.ty-upsell-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    color: #000;
    padding: 9px 30px;
    border-radius: 0 0 14px 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.ty-upsell-badge-dark {
    background: #2d2d2d;
    color: #ffbf21;
    border: 1px solid rgba(255, 191, 33, 0.35);
    border-top: none;
}

.ty-upsell-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    justify-content: center;
}

.ty-upsell-header > div:last-child {
    text-align: left;
}

.ty-upsell-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 25px 0px rgba(255, 164, 0, 0.35);
}

.ty-upsell-icon i {
    font-size: 26px;
    color: #000;
}

.ty-upsell-icon-dark {
    background: transparent;
    border: 2px solid rgba(255, 191, 33, 0.45);
    box-shadow: none;
}

.ty-upsell-icon-dark i {
    font-size: 26px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ty-upsell-header h3 {
    color: #000;
    margin: 0 0 2px;
    letter-spacing: -0.8px;
}

.ty-upsell-card-dark .ty-upsell-header h3 {
    color: #fff;
}

.ty-upsell-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
}

.ty-upsell-features li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #333;
}

.ty-upsell-card-dark .ty-upsell-features li {
    color: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

.ty-upsell-features li:last-child {
    border-bottom: none;
}

.ty-upsell-features li i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-image: linear-gradient(-45deg, rgba(250,209,38,0.99608) 0%, rgb(255,144,0) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #000;
    flex-shrink: 0;
}

/* One Time Payment badge row */
.ty-upsell-otp {
    font-weight: 600 !important;
    color: #e69500 !important;
    border-bottom-color: rgba(255, 191, 33, 0.25) !important;
    margin-bottom: 4px;
}

.ty-upsell-otp i {
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%) !important;
}

.ty-upsell-card-dark .ty-upsell-otp {
    color: #ffbf21 !important;
}

.ty-btn-upsell-div {
    text-align: center;
}

.ty-btn-upsell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 40px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    color: #000;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0px 12px 35px 0px rgba(255, 164, 0, 0.35);
    letter-spacing: -0.3px;
    width: 100%;
}

.ty-btn-upsell:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0px 18px 45px 0px rgba(255, 164, 0, 0.5);
    color: #000;
}

.ty-btn-upsell-dark {
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border: 2px solid transparent;
    color: #000;
    box-shadow: 0px 14px 35px 0px rgba(255, 164, 0, 0.4);
}

.ty-btn-upsell-dark:hover {
    background: transparent;
    border-color: rgba(255, 191, 33, 0.5);
    color: #ffbf21;
    box-shadow: none;
}

/* Access Section */
.ty-access-section {
    background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
    padding: 110px 0;
}

.ty-access-card-out {
    padding: 15px;
}

.ty-access-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 35px;
    padding: 55px 35px 45px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: visible;
}

.ty-access-step-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f0f0f0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #555;
    padding: 7px 22px;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

.ty-access-step-badge-primary {
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border-color: transparent;
    color: #000;
}

.ty-access-card:hover {
    border-color: rgba(255, 191, 33, 0.4);
    transform: translateY(-6px);
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
}

.ty-access-card-primary {
    border: 2px solid rgba(255, 191, 33, 0.5);
    background: linear-gradient(135deg, #fffdf5 0%, #fff 100%);
}

.ty-access-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 191, 33, 0.15) 0%, rgba(255, 191, 33, 0.05) 100%);
    border: 2px solid rgba(255, 191, 33, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.ty-access-icon i {
    font-size: 35px;
    color: #e69500;
}

.ty-access-icon-primary {
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border: none;
    box-shadow: 0px 12px 30px 0px rgba(255, 164, 0, 0.3);
}

.ty-access-icon-primary i {
    color: #000;
}

.ty-access-card h3 {
    color: #000;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.ty-access-card p {
    color: #666;
    margin-bottom: 28px;
}

.ty-btn-access {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #e69500;
    color: #e69500;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ty-btn-access:hover {
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border-color: transparent;
    color: #000;
    transform: translateY(-2px);
}

.ty-btn-access-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    color: #000;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0px 10px 30px 0px rgba(255, 164, 0, 0.3);
}

.ty-inline-link {
    color: #e69500;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(230, 149, 0, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.ty-inline-link:hover {
    color: #cc8400;
    border-bottom-color: rgba(204, 132, 0, 0.6);
}

.ty-btn-access-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0px 15px 40px 0px rgba(255, 164, 0, 0.45);
    color: #000;
}

/* Quick Tips Strip */
.ty-tips-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    padding: 22px 35px;
    background: linear-gradient(135deg, #fffbeb 0%, #fff8e0 100%);
    border: 2px solid rgba(255, 191, 33, 0.35);
    border-radius: 50px;
    box-shadow: 0px 8px 25px rgba(255, 164, 0, 0.1);
}

.ty-tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-weight: 500;
}

.ty-tip-item i {
    width: 30px;
    height: 30px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #000;
    flex-shrink: 0;
}

.ty-tip-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ty-tip-item a:hover {
    color: #e69500;
}

@media (max-width: 767px) {
    .ty-tips-strip {
        flex-direction: column;
        gap: 14px;
        border-radius: 20px;
        padding: 20px 24px;
        align-items: center;
    }
}

/* Live Webinar Section */
.ty-webinar-section {
    background: linear-gradient(180deg, #ffffff 0%, #fff8e9 100%);
    padding: 80px 0;
}

.ty-webinar-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    border: 2px solid rgba(255, 191, 33, 0.4);
    border-radius: 36px;
    padding: 55px 50px;
    text-align: center;
    box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.ty-webinar-box::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 191, 33, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.ty-webinar-box::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 191, 33, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.ty-webinar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.86);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.ty-webinar-badge i {
    font-size: 12px;
    color: #ff3b30;
}

.ty-webinar-box h2 {
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1.2px;
    position: relative;
    z-index: 2;
}

.ty-webinar-hosts-image-wrap {
    position: relative;
    z-index: 2;
    margin: 0 auto 14px;
    width: 220px;
    height: 220px;
    max-width: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.35);
}

.ty-webinar-hosts-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.ty-webinar-copy {
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ty-webinar-copy p {
    margin-bottom: 16px;
}

.ty-webinar-lead {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 18px;
}

.ty-webinar-hosted-by {
    position: relative;
    z-index: 2;
    font-size: 1.15em;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 500;
    margin: 0 auto 18px;
}

.ty-webinar-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3em;
    font-weight: 600;
}

.ty-webinar-stat strong {
    color: #ffda7f;
}

.ty-webinar-unlock-title {
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.ty-webinar-unlock-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    justify-content: center;
}

.ty-webinar-unlock-item {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 191, 33, 0.38);
    border-radius: 999px;
    padding: 8px 14px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.ty-webinar-close {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.88);
}

.ty-webinar-close strong {
    color: #ffffff;
}

.ty-webinar-see-you {
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 600;
}

.ty-webinar-btn-wrap {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.ty-webinar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 44px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    color: #000;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 15px 40px rgba(255, 164, 0, 0.36);
    letter-spacing: -0.2px;
}

.ty-webinar-btn:hover {
    color: #000;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0px 22px 50px rgba(255, 164, 0, 0.5);
}

/* Training Section */
.ty-training-cta-section {
    background: linear-gradient(180deg, #fff 0%, #fffdf5 100%);
    padding: 90px 0 110px;
}

.ty-training-cta-box {
    background: linear-gradient(160deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(255, 191, 33, 0.4);
    border-radius: 36px;
    padding: 38px 40px 40px;
    box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}

.ty-training-cta-box::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 191, 33, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.ty-training-cta-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.ty-training-cta-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 12px 30px rgba(255, 164, 0, 0.4);
}

.ty-training-cta-icon i {
    font-size: 32px;
    color: #000;
}

.ty-training-cta-content {
    flex: 1;
}

.ty-training-cta-content h3 {
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.ty-training-cta-content p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.ty-training-cta-arrow {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 191, 33, 0.12);
    border: 2px solid rgba(255, 191, 33, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ty-training-cta-arrow i {
    font-size: 16px;
    color: #ffbf21;
    margin-left: 3px;
}

.ty-training-cta-box .ty-training-video-box {
    max-width: 100%;
    border-radius: 22px;
    border-color: rgba(255, 191, 33, 0.3);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 1;
}

.ty-training-cta-box .ty-training-video-box .autoplayer-subarea-16-by-9 {
    border-radius: 20px;
}

@media (max-width: 991px) {
    .ty-training-cta-box {
        padding: 32px 30px 35px;
        border-radius: 28px;
    }
}

@media (max-width: 767px) {
    .ty-training-cta-header {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        margin-bottom: 24px;
    }

    .ty-training-cta-box {
        padding: 28px 22px 28px;
        border-radius: 24px;
    }

    .ty-training-cta-icon {
        width: 62px;
        height: 62px;
        min-width: 62px;
    }

    .ty-training-cta-icon i {
        font-size: 26px;
    }

    .ty-training-cta-arrow {
        display: none;
    }

    .ty-training-cta-box .ty-training-video-box {
        border-radius: 14px;
    }
}

/* Important Info Section */
.ty-important-section {
    background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ty-important-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 191, 33, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ty-important-box {
    position: relative;
    text-align: center;
}

.ty-important-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(255, 191, 33, 0.4);
    border-radius: 50px;
    padding: 12px 28px;
    margin-bottom: 40px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.ty-important-badge i {
    width: 28px;
    height: 28px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #000;
}

.ty-important-badge span {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ty-important-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ty-important-card {
    background: #fff;
    border: 1px solid rgba(255, 191, 33, 0.2);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.ty-important-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: linear-gradient(90deg, rgb(255,172,37) 0%, rgb(255,191,33) 50%, rgb(255,210,29) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ty-important-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 191, 33, 0.5);
    box-shadow: 0px 20px 50px rgba(255, 164, 0, 0.15);
}

.ty-important-card:hover::before {
    opacity: 1;
}

.ty-important-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 191, 33, 0.15) 0%, rgba(255, 191, 33, 0.05) 100%);
    border: 2px solid rgba(255, 191, 33, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.ty-important-card:hover .ty-important-card-icon {
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border-color: transparent;
    box-shadow: 0px 10px 25px rgba(255, 164, 0, 0.35);
    transform: scale(1.1);
}

.ty-important-card-icon i {
    font-size: 28px;
    color: #e69500;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.ty-important-card:hover .ty-important-card-icon i {
    color: #000;
}

.ty-important-card-content h4 {
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.ty-important-card-content p {
    color: #666;
    margin: 0;
}

.ty-important-card-content a {
    color: #e69500;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ty-important-card-content a:hover {
    color: #cc8400;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .ty-important-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ty-important-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .ty-important-grid {
        grid-template-columns: 1fr;
    }
    
    .ty-important-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .ty-important-card {
        padding: 30px 20px;
    }
    
    .ty-important-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .ty-important-card-icon i {
        font-size: 24px;
    }
}

/* Support Section */
.ty-support-section {
    background: linear-gradient(180deg, #fff 0%, #fffdf5 100%);
    padding: 110px 0;
    position: relative;
}

.ty-support-box {
    background: #ffffff;
    border: 1px solid rgba(255, 191, 33, 0.25);
    border-radius: 45px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.06);
}

.ty-support-box h2 {
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}

.ty-support-box h3 {
    color: #666;
    margin-bottom: 0;
}

.ty-btn-support-div {
    text-align: center;
}

.ty-btn-support {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 18px 40px;
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    color: #000;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0px 13px 36px 0px rgba(255, 164, 0, 0.35);
    letter-spacing: -0.3px;
}

.ty-btn-support:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0px 20px 50px 0px rgba(255, 164, 0, 0.5);
    color: #000;
}

.ty-training-video-box {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(255, 191, 33, 0.25);
    background-color: #000;
}

.ty-training-video-box .autoplayer-subarea-16-by-9 {
    border-radius: 22px;
}

/* Footer */
.ty-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 90px 0 55px;
}

.ty-footer-logo {
    max-width: 160px;
    margin-bottom: 25px;
}

.ty-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: #10b981;
    margin-bottom: 35px;
}

.ty-guarantee-badge i {
    font-size: 18px;
}

.ty-disclaimer {
    color: #777;
    max-width: 850px;
    margin: 0 auto 35px;
}

.ty-disclaimer strong {
    color: #999;
}

.ty-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.ty-social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 191, 33, 0.1);
    border: 1px solid rgba(255, 191, 33, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ty-social-link:hover {
    background-image: linear-gradient(180deg, rgb(255,172,37) 0%, rgb(255,191,33) 51%, rgb(255,210,29) 100%);
    border-color: transparent;
    transform: translateY(-4px);
}

.ty-social-link i {
    font-size: 20px;
    color: #fff;
}

.ty-social-link:hover i {
    color: #000;
}

.ty-footer-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.ty-footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ty-footer-links a:hover {
    color: #ffbf21;
}

.ty-copyright {
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .ty-banner {
        padding: 50px 0 60px;
    }
    
    .ty-logo-img {
        max-width: 160px;
    }
    
    .ty-success-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .ty-success-icon i {
        font-size: 24px;
    }
    
    .ty-video-box {
        border-radius: 20px;
    }
    
    .ty-bonus-section,
    .ty-upsell-section,
    .ty-access-section,
    .ty-webinar-section,
    .ty-important-section,
    .ty-support-section,
    .ty-training-cta-section {
        padding: 80px 0;
    }
    
    .ty-upsell-card {
        padding: 40px 30px;
        border-radius: 28px;
    }
    
    .ty-upsell-header {
        flex-direction: column;
        text-align: center;
    }

    .ty-upsell-header > div:last-child {
        text-align: center;
    }
    
    .ty-important-box {
        padding: 35px 30px;
        border-radius: 25px;
    }
    
    .ty-support-box {
        padding: 45px 30px;
        border-radius: 30px;
    }

    .ty-webinar-box {
        padding: 45px 35px;
        border-radius: 28px;
    }
}

@media (max-width: 767px) {
    .ty-banner {
        padding: 40px 0 50px;
    }
    
    .ty-banner::after {
        height: 180px;
    }
    
    .ty-logo-img {
        max-width: 130px;
        margin-bottom: 20px;
    }
    
    .ty-success-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
    
    .ty-success-icon i {
        font-size: 20px;
    }
    
    .ty-main-title {
        letter-spacing: -1.5px;
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.7),
            0 4px 16px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .ty-subtitle {
        margin-bottom: 35px;
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 4px 12px rgba(0, 0, 0, 0.5);
    }
    
    .ty-video-box {
        border-radius: 15px;
        border: 3px solid #fff;
    }
    
    .ty-bonus-section,
    .ty-upsell-section,
    .ty-access-section,
    .ty-webinar-section,
    .ty-important-section,
    .ty-support-section,
    .ty-training-cta-section {
        padding: 65px 0;
    }
    
    .ty-bonus-card {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .ty-bonus-icon {
        width: 65px;
        height: 65px;
        border-radius: 18px;
    }
    
    .ty-bonus-icon i {
        font-size: 26px;
    }
    
    .ty-upsell-card {
        padding: 35px 25px;
        border-radius: 25px;
    }
    
    .ty-upsell-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .ty-upsell-icon i {
        font-size: 24px;
    }
    
    .ty-access-card {
        padding: 50px 25px 35px;
        border-radius: 25px;
    }
    
    .ty-access-icon {
        width: 75px;
        height: 75px;
    }
    
    .ty-access-icon i {
        font-size: 28px;
    }
    
    .ty-important-box {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .ty-important-header {
        flex-wrap: wrap;
    }
    
    .ty-important-header i {
        font-size: 26px;
    }
    
    .ty-support-box {
        padding: 40px 20px;
        border-radius: 25px;
    }

    .ty-webinar-box {
        padding: 38px 24px;
        border-radius: 24px;
    }

    .ty-webinar-badge {
        padding: 10px 18px;
        margin-bottom: 20px;
    }

    .ty-webinar-box h2 {
        margin-bottom: 18px;
    }

    .ty-webinar-hosts-image-wrap {
        margin-bottom: 12px;
        width: 180px;
        height: 180px;
    }

    .ty-webinar-copy p {
        margin-bottom: 14px;
    }

    .ty-webinar-copy {
        text-align: center;
    }

    .ty-webinar-unlock-grid {
        justify-content: center;
        margin-bottom: 14px;
    }

    .ty-webinar-unlock-item {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }

    .ty-webinar-stat {
        padding: 14px 14px;
        margin-bottom: 16px;
    }

    .ty-webinar-btn {
        width: 100%;
        padding: 16px 22px;
    }
    
    .ty-training-video-box {
        border-radius: 15px;
    }
    
    .ty-footer {
        padding: 50px 0 30px;
    }
    
    .ty-footer-logo {
        max-width: 130px;
    }
    
    .ty-footer-links {
        gap: 20px;
    }
    
    .ty-social-links {
        gap: 10px;
    }
    
    .ty-social-link {
        width: 42px;
        height: 42px;
    }
    
    .ty-btn-download,
    .ty-btn-access,
    .ty-btn-access-primary {
        padding: 12px 25px;
    }
    
    .ty-btn-upsell,
    .ty-btn-support {
        padding: 16px 30px;
    }
}

@media (max-width: 767px) {
    .ty-main-title {
        flex-direction: column;
        gap: 12px;
        justify-content: center;
    }

    .ty-success-icon {
        margin: 0 auto;
    }

    .ty-video-inner {
        border-radius: 12px;
    }

    .ty-btn-access,
    .ty-btn-access-primary {
        width: 100%;
        justify-content: center;
    }

    .ty-btn-support {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ty-banner {
        padding: 28px 0 38px;
    }

    .ty-banner::after {
        height: 120px;
    }

    .ty-logo-img {
        max-width: 105px;
    }

    .ty-main-title {
        gap: 10px;
    }

    .ty-success-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .ty-success-icon i {
        font-size: 17px;
    }

    .ty-subtitle {
        margin-bottom: 25px;
    }

    .ty-video-box {
        border-radius: 12px;
        border-width: 2px;
    }

    .ty-video-inner {
        border-radius: 10px;
    }

    .ty-bonus-section,
    .ty-upsell-section,
    .ty-access-section,
    .ty-webinar-section,
    .ty-important-section,
    .ty-support-section,
    .ty-training-cta-section {
        padding: 45px 0;
    }

    .ty-bonus-card-out,
    .ty-access-card-out {
        padding: 10px;
    }

    .ty-upsell-card-out {
        padding: 8px;
    }

    .ty-upsell-card {
        padding: 30px 18px;
        border-radius: 20px;
    }

    .ty-upsell-features li {
        padding: 12px 0;
        gap: 10px;
    }

    .ty-upsell-features li i {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 10px;
    }

    .ty-btn-upsell {
        padding: 14px 24px;
        border-radius: 14px;
    }

    .ty-access-card {
        padding: 42px 18px 30px;
        border-radius: 20px;
    }

    .ty-access-icon {
        width: 65px;
        height: 65px;
    }

    .ty-access-icon i {
        font-size: 25px;
    }

    .ty-btn-access,
    .ty-btn-access-primary {
        padding: 13px 20px;
        border-radius: 12px;
    }

    .ty-tips-strip {
        padding: 16px 18px;
        border-radius: 16px;
        gap: 10px;
    }

    .ty-tip-item i {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .ty-webinar-box {
        padding: 30px 16px;
        border-radius: 18px;
    }

    .ty-webinar-hosts-image-wrap {
        width: 150px;
        height: 150px;
    }

    .ty-webinar-stat {
        padding: 12px;
    }

    .ty-webinar-btn {
        padding: 14px 18px;
        border-radius: 14px;
    }

    .ty-training-cta-box {
        padding: 22px 16px 24px;
        border-radius: 18px;
    }

    .ty-training-cta-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .ty-training-cta-icon i {
        font-size: 22px;
    }

    .ty-training-video-box {
        border-radius: 12px;
    }

    .ty-training-cta-box .ty-training-video-box {
        border-radius: 10px;
    }

    .ty-training-cta-box .ty-training-video-box .autoplayer-subarea-16-by-9 {
        border-radius: 8px;
    }

    .ty-support-box {
        padding: 32px 18px;
        border-radius: 20px;
    }

    .ty-btn-support {
        padding: 14px 24px;
        border-radius: 14px;
    }

    .ty-sep span {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .ty-sep span i {
        font-size: 13px;
    }

    .ty-sep::before,
    .ty-sep::after {
        max-width: 100px;
    }

    .ty-footer {
        padding: 40px 0 24px;
    }

    .ty-footer-logo {
        max-width: 110px;
        margin-bottom: 20px;
    }

    .ty-footer-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .ty-disclaimer {
        margin-bottom: 25px;
    }

    .ty-guarantee-badge {
        padding: 12px 20px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .ty-banner {
        padding: 22px 0 32px;
    }

    .ty-banner .navbar-brand {
        margin-bottom: 18px;
    }

    .ty-logo-img {
        max-width: 95px;
    }

    .ty-main-title {
        gap: 8px;
        letter-spacing: -1px;
    }

    .ty-success-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .ty-success-icon i {
        font-size: 15px;
    }

    .ty-subtitle {
        margin-bottom: 20px;
    }

    .ty-video-box {
        border-radius: 10px;
    }

    .ty-video-inner {
        border-radius: 8px;
    }

    .ty-bonus-section,
    .ty-upsell-section,
    .ty-access-section,
    .ty-webinar-section,
    .ty-important-section,
    .ty-support-section,
    .ty-training-cta-section {
        padding: 35px 0;
    }

    .ty-upsell-card {
        padding: 26px 14px;
        border-radius: 18px;
    }

    .ty-access-card {
        padding: 38px 14px 26px;
        border-radius: 18px;
    }

    .ty-webinar-box {
        padding: 24px 14px;
        border-radius: 16px;
    }

    .ty-webinar-hosts-image-wrap {
        width: 130px;
        height: 130px;
    }

    .ty-webinar-unlock-item {
        padding: 6px 12px;
    }

    .ty-training-cta-box {
        padding: 18px 12px 20px;
        border-radius: 16px;
    }

    .ty-support-box {
        padding: 28px 14px;
        border-radius: 18px;
    }

    .ty-footer {
        padding: 32px 0 20px;
    }

    .ty-footer-logo {
        max-width: 95px;
    }

    .ty-footer-links {
        gap: 10px;
    }
}
