@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Dancing+Script:wght@400..700&family=Fredoka:wght@300..700&family=Great+Vibes&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+DE+SAS:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nord-blue: #0B3954;
    --nord-blue-dark: #052135;
    --nord-blue-light: #1E88E5;
    --nord-purple: #4A148C;
    --nord-red: #E53935;
    --nord-teal: #00BCD4;
    --nord-grey: #424242;
    --nord-grey-light: #757575;
    --nord-grey-dark: #212121;
    --bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #212121;
    --text-blue: #0f1729;
    --text-light: #757575;
}

body {
    font-family: "Urbanist", sans-serif;
    line-height: 1.6;
    color: var(--text-blue);
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 41, 0.12);
    padding: 12px 24px;
    gap: 20px;
}

.header-hidden {
    transform: translateY(-120%);
    opacity: 0;
}

.header-scrolled .header-shell {
    box-shadow: 0 16px 32px rgba(15, 23, 41, 0.16);
}

.logo-div {
    display: flex;
    align-items: center;

}
.logo{
    width: 40px;
    height: auto;
}
.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #1e293b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-link {
    color: #111827;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 12px;
}

.btn-header-cta,
.btn-hero-cta,
.btn-section-cta,
.btn-subscribe,
.btn-promo-cta {
    background: var(--nord-red);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

/* Responsive Buttons */
@media (max-width: 968px) {
    .btn-header-cta,
    .btn-hero-cta,
    .btn-section-cta,
    .btn-subscribe,
    .btn-promo-cta {
        font-size: 15px;
        padding: 11px 22px;
    }
}

@media (max-width: 768px) {
    .btn-header-cta,
    .btn-hero-cta,
    .btn-section-cta,
    .btn-subscribe,
    .btn-promo-cta {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .btn-header-cta,
    .btn-hero-cta,
    .btn-section-cta,
    .btn-subscribe,
    .btn-promo-cta {
        font-size: 13px;
        padding: 9px 18px;
    }
}

.btn-header-cta:hover,
.btn-hero-cta:hover,
.btn-section-cta:hover,
.btn-subscribe:hover,
.btn-promo-cta:hover {
    background: #c62828;
}

.btn-gradient {
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    box-shadow: 0 10px 25px rgba(30, 156, 230, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #1786c8 0%, #6a2fd3 100%);
}

/* Hero Section */
.hero {
    background-image: url(./assets/hero-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* Deep dark blue */
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    color: var(--nord-blue-dark);
    text-align: center;
}

.gradient-overlay-vertical {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 1));
}

.gradient-overlay-horizontal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 1),
            transparent,
            rgba(255, 255, 255, 0.5));
}


/* Background geometric lines effect (optional, simplified) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content-new {
    width: 100%;
    position: relative;
}

/* Trustpilot Header */
.trustpilot-header {
    margin-bottom: 40px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trustpilot-logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

/* Responsive Trustpilot */
@media (max-width: 968px) {
    .trustpilot-logo {
        font-size: 22px;
    }
    
    .trustpilot-rating {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .trustpilot-header {
        margin-bottom: 30px;
        gap: 8px;
    }
    
    .trustpilot-logo {
        font-size: 20px;
    }
    
    .trustpilot-rating {
        font-size: 12px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .trustpilot-logo {
        font-size: 18px;
    }
    
    .trustpilot-rating {
        font-size: 11px;
        gap: 5px;
    }
}

.text-green {
    color: #00b67a;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    background: #00b67a;
    color: var(--white);
    padding: 4px;
    font-size: 12px;
}

/* Activation Badge */
.activation-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--text-blue);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Responsive Activation Badge */
@media (max-width: 768px) {
    .activation-badge {
        font-size: 13px;
        padding: 6px 16px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .activation-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
}

/* Hero Title */
.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Responsive Hero Title */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
}

.highlight-pink {
    background: linear-gradient(to right, #1e9ce6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.fr-badge {
    display: inline-block;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
    text-align: center !important;
    padding: 0 20px;
}

/* Responsive Hero Description */
@media (max-width: 968px) {
    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Device Icons */
.device-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.device-icons i {
    font-size: 32px;
    color: var(--text-blue);
    opacity: 0.9;
    transition: opacity 0.3s;
}

/* Responsive Device Icons */
@media (max-width: 768px) {
    .device-icons {
        gap: 20px;
    }
    
    .device-icons i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .device-icons {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .device-icons i {
        font-size: 24px;
    }
}

.device-icons i:hover {
    opacity: 1;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-start {
    background: linear-gradient(to right, #1e9ce6, #7c3aed);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.btn-test {
    background-color: var(--white);
    color: var(--text-blue);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.btn-start:hover {
    transform: translateY(-2px);
}

/* Responsive Hero Buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-start,
    .btn-test {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn-start,
    .btn-test {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* More than Section */
.more-than-section {
    padding: 30px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-blue);
    margin-bottom: 60px;
    text-align: center;
    padding: 0 20px;
}
.section-title>span{
    background: linear-gradient(to right, #1e9ce6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.section-title.white {
    color: var(--white);
}

/* Responsive Section Title */
@media (max-width: 1200px) {
    .section-title {
        font-size: 42px;
        margin-bottom: 50px;
    }
}

@media (max-width: 968px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 35px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
        padding: 0 10px;
        line-height: 1.3;
    }
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.feature-card-new {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.icon-outer-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, #1e9ce6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-inner-circle {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon-inner-circle i {
    font-size: 24px;
    color: var(--text-blue);
    position: relative;
}

.icon-inner-circle i.fa-play {
    margin-left: 3px;
}

.feature-card-new h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-card-new p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.7;
    text-align: left;
    text-align: center;
}

/* Responsive Feature Cards */
@media (max-width: 968px) {
    .feature-card-new h3 {
        font-size: 18px;
    }
    
    .feature-card-new p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .feature-card-new {
        padding: 25px 18px;
    }
    
    .feature-card-new h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .feature-card-new p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .feature-card-new h3 {
        font-size: 16px;
    }
    
    .feature-card-new p {
        font-size: 13px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card.dark-card {
    background: var(--nord-blue);
    color: var(--white);
    border: none;
}

.feature-card.gradient-card {
    background: linear-gradient(135deg, var(--nord-blue) 0%, var(--nord-purple) 100%);
    color: var(--white);
    border: none;
    grid-column: span 2;
}

.feature-image {
    position: relative;
    margin-bottom: 20px;
}

.person-icon {
    font-size: 80px;
}

.shield-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--nord-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-icon.globe {
    background: #E3F2FD;
    color: var(--nord-blue-light);
}

.feature-icon.shield-large {
    background: var(--nord-teal);
    color: var(--white);
    width: 120px;
    height: 120px;
    font-size: 60px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.dark-card p,
.gradient-card p {
    color: rgba(255, 255, 255, 0.9);
}

.network-graph {
    font-size: 60px;
    margin-top: 20px;
    opacity: 0.3;
}


/* IBO Pro Banner*/

.ibo-pro-banner {
    background: linear-gradient(135deg, #1e9ce6 0%, #3b82f6 50%, #2563eb 100%);
    border-radius: 20px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(30, 156, 230, 0.3);
    max-width: 1000px;
    margin: 0 auto 60px auto;
    overflow: hidden;
}

.ibo-pro-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.ibo-pro-icon-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.ibo-pro-icon-left i {
    font-size: 24px;
    color: var(--white);
}

.ibo-pro-content {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ibo-pro-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.ibo-pro-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    margin: 0;
    line-height: 1.3;
}

.ibo-pro-icon-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.gift-emoji {
    font-size: 32px;
    display: block;
    line-height: 1;
}

/* Responsive IBO Pro Banner */
@media (max-width: 968px) {
    .ibo-pro-banner {
        padding: 20px 30px;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .ibo-pro-title {
        font-size: 24px;
    }
    
    .ibo-pro-subtitle {
        font-size: 16px;
    }
    
    .ibo-pro-icon-left,
    .ibo-pro-icon-right {
        width: 45px;
        height: 45px;
    }
    
    .ibo-pro-icon-left i {
        font-size: 20px;
    }
    
    .gift-emoji {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .ibo-pro-banner-section {
        padding: 30px 0 15px 0;
    }
    
    .ibo-pro-banner {
        padding: 18px 24px;
        gap: 12px;
        flex-direction: row;
    }
    
    .ibo-pro-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .ibo-pro-subtitle {
        font-size: 15px;
    }
    
    .ibo-pro-icon-left,
    .ibo-pro-icon-right {
        width: 40px;
        height: 40px;
    }
    
    .ibo-pro-icon-left i {
        font-size: 18px;
    }
    
    .gift-emoji {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .ibo-pro-banner-section {
        padding: 25px 0 10px 0;
    }
    
    .ibo-pro-banner {
        padding: 16px 20px;
        gap: 10px;
        border-radius: 16px;
    }
    
    .ibo-pro-title {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .ibo-pro-subtitle {
        font-size: 14px;
    }
    
    .ibo-pro-icon-left,
    .ibo-pro-icon-right {
        width: 36px;
        height: 36px;
    }
    
    .ibo-pro-icon-left {
        border-radius: 10px;
    }
    
    .ibo-pro-icon-left i {
        font-size: 16px;
    }
    
    .gift-emoji {
        font-size: 20px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
}

.pricing-subtitle {
    text-align: center;
    color: var(--nord-grey-light);
    font-size: 18px;
    margin-bottom: 50px;
    padding: 0 20px;
}

/* Responsive Pricing Subtitle */
@media (max-width: 768px) {
    .pricing-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .pricing-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 36px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition-duration: 0.5s;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    border: 3px solid #60a5fa;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    transition-duration: 0.5s;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--text-blue);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Responsive Popular Badge */
@media (max-width: 768px) {
    .popular-badge {
        font-size: 12px;
        padding: 6px 20px;
    }
}

@media (max-width: 480px) {
    .popular-badge {
        font-size: 11px;
        padding: 5px 16px;
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* Responsive Pricing Header */
@media (max-width: 968px) {
    .pricing-header h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .pricing-header {
        margin-bottom: 28px;
        padding-bottom: 20px;
    }
    
    .pricing-header h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .pricing-header h3 {
        font-size: 15px;
        line-height: 1.3;
    }
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.pricing-card.featured .plan-name {
    color: #ffffff;
}

.plan-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 24px;
}

.pricing-card.featured .plan-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Responsive Price Amount */
@media (max-width: 968px) {
    .amount {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .amount {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .amount {
        font-size: 36px;
    }
}

.pricing-card.featured .amount {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Currency */
@media (max-width: 968px) {
    .currency {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .currency {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .currency {
        font-size: 20px;
    }
}

.pricing-card.featured .currency {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 16px;
    color: #64748b;
    text-align: center;
    display: block;
    margin-top: 4px;
}

/* Responsive Period */
@media (max-width: 768px) {
    .period {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .period {
        font-size: 13px;
    }
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Features List */
@media (max-width: 968px) {
    .features-list li {
        font-size: 14px;
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .features-list li {
        font-size: 13px;
        padding: 8px 0;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .features-list li {
        font-size: 12px;
        padding: 6px 0;
        gap: 10px;
    }
}

.pricing-card.featured .features-list li {
    color: rgba(255, 255, 255, 0.95);
}

.features-list i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card.featured .features-list i {
    background: #ffffff;
    color: #3b82f6;
}

.btn-subscribe {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    transition-duration: 0.5s;
}

.pricing-card.featured .btn-subscribe {
    background: #ffffff;
    color: #3b82f6;
    font-weight: 700;
}

.pricing-card.featured .btn-subscribe:hover {
    background: #f8fafc;
}

.pricing-card:not(.featured) .btn-subscribe {
    background: #ffffff;
    color: #3b82f6;
    border: 2px solid #e5e7eb;
    box-shadow: none;
}

.pricing-card:not(.featured) .btn-subscribe:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Lifetime Plan Styles */
.lifetime-card {
    background: #ffffff;
    color: var(--text-blue);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: visible;
}

@media (min-width: 969px) {
    .lifetime-card {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: calc(33.333% - 22px);
        width: 100%;
    }
}

.lifetime-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.lifetime-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    padding: 6px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.infinity-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
}

.limited-offer {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Limited Offer */
@media (max-width: 768px) {
    .limited-offer {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .limited-offer {
        font-size: 11px;
    }
}

.lifetime-card .pricing-header {
    margin-top: 0;
    border-bottom-color: #e5e7eb;
}

.lifetime-card .pricing-header h3 {
    color: var(--text-blue);
    font-size: 24px;
    font-weight: 700;
}

/* Responsive Lifetime Card Title */
@media (max-width: 968px) {
    .lifetime-card .pricing-header h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .lifetime-card .pricing-header h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .lifetime-card .pricing-header h3 {
        font-size: 18px;
    }
}

.lifetime-price {
    color: #fbbf24 !important;
    -webkit-text-fill-color: #fbbf24 !important;
    background: none !important;
}

.lifetime-currency {
    color: #fbbf24 !important;
    -webkit-text-fill-color: #fbbf24 !important;
    background: none !important;
}

.lifetime-card .period {
    color: #64748b;
}

.lifetime-card .features-list li {
    color: #475569;
}

.lifetime-card .features-list i {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
}

.btn-lifetime {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-lifetime:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .lifetime-card {
        margin: 0;
        grid-column: 1;
    }
}

/* Devices Section */
.devices-section {
    padding: 100px 0;
    background: var(--white);
}

.devices-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.devices-laptop {
    background: var(--nord-grey-dark);
    border-radius: 12px;
    padding: 20px;
}

.devices-screen {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    min-height: 300px;
}

.devices-map {
    height: 200px;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-radius: 8px;
    position: relative;
    margin-bottom: 20px;
}

.devices-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.devices-status i {
    font-size: 24px;
    color: var(--nord-blue-light);
}

.devices-right h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.devices-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.device-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #F5F5F5;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.device-item i {
    font-size: 32px;
    color: var(--nord-blue);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
    transition: background 0.3s;
}

/* Responsive FAQ */
@media (max-width: 968px) {
    .faq-question {
        font-size: 17px;
        padding: 18px 22px;
    }
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 15px;
        padding: 14px 18px;
    }
}

.faq-question:hover {
    background: #F5F5F5;
}

.faq-question i {
    color: var(--nord-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* Responsive FAQ Answer */
@media (max-width: 968px) {
    .faq-answer p {
        font-size: 15px;
        padding: 0 22px 18px 22px;
    }
}

@media (max-width: 768px) {
    .faq-answer p {
        font-size: 14px;
        padding: 0 20px 16px 20px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .faq-answer p {
        font-size: 13px;
        padding: 0 18px 14px 18px;
        line-height: 1.6;
    }
}

/* Footer */
.footer {
    background: var(--nord-grey-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 10px 24px rgba(30, 156, 230, 0.35);
}

.footer-logo .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Footer Description */
@media (max-width: 768px) {
    .footer-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-description {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* Footer Heading */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

/* Responsive Footer Heading */
@media (max-width: 768px) {
    .footer-heading {
        font-size: 17px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .footer-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--nord-teal);
}

/* Footer Links List */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

/* Responsive Footer Links */
@media (max-width: 768px) {
    .footer-links-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-links-list li a {
        font-size: 12px;
    }
}

.footer-links-list li a:hover {
    color: var(--nord-teal);
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-list li i {
    color: var(--nord-teal);
    font-size: 16px;
    width: 20px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

/* Responsive Footer Contact */
@media (max-width: 768px) {
    .footer-contact-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-contact-list li a {
        font-size: 12px;
    }
}

.footer-contact-list li a:hover {
    color: var(--nord-teal);
}

/* Footer Payment Logos */
.footer-payment-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.payment-logo-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.payment-logo-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.payment-logo-item img {
    max-width: 100%;
    max-height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Footer Bottom */
@media (max-width: 768px) {
    .footer-bottom {
        font-size: 13px;
        padding-top: 18px;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
    }
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-payment-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* Infinite marquee for sports carousel */
.sports-carousel {
    margin-top: 40px;
}

.league-carousel {
    margin-top: 40px;
}

.sports-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sports-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    animation: scroll-left 25s linear infinite;
}

.series-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    animation: scroll-left 50s linear infinite;
    margin-bottom: 40px;
}

.sports-item {
    flex: 0 0 auto;
    width: 210px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.sports-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Channels carousel (left -> right) */
.channel-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.channel-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: fit-content;
    animation: scroll-left 25s linear infinite reverse;
}

.channel-item {
    flex: 0 0 auto;
    width: 120px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.channel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.slider-section {
    padding-top: 40px;
}

.carousel-edge-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to right,
            #f8fafc 0%,
            rgba(248, 250, 252, 0.8) 40%,
            rgba(248, 250, 252, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

.carousel-edge-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to left,
            #f8fafc 0%,
            rgba(248, 250, 252, 0.8) 40%,
            rgba(248, 250, 252, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

* {
    font-family: "Urbanist", sans-serif;
}

/* Devices Showcase Section */
.devices-showcase-section {
    padding: 60px 0 40px 0;
}

.devices-showcase-title {
    color: var(--text-blue);
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.devices-showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    padding: 0px 50px;
    justify-items: center;
    align-items: stretch;
}

.device-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1.8/1;
    padding: 5px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.device-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.device-card img {
    display: block;
    max-height: 50px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* How It Works Section */
.how-it-works {
    
    color: var(--text-blue);
    padding: 100px 0;
}

.how-header {
    text-align: center;
    margin-bottom: 48px;
}

.how-subtitle {
    max-width: 760px;
    margin: 12px auto 0;
    color: var(--text-blue);
    font-size: 18px;
    line-height: 1.6;
    padding: 0 20px;
}

/* Responsive How Subtitle */
@media (max-width: 968px) {
    .how-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .how-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .how-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
}

.how-steps {
    display: grid;
    gap: 20px;
    max-width: 920px;
    margin: 0 auto 50px auto;
}

.how-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-blue);
}

.step-content p {
    color: var(--nord-grey-light);
    line-height: 1.7;
    font-size: 16px;
}

/* Responsive Step Content */
@media (max-width: 968px) {
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .step-content h3 {
        font-size: 17px;
    }
    
    .step-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .step-content h3 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
}

.how-cta-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.how-cta-card .cta-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-blue);
    margin-bottom: 6px;
}

.how-cta-card .cta-text p {
    color: var(--nord-grey-light);
    font-size: 16px;
}

/* Responsive How CTA Card */
@media (max-width: 968px) {
    .how-cta-card .cta-text h3 {
        font-size: 20px;
    }
    
    .how-cta-card .cta-text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .how-cta-card {
        padding: 20px 24px;
    }
    
    .how-cta-card .cta-text h3 {
        font-size: 18px;
    }
    
    .how-cta-card .cta-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .how-cta-card .cta-text h3 {
        font-size: 16px;
    }
    
    .how-cta-card .cta-text p {
        font-size: 13px;
    }
}

.how-cta-card .btn-section-cta {
    background: linear-gradient(to right, #1e9ce6, #7c3aed);
    padding: 14px 26px;
    border-radius: 10px;
}

/* CAN Banner */
.can-section {
    padding: 48px 0 28px 0;
}

.can-shell {
    background: linear-gradient(135deg, #0db45b 0%, #18c08c 25%, #c8941f 60%, #b0172d 100%);
    border-radius: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "left right";
    gap: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    color: var(--white);
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.can-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.12), transparent 38%),
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.09), transparent 30%);
    pointer-events: none;
}

.can-left {
    position: relative;
    z-index: 1;
    grid-area: left;
}

.can-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.35);
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.can-badge i {
    color: #ffd166;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.can-title {
    text-align: left;
    color: var(--white);
    margin: 16px 0 10px 0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

/* Responsive CAN Title */
@media (max-width: 968px) {
    .can-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .can-title {
        font-size: 24px;
        margin: 12px 0 8px 0;
    }
}

@media (max-width: 480px) {
    .can-title {
        font-size: 20px;
        margin: 10px 0 6px 0;
    }
}

.can-title span {
    background: linear-gradient(to right, #fffbd5, #fdd75c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.can-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 640px;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* Responsive CAN Description */
@media (max-width: 768px) {
    .can-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .can-desc {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

.can-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.can-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--white);
    font-size: 14px;
}

/* Responsive CAN Tags */
@media (max-width: 768px) {
    .can-tag {
        font-size: 13px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .can-tag {
        font-size: 12px;
        padding: 6px 10px;
    }
}

.can-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.can-actions .btn-section-cta {
    background: #ffd166;
    color: #0f1729;
    padding: 14px 24px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    font-weight: 800;
}

.can-actions .btn-section-cta:hover {
    background: #ffc041;
}

.can-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    font-size: 14px;
}

/* Responsive CAN Meta */
@media (max-width: 768px) {
    .can-meta {
        font-size: 13px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .can-meta {
        font-size: 12px;
        align-items: center;
        gap: 6px;
    }
    .can-actions{
        display: flex;
        flex-direction: column;
    }
}

.can-meta .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.can-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    position: relative;
    z-index: 1;
    align-items: end;
    grid-area: right;
}

.can-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.can-card img {
    display: block;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.can-card.large {
    grid-column: 1 / 2;
    max-height: 220px;
}

.can-card.mid {
    grid-column: 2 / 3;
    transform: translateY(6px);
    max-height: 190px;
}

.can-card.small {
    grid-column: 3 / 4;
    transform: translateY(12px);
    max-height: 170px;
}

.can-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {

    .hero-content,
    .why-content,
    .devices-content,
    .promo-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .features-grid-new {
        grid-template-columns: 1fr;
    }

    .feature-card.gradient-card {
        grid-column: span 1;
    }

    .protection-cards,
    .pricing-grid,
    .threats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-header,
    .protection-header,
    .threats-header,
    .control-info-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav {
        display: none;
    }

    .header-shell {
        border-radius: 0;
        box-shadow: none;
        padding: 12px 16px;
        width: 100%;
    }

    .header {
        padding: 0;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .can-shell {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas:
            "left"
            "right";
        padding: 26px;
        max-width: 680px;
    }

    .can-right {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }

    .can-card.mid {
        transform: translateY(0);
    }

    .can-card.small {
        transform: translateY(0);
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .can-shell {
        padding: 22px;
        max-width: 100%;
        grid-template-columns: 1fr;
        grid-template-areas:
            "left"
            "right";
    }

    .can-right {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .can-card.small {
        grid-column: span 1;
    }
}


@media (max-width: 768px) {
    .how-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Tablet */
@media (max-width: 1100px) {
    .devices-showcase-title {
        font-size: 38px;
        margin-bottom: 40px;
    }
    
    .devices-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .devices-showcase-section {
        padding: 40px 0 30px 0;
    }
    
    .devices-showcase-title {
        font-size: 28px;
        margin-bottom: 30px;
        letter-spacing: -0.3px;
    }
    
    .devices-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0;
    }
    
    .device-card {
        border-radius: 12px;
        padding: 12px;
        aspect-ratio: 1.6/1;
    }
    
    .device-card img {
        max-height: 36px;
    }
}

/* Very small mobile */
@media (max-width: 400px) {
    .devices-showcase-title {
        font-size: 24px;
    }
    
    .devices-showcase-grid {
        gap: 10px;
        padding: 0;
    }
    
    .device-card {
        padding: 10px;
    }
    
    .device-card img {
        max-height: 32px;
    }
}

/* Reviews Section */
.review-section {
    padding: 0 0 40px 0;
    background: var(--bg);
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    width: fit-content;
    will-change: transform;
}

.review-item {
    flex: 0 0 auto;
    width: 200px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.review-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .review-item {
        width: 200px;
        height: auto;
    }
    
    .reviews-carousel {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .review-item {
        width: 190px;
        height: auto;
    }
    
    .reviews-carousel {
        gap: 12px;
    }
}

/* Secure Text Section */
.secure-container {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 12px;
}

.secure-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 12px;
}
.secure-text-white{
    color: var(--text-blue);
}

/* Payment Logos Container */
.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Logos */
.logo {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.sport-title{
    font-size: 40px;
    max-width: 700px;
    margin: auto;
    padding: 0 20px;
}

/* Responsive Sport Title */
@media (max-width: 968px) {
    .sport-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .sport-title {
        font-size: 28px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .sport-title {
        font-size: 22px;
        padding: 0 10px;
        line-height: 1.3;
    }
}