* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    color: #ffffff;
    overflow-x: hidden;
}

.navbar {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.2 rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo-image {
    width: 160px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.logo-sub {
    font-size: 0.5rem;
    letter-spacing: 2px;
    color: #8b9dc3;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #e0e6f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #b91d47;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffffff;
}

.btn-get-started {
    background: linear-gradient(135deg, #8b1538 0%, #b91d47 100%);
    color: #ffffff;
    padding: 0.75rem 1.25rem 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 21, 56, 0.4);
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 21, 56, 0.6);
}

.btn-get-started .arrow-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    padding: 6px;
    color: #8b1538;
}

.hero {
    min-height: calc(100vh - 80px);
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
    background-image: url('../images/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
                rgba(5, 10, 20, 0.96) 0%, 
                rgba(10, 22, 40, 0.9) 34%, 
                rgba(14, 26, 48, 0.74) 58%, 
                rgba(11, 24, 45, 0.58) 82%,
                rgba(5, 10, 20, 0.48) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 690px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 20, 63, 0.38);
    box-shadow: 0 10px 30px rgba(255, 20, 63, 0.12);
}

.flag-icon {
    width: 24px;
    height: 18px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #ffffff 0%, #5eb3f6 25%, #c9184a 50%, #5eb3f6 75%, #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(94, 179, 246, 0.2)) drop-shadow(0 2px 8px rgba(201, 24, 74, 0.2));
    animation: hero-title-shimmer 8s linear infinite;
}

@keyframes hero-title-shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.hero-description {
    font-size: 1.18rem;
    line-height: 1.65;
    color: #d3dcea;
    margin-bottom: 2.25rem;
    max-width: 650px;
}

.features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.25rem;
    flex-wrap: nowrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.105) 0%, rgba(255, 255, 255, 0.04) 100%);
    padding: 1rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 14px 34px rgba(0, 0, 0, 0.22);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(255, 20, 63, 0.46);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(255, 20, 63, 0.18);
    transform: translateY(-3px);
}

.feature-icon {
    width: 34px;
    height: 34px;
    color: #ff4165;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(185, 29, 71, 0.4);
}

.feature-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.5rem;
}

.star-icon {
    width: 14px;
    height: 14px;
}

.rating-text {
    font-size: 0.65rem;
    color: #FFD700;
    margin-left: 0.3rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff143f 0%, #b91d47 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 34px rgba(255, 20, 63, 0.36);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(255, 20, 63, 0.48);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 20, 63, 0.45);
    transform: translateY(-3px);
}

.btn-arrow,
.gift-icon {
    width: 20px;
    height: 20px;
}

.no-credit-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #c8d3e6;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #4ade80;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 86%;
    height: 72%;
    background: radial-gradient(circle, rgba(255, 20, 63, 0.26) 0%, rgba(17, 135, 255, 0.18) 42%, transparent 72%);
    filter: blur(28px);
    transform: translateY(12px);
    pointer-events: none;
}

.mockup-image {
    width: 100%;
    max-width: 760px;
    height: auto;
    filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.62));
    position: relative;
    z-index: 1;
}

.why-choose {
    padding: 4.5rem 0 5rem;
    background: radial-gradient(circle at 50% 0%, rgba(12, 67, 115, 0.32) 0%, rgba(8, 28, 50, 0.95) 36%, #06192e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 20, 63, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1);
    }
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.7rem;
}

.section-label {
    display: inline-block;
    color: #ff143f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.12);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    min-height: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 2.5rem 1.8rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.045) 100%);
    border-color: rgba(255, 20, 63, 0.34);
    transform: translateY(-8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 54px rgba(0, 0, 0, 0.34);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:nth-child(1) {
    animation: cardFloat 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
    animation: cardFloat 6s ease-in-out infinite 1.5s;
}

.feature-card:nth-child(3) {
    animation: cardFloat 6s ease-in-out infinite 3s;
}

.feature-card:nth-child(4) {
    animation: cardFloat 6s ease-in-out infinite 4.5s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.feature-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, rgba(255, 20, 63, 0.15) 0%, rgba(255, 20, 63, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 20, 63, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff143f;
    box-shadow: 0 8px 24px rgba(255, 20, 63, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(255, 20, 63, 0.4);
}

.feature-card:nth-child(2) .feature-card-icon {
    background: linear-gradient(135deg, rgba(17, 135, 255, 0.15) 0%, rgba(17, 135, 255, 0.05) 100%);
    border-color: rgba(17, 135, 255, 0.4);
    color: #1187ff;
    box-shadow: 0 8px 24px rgba(17, 135, 255, 0.25);
}

.feature-card:nth-child(2):hover .feature-card-icon {
    box-shadow: 0 12px 32px rgba(17, 135, 255, 0.4);
}

.feature-card:nth-child(3) .feature-card-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: rgba(76, 175, 80, 0.4);
    color: #4caf50;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.25);
}

.feature-card:nth-child(3):hover .feature-card-icon {
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.feature-card:nth-child(4) .feature-card-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-color: rgba(255, 193, 7, 0.4);
    color: #ffc107;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.25);
}

.feature-card:nth-child(4):hover .feature-card-icon {
    box-shadow: 0 12px 32px rgba(255, 193, 7, 0.4);
}

.feature-card-icon svg {
    width: 36px;
    height: 36px;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-card-icon svg {
    transform: scale(1.1);
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:nth-child(1):hover .feature-card-title {
    color: #ff143f;
}

.feature-card:nth-child(2):hover .feature-card-title {
    color: #1187ff;
}

.feature-card:nth-child(3):hover .feature-card-title {
    color: #4caf50;
}

.feature-card:nth-child(4):hover .feature-card-title {
    color: #ffc107;
}

.feature-card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card-description {
    color: rgba(255, 255, 255, 0.9);
}

.devices-banner {
    margin-top: 3rem;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.devices-banner-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #b8c5d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.devices-track-wrapper {
    background: linear-gradient(90deg, 
        rgba(10, 22, 40, 0.8) 0%, 
        transparent 10%, 
        transparent 90%, 
        rgba(10, 22, 40, 0.8) 100%);
    padding: 1rem 0;
    position: relative;
}

.devices-banner::before,
.devices-banner::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    width: 150px;
    height: 120px;
    z-index: 2;
    pointer-events: none;
}

.devices-banner::before {
    left: 0;
    background: linear-gradient(to right, rgba(10, 22, 40, 1), transparent);
}

.devices-banner::after {
    right: 0;
    background: linear-gradient(to left, rgba(10, 22, 40, 1), transparent);
}

.devices-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.devices-track:hover {
    animation-play-state: paused;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(255, 20, 63, 0.15) 0%, rgba(255, 20, 63, 0.05) 100%);
    border: 1px solid rgba(255, 20, 63, 0.3);
    border-radius: 12px;
    min-width: 140px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 20, 63, 0.2);
}

.device-item:nth-child(1),
.device-item:nth-child(9) {
    background: linear-gradient(135deg, rgba(255, 20, 63, 0.15) 0%, rgba(255, 20, 63, 0.05) 100%);
    border-color: rgba(255, 20, 63, 0.4);
    box-shadow: 0 4px 12px rgba(255, 20, 63, 0.25);
}

.device-item:nth-child(2),
.device-item:nth-child(10) {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: rgba(255, 152, 0, 0.4);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.25);
}

.device-item:nth-child(3),
.device-item:nth-child(11) {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.25);
}

.device-item:nth-child(4),
.device-item:nth-child(12) {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(156, 39, 176, 0.05) 100%);
    border-color: rgba(156, 39, 176, 0.4);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.25);
}

.device-item:nth-child(5),
.device-item:nth-child(13) {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.05) 100%);
    border-color: rgba(33, 150, 243, 0.4);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.25);
}

.device-item:nth-child(6),
.device-item:nth-child(14) {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.15) 0%, rgba(0, 188, 212, 0.05) 100%);
    border-color: rgba(0, 188, 212, 0.4);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.25);
}

.device-item:nth-child(7),
.device-item:nth-child(15) {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(233, 30, 99, 0.05) 100%);
    border-color: rgba(233, 30, 99, 0.4);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.25);
}

.device-item:nth-child(8),
.device-item:nth-child(16) {
    background: linear-gradient(135deg, rgba(96, 125, 139, 0.15) 0%, rgba(96, 125, 139, 0.05) 100%);
    border-color: rgba(96, 125, 139, 0.4);
    box-shadow: 0 4px 12px rgba(96, 125, 139, 0.25);
}

.device-item:hover {
    transform: translateY(-5px);
}

.device-item:nth-child(1):hover,
.device-item:nth-child(9):hover {
    box-shadow: 0 8px 24px rgba(255, 20, 63, 0.4);
    border-color: rgba(255, 20, 63, 0.6);
}

.device-item:nth-child(2):hover,
.device-item:nth-child(10):hover {
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
    border-color: rgba(255, 152, 0, 0.6);
}

.device-item:nth-child(3):hover,
.device-item:nth-child(11):hover {
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
    border-color: rgba(76, 175, 80, 0.6);
}

.device-item:nth-child(4):hover,
.device-item:nth-child(12):hover {
    box-shadow: 0 8px 24px rgba(156, 39, 176, 0.4);
    border-color: rgba(156, 39, 176, 0.6);
}

.device-item:nth-child(5):hover,
.device-item:nth-child(13):hover {
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
    border-color: rgba(33, 150, 243, 0.6);
}

.device-item:nth-child(6):hover,
.device-item:nth-child(14):hover {
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.4);
    border-color: rgba(0, 188, 212, 0.6);
}

.device-item:nth-child(7):hover,
.device-item:nth-child(15):hover {
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
    border-color: rgba(233, 30, 99, 0.6);
}

.device-item:nth-child(8):hover,
.device-item:nth-child(16):hover {
    box-shadow: 0 8px 24px rgba(96, 125, 139, 0.4);
    border-color: rgba(96, 125, 139, 0.6);
}

.device-item svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.device-item:nth-child(1) svg,
.device-item:nth-child(9) svg {
    color: #ff143f;
}

.device-item:nth-child(2) svg,
.device-item:nth-child(10) svg {
    color: #ff9800;
}

.device-item:nth-child(3) svg,
.device-item:nth-child(11) svg {
    color: #4caf50;
}

.device-item:nth-child(4) svg,
.device-item:nth-child(12) svg {
    color: #9c27b0;
}

.device-item:nth-child(5) svg,
.device-item:nth-child(13) svg {
    color: #2196f3;
}

.device-item:nth-child(6) svg,
.device-item:nth-child(14) svg {
    color: #00bcd4;
}

.device-item:nth-child(7) svg,
.device-item:nth-child(15) svg {
    color: #e91e63;
}

.device-item:nth-child(8) svg,
.device-item:nth-child(16) svg {
    color: #607d8b;
}

.device-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.how-it-works {
    padding: 3.8rem 0 2.2rem;
    background: radial-gradient(circle at 50% 0%, rgba(12, 67, 115, 0.28) 0%, rgba(8, 28, 50, 0.96) 38%, #06192e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pricing-section {
    padding: 5.5rem 0 6rem;
    background: linear-gradient(180deg, #06192e 0%, rgba(8, 28, 50, 0.98) 50%, #06192e 100%);
    border-bottom: 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 20, 63, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pricingPulse 12s ease-in-out infinite;
}

@keyframes pricingPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
    }
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-top: 10px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-top: 25px;
}


.pricing-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.15) 0%, rgba(255, 255, 255, 0.035) 100%);
    border: 1px solid rgba(34, 197, 94, 0.46);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 48px rgba(34, 197, 94, 0.18);
    animation: greenGlow 3s ease-in-out infinite;
}

.pricing-card.featured:hover {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.19) 0%, rgba(255, 255, 255, 0.045) 100%);
    border-color: rgba(34, 197, 94, 0.6);
}

.best-offer-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.7), 0 0 40px rgba(34, 197, 94, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 1000;
    white-space: nowrap;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 6px 25px rgba(34, 197, 94, 0.7), 0 0 40px rgba(34, 197, 94, 0.5);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 35px rgba(34, 197, 94, 0.9), 0 0 60px rgba(34, 197, 94, 0.7);
    }
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: -2rem;
    margin-right: -2rem;
    gap: 0.45rem;
}

.original-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: line-through;
    text-decoration-color: #ff143f;
    text-decoration-thickness: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.current-price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.2rem;
    width: 100%;
    padding: 1.1rem 0;
    border-radius: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.current-price::before {
    display: none;
}

.current-price::after {
    display: none;
}

.pricing-card.featured .current-price {
    background: rgba(255, 255, 255, 0.03);
    border-top-color: rgba(34, 197, 94, 0.25);
    border-bottom-color: rgba(34, 197, 94, 0.25);
    box-shadow: none;
}

.pricing-card.featured .current-price::after {
    display: none;
}

.currency {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-right: 0;
    margin-top: 0;
    line-height: 1;
}

.amount {
    font-size: 3.05rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.14);
}

.pricing-period {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: #4caf50;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.3));
}

.pricing-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.secured-badge {
    width: 100%;
    max-width: 290px;
    min-height: 50px;
    height: auto;
    margin: 0 auto 0.5rem;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .secured-badge {
    opacity: 1;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
    transform: translateY(-2px);
}

.pricing-btn.featured-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.pricing-btn.featured-btn:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

@keyframes subtlePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 30px rgba(0, 0, 0, 0.16);
    }
    50% {
        opacity: 0.85;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 35px rgba(0, 0, 0, 0.2);
    }
}

@keyframes redGlow {
    0%, 100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 30px rgba(0, 0, 0, 0.16), 0 0 0 rgba(255, 20, 63, 0);
    }
    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 20, 63, 0.3);
    }
}

@keyframes blueGlow {
    0%, 100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 30px rgba(0, 0, 0, 0.16), 0 0 0 rgba(47, 140, 255, 0);
    }
    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 35px rgba(0, 0, 0, 0.2), 0 0 15px rgba(47, 140, 255, 0.22);
    }
}

@keyframes greenGlow {
    0%, 100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 30px rgba(0, 0, 0, 0.16), 0 0 0 rgba(34, 197, 94, 0);
    }
    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 35px rgba(0, 0, 0, 0.2), 0 0 30px rgba(34, 197, 94, 0.5);
    }
}

@keyframes equalsPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
        opacity: 0.7;
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2);
        opacity: 1;
    }
}

.delivery-time-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.04) 100%);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 8px;
    padding: 2rem 1.5rem 1.55rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 30px rgba(0, 0, 0, 0.16);
    min-height: 170px;
    text-align: center;
    transition: all 0.3s ease;
    animation: greenGlow 3s ease-in-out infinite;
}

.delivery-time-badge:hover {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.16) 0%, rgba(34, 197, 94, 0.06) 100%);
    border-color: rgba(34, 197, 94, 0.5);
}

.clock-icon {
    width: 36px;
    height: 36px;
    color: #22c55e;
    flex-shrink: 0;
    padding: 8px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
}

.delivery-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: center;
}

.delivery-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delivery-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 200px 60px 1fr 1fr 1fr 60px 200px;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.how-it-works-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1.5rem 1.55rem;
    min-height: 170px;
    background: linear-gradient(180deg, rgba(255, 20, 63, 0.08) 0%, rgba(255, 20, 63, 0.02) 100%);
    border: 1px solid rgba(255, 20, 63, 0.25);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 30px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
    animation: redGlow 3s ease-in-out infinite;
}

.how-it-works-column:hover {
    background: linear-gradient(180deg, rgba(255, 20, 63, 0.12) 0%, rgba(255, 20, 63, 0.03) 100%);
    border-color: rgba(255, 20, 63, 0.35);
}

.how-it-works-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ff143f;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.how-it-works-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
}

.step-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.equals-sign {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    animation: equalsPulse 2.5s ease-in-out infinite;
    display: inline-block;
    line-height: 1;
}

.step-card {
    min-height: 240px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 2rem 2rem 1.55rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 30px rgba(0, 0, 0, 0.16);
    animation: subtlePulse 3.5s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.step-card:nth-child(4) {
    animation-delay: 0.6s;
}

.step-card:nth-child(5) {
    animation-delay: 0.9s;
}

.step-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.095) 0%, rgba(255, 255, 255, 0.035) 100%);
    border-color: rgba(255, 255, 255, 0.28);
}

.step-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #071c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    border: 3px solid #2f8cff;
    box-shadow: 0 0 20px rgba(47, 140, 255, 0.45);
}

.step-card:nth-child(4) .step-number {
    border-color: #e20f3b;
    background: #7d0c26;
    box-shadow: 0 0 20px rgba(226, 15, 59, 0.45);
}

.step-icon {
    width: 44px;
    height: 44px;
    margin: 1rem auto 1rem;
    padding: 9px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.65rem;
}

.step-description {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    max-width: 175px;
    margin: 0 auto;
}

.step-connector {
    position: absolute;
    top: 70px;
    right: -2.2rem;
    width: 40px;
    height: 38px;
    border-top: 2px dashed rgba(255, 255, 255, 0.72);
    border-radius: 60% 60% 0 0;
    background: transparent;
    transform: translateY(-50%);
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 3px;
    width: 0;
    height: 0;
    border-left: 7px solid rgba(255, 255, 255, 0.82);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transform: rotate(28deg);
}

.step-card:last-child .step-connector {
    display: none;
}

.proudly-serving {
    padding: 1.4rem 0 3rem;
    background: #06192e;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.serving-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 1rem 1.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.065) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.serving-container::after {
    content: '';
    position: absolute;
    right: 210px;
    bottom: 0;
    width: 360px;
    height: 58px;
    opacity: 0.12;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.55), transparent);
    clip-path: polygon(0 100%, 0 80%, 4% 80%, 4% 55%, 7% 55%, 7% 100%, 12% 100%, 12% 40%, 15% 40%, 15% 100%, 23% 100%, 23% 58%, 25% 58%, 25% 35%, 28% 35%, 28% 100%, 36% 100%, 36% 42%, 42% 30%, 48% 42%, 48% 100%, 54% 100%, 54% 65%, 58% 65%, 58% 100%, 64% 100%, 64% 45%, 67% 45%, 67% 100%, 73% 100%, 73% 25%, 77% 25%, 77% 100%, 83% 100%, 83% 55%, 86% 55%, 86% 100%, 100% 100%);
}

.serving-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.uk-flag {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.uk-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.serving-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.serving-description {
    font-size: 0.95rem;
    color: #b8c5d9;
}

.btn-trial {
    background: #ffffff;
    color: #0a1628;
    padding: 0.85rem 1.45rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-trial:hover {
    background: #f3f6fb;
    transform: translateY(-2px);
}

.subscription-features {
    padding: 5rem 0 5.5rem;
    background: radial-gradient(circle at 50% 0%, rgba(12, 67, 115, 0.32) 0%, rgba(8, 28, 50, 0.95) 36%, #06192e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
    overflow: hidden;
}

.subscription-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(47, 140, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: subscriptionPulse 10s ease-in-out infinite;
}

@keyframes subscriptionPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-label {
    display: inline-block;
    color: #ff143f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.features-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.subscription-card {
    min-height: 220px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.2rem 1.5rem 1.8rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.subscription-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
}

.subscription-card:hover::before {
    left: 100%;
}

.subscription-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.subscription-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.subscription-card:hover .subscription-icon {
    transform: scale(1.15) rotate(5deg);
}

.subscription-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.subscription-card:hover .subscription-icon img {
    transform: scale(1.1);
}

.subscription-icon.live-tv {
    background: linear-gradient(135deg, rgba(255, 20, 63, 0.2) 0%, rgba(255, 20, 63, 0.05) 100%);
    border-color: #ff143f;
    box-shadow: 0 0 20px rgba(255, 20, 63, 0.4);
}

.subscription-icon.sports {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-color: #ffc107;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.subscription-icon.movies {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(156, 39, 176, 0.05) 100%);
    border-color: #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.4);
}

.subscription-icon.series {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2) 0%, rgba(33, 150, 243, 0.05) 100%);
    border-color: #2196f3;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.4);
}

.subscription-icon.kids {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: #4caf50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.subscription-icon.international {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2) 0%, rgba(0, 188, 212, 0.05) 100%);
    border-color: #00bcd4;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

.subscription-icon.football {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: #4caf50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.subscription-icon.basketball {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: #ff9800;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.4);
}

.subscription-icon.american-football {
    background: linear-gradient(135deg, rgba(121, 85, 72, 0.2) 0%, rgba(121, 85, 72, 0.05) 100%);
    border-color: #795548;
    box-shadow: 0 0 20px rgba(121, 85, 72, 0.4);
}

.subscription-icon.f1 {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(244, 67, 54, 0.05) 100%);
    border-color: #f44336;
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.4);
}

.subscription-icon.wrestling {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(156, 39, 176, 0.05) 100%);
    border-color: #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.4);
}

.subscription-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.subscription-card:hover .subscription-title {
    color: #2f8cff;
    transform: translateY(-2px);
}

.subscription-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.subscription-card:hover .subscription-desc {
    color: rgba(255, 255, 255, 0.9);
}

.footer {
    background: #050a14;
    padding: 2rem 0 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #8b9dc3;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: none;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b9dc3;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8b1538 0%, #b91d47 100%);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    color: #8b9dc3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #b91d47;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #8b9dc3;
    font-size: 0.95rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: #b91d47;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span {
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    color: #8b9dc3;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: #8b9dc3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #b91d47;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-separator {
        display: none;
    }
    
    .how-it-works-column {
        text-align: center;
        align-items: center;
        padding: 1rem;
    }
    
    .delivery-time-badge {
        margin-top: 1rem;
    }

    .step-connector {
        display: none;
    }

    .subscription-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 4.5rem 0 3.5rem;
    }

    .hero-container {
        gap: 2rem;
        padding: 0 1.25rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .delivery-time-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
    }

    .delivery-label {
        font-size: 0.8rem;
    }

    .delivery-value {
        font-size: 1.2rem;
    }

    .devices-banner-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .feature-item {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.85rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .subscription-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.75rem 1.35rem;
    }

    .pricing-plan {
        font-size: 1.35rem;
    }

    .pricing-price {
        margin-left: -1.35rem;
        margin-right: -1.35rem;
    }

    .current-price {
        padding: 0.95rem 0;
    }

    .currency {
        font-size: 1rem;
    }

    .amount {
        font-size: 2.65rem;
    }

    .step-card {
        min-height: 210px;
        padding: 1.75rem 1.5rem 1.4rem;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-description {
        max-width: 100%;
        font-size: 0.82rem;
    }

    .serving-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 1rem 1.2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.channels-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    text-align: center;
}

.channels-hero .section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.channels-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
}

.channels-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.channels-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
    color: #fff;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.channels-grid::-webkit-scrollbar {
    width: 10px;
}

.channels-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.channels-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 10px;
}

.channels-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(5px);
}

.channel-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.channel-info {
    flex: 1;
}

.channel-category {
    font-size: 0.75rem;
    color: rgba(59, 130, 246, 1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.channel-name {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    margin-top: 0.25rem;
}

.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #06192e 0%, rgba(8, 28, 50, 0.98) 50%, #06192e 100%);
    position: relative;
    overflow: hidden;
}

.faq-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-title .highlight {
    color: #ff143f;
}

.faq-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 20, 63, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ff143f;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: #ff143f;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 2rem 1.5rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr;
        max-height: 500px;
    }
    
    .tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.08;
        padding-bottom: 0.35rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-image::before {
        width: 100%;
        height: 62%;
    }

    .mockup-image {
        max-width: 100%;
    }

    .feature-item {
        padding: 0.9rem 1rem;
    }

    .subscription-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.5rem 1.1rem;
    }

    .pricing-plan {
        font-size: 1.2rem;
    }

    .pricing-price {
        margin-left: -1.1rem;
        margin-right: -1.1rem;
    }

    .current-price {
        padding: 0.85rem 0;
    }

    .currency {
        font-size: 0.92rem;
    }

    .amount {
        font-size: 2.25rem;
    }

    .step-card {
        min-height: auto;
    }
    
    .channels-section {
        padding: 4rem 0;
    }
    
    .channels-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .tab-btn svg {
        width: 20px;
        height: 20px;
    }

    .footer-container {
        padding: 0 1rem;
    }
}

.legal-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    padding: 8rem 2rem 4rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-content h2 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 20, 63, 0.3);
}

.legal-content h3 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: #ff143f;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-content a:hover {
    color: #ff3d5f;
    border-bottom-color: #ff3d5f;
}

.legal-content strong {
    color: #fff;
    font-weight: 600;
}

.legal-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.legal-links ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    padding-left: 0;
    list-style: none;
}

.legal-links li {
    margin-bottom: 0;
}

.legal-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 20, 63, 0.1);
    border: 1px solid rgba(255, 20, 63, 0.3);
    border-radius: 8px;
    color: #ff143f;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.legal-links a:hover {
    background: rgba(255, 20, 63, 0.2);
    border-color: #ff143f;
    transform: translateY(-2px);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 20, 63, 0.5);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 20, 63, 0.1);
    border-radius: 50%;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ff143f;
}

.contact-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.reveal-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff143f 0%, #ff3d5f 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reveal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 20, 63, 0.3);
}

.contact-cta {
    background: linear-gradient(135deg, rgba(255, 20, 63, 0.1) 0%, rgba(255, 61, 95, 0.1) 100%);
    border: 1px solid rgba(255, 20, 63, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.contact-cta h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff143f 0%, #ff3d5f 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 20, 63, 0.4);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 1.5rem 3rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .legal-links ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 1.75rem;
    }
    
    .legal-content {
        padding: 1.5rem 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.35rem;
    }
}
