.tv-header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 2rem;
    box-sizing: border-box;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tv-header .tv-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 1680px;
    max-width: 100%;
    margin: 7rem 0 0 0;
    position: relative;
    z-index: 2;
}

.tv-header .tv-content {
    padding: 2rem;
    max-width: 520px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 44px;
    color: var(--color-white);
    position: relative;
}

.tv-header .tv-label {
    position: relative;
    display: inline-block;
    color: var(--color-black);
    font-size: var(--font-size-body-l);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    z-index: 1;
}

.tv-header .tv-label::before {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--color-secondary);
    z-index: -1;
    animation: markerSlide 0.6s ease-out 0.2s forwards;
}

.tv-header .tv-title {
    font-size: var(--font-size-4xl);
    line-height: 1;
    font-weight: var(--font-weight-bold);
    margin: 0 0 1rem;
}

.tv-header .tv-description {
    font-size: var(--font-size-body-s);
    font-weight: var(--font-weight-regular);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tv-header .tv-features {
    list-style: none;
    font-weight: var(--font-weight-regular);
    padding-left: 0;
    margin: 0 0 2rem;
}

.tv-header .tv-feature-title {
    position: relative;
    gap: 0.5rem;
    align-items: center;
    display: flex;
    margin-bottom: 0.75rem;
    font-size: var(--font-size-body);
}

.tv-header .tv-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    background-color: var(--color-secondary);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
}

.tv-header .tv-price-box {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
}

.tv-header .tv-tag-title {
    font-size: var(--font-size-body-2xs);
    opacity: 0.6;
    font-weight: var(--font-weight-light);
}

.tv-header .tv-price {
    color: var(--color-secondary);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    line-height: 1;

    animation: fadeSlideUp 0.6s ease-out 1.5s both;
}

.tv-header .tv-disclaimer {
    font-size: var(--font-size-body-2xs);
    opacity: 0.6;
    font-weight: var(--font-weight-light);
    margin-top: 0.25rem;
}

.tv-header .tv-price-tag {
    background-color: var(--color-secondary);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
    rotate: 22deg;
    position: absolute;
    top: -1rem;
    right: -1rem;
    animation: slamIn 0.6s ease-out 1s both;
}

.tv-header .tv-price-tag .tv-tag-wrapper {
    padding-inline: 12px;
    display: flex;
    flex-direction: column;
    color: var(--color-black);
    font-weight: var(--font-weight-bold);
}

.tv-header .tv-price-tag .tv-price-tag-title {
    font-size: var(--font-size-body-xs);
}

.tv-header .tv-price-tag .tv-price-tag-subtitle {
    font-size: var(--font-size-lg);
}

.tv-header .tv-cta-wrapper {
    margin-bottom: 1rem;
    width: fit-content;
    animation: wobble 3s ease 3s infinite;
    animation-fill-mode: both;
}

.tv-header .tv-cta-wrapper:hover {
    animation-play-state: paused;
}

.tv-extra-features {
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    background-color: var(--color-primary);
    padding: 0 4rem;
}

.tv-extra-features .tv-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 1680px;
    max-width: 100%;
    position: relative;
}

.tv-extra-features .tv-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tv-extra-features .tv-content {
    color: var(--color-white);
}

.tv-extra-features .tv-label {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--color-secondary);
}

.tv-extra-features .tv-title {
    font-size: var(--font-size-xl);
    line-height: 1;
    font-weight: var(--font-weight-bold);
    margin: 0 0 1.5rem;
}

.tv-extra-features .tv-features {
    list-style: none;
    font-weight: var(--font-weight-regular);
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.tv-extra-features .tv-feature-title {
    position: relative;
    gap: 0.75rem;
    align-items: flex-start;
    display: flex;
    margin-bottom: 1rem;
    font-size: var(--font-size-body);
}

.tv-extra-features .tv-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    background-color: var(--color-white);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
}

.tv-extra-features .tv-feature-description {
    font-size: var(--font-size-body-xs);
    color: var(--color-light-gray);
}

.tv-extra-features .tv-image {
    display: flex;
    align-items: center;
    justify-content: end;
}

.tv-extra-features .tv-image img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
}

.tv-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    background-color: var(--color-light-gray);
    padding: 4rem;
    color: var(--color-black);
}

.tv-services .tv-label {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    display: inline-block;
}

.tv-services .tv-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: 0;
}

.tv-services .tv-cards-wrapper {
    display: flex;
    align-items: start;
    position: relative;
    justify-content: center;
    gap: 1rem;
    box-sizing: border-box;
    margin-top: 7rem;
}

.tv-services .tv-card-wrapper {
    position: relative;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.tv-services .tv-card {
    padding: 1rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 250px;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 30px;
    border: 1px solid var(--color-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 20px 10px rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.tv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent
    );
}

.tv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3)
    );
}

.tv-card:hover {
    transform: scale(1.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tv-card .card-shimmer {
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.5) 50%,
            transparent 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0;
}

.tv-card:hover .card-shimmer {
    animation: shimmer-slide 1.5s forwards;
    opacity: 1;
}

.tv-services .tv-card-label {
    font-size: var(--font-size-body-s);
    font-weight: var(--font-weight-semibold);
    display: inline-block;
}

.tv-services .tv-card-title {
    font-size: var(--font-size-md);
    line-height: 1;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.tv-services .tv-card-description {
    font-size: var(--font-size-body-s);
    font-weight: var(--font-weight-regular);
    text-align: left;
    display: inline-block;
}

.tv-services .tv-card-description ul {
    list-style: none;
    padding-left: 0;
}

.tv-services .tv-card-description li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: bold;
    display: inline-block;
    margin-right: 0.5em;
}

.tv-services .tv-card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-black);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    position: relative;
    z-index: 2;
    margin: 2rem auto 1rem;
    display: block;
}

.tv-services .tv-card-icon-bg {
    width: 135px;
    height: 135px;
    background-color: var(--color-primary);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    position: absolute;
    top: -20%;
    display: block;
}

.tv-promo {
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    background-color: var(--color-black);
    padding: 4rem 8rem;
}

.tv-promo .tv-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 1680px;
    max-width: 100%;
    position: relative;
}

.tv-promo .tv-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tv-promo .tv-content {
    color: var(--color-white);
    padding: 2rem;
    border-radius: 30px;
}

.tv-promo .tv-label {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--color-secondary);
}

.tv-promo .tv-title {
    font-size: var(--font-size-xl);
    line-height: 1;
    font-weight: var(--font-weight-bold);
    margin: 0 0 1.5rem;
}

.tv-promo .tv-description {
    font-size: var(--font-size-body);
    color: var(--color-light-gray);
    margin: 0 0 1.5rem;
    max-width: 370px;
}

.tv-promo .tv-features {
    list-style: none;
    font-weight: var(--font-weight-regular);
    padding-left: 0;
}

.tv-promo .tv-feature-title {
    position: relative;
    gap: 0.75rem;
    align-items: center;
    display: flex;
    margin-bottom: 1rem;
    font-size: var(--font-size-body);
}

.tv-promo .tv-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    background-color: var(--color-white);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
}

.tv-promo .tv-feature-description {
    font-size: var(--font-size-body-xs);
    color: var(--color-light-gray);
}

.tv-promo .tv-image {
    display: flex;
    align-items: center;
}

.tv-promo .tv-image img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    animation: floatY 3s ease-in-out infinite;
}

.tv-promo .tv-cta-wrapper {
    display: flex;
    width: fit-content;
    flex-direction: row;
    align-items: center;
    margin-top: 2rem;
    animation: wobble 3s ease 3s infinite;
    animation-fill-mode: both;
}

.tv-promo .tv-cta-wrapper:hover {
    animation-play-state: paused;
}

.tv-promo .tv-price-box {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
}

.tv-promo .tv-tag-title {
    font-size: var(--font-size-body-2xs);
    opacity: 0.6;
    font-weight: var(--font-weight-light);
}

.tv-promo .tv-price {
    color: var(--color-secondary);
    font-size: var(--font-size-md);
    line-height: 0;
    font-weight: var(--font-weight-bold);
}

.tv-promo .tv-disclaimer {
    font-size: var(--font-size-body-2xs);
    opacity: 0.6;
    font-weight: var(--font-weight-light);
    margin-top: 0.25rem;
}