@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;
    }
}

a {
    text-decoration: none;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 12px 24px;
    gap: 20px;
}

.header-hidden {
    transform: translateY(-120%);
    opacity: 0;
}

.header-scrolled .header {
    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: linear-gradient(135deg, #1786c8 0%, #6a2fd3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 156, 230, 0.4);
}

.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/bg/bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 90vh;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Left Content */
.hero-left {
    color: var(--white);
}

/* Trustpilot Badge */
.trustpilot-badge{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.trustpilot-badge> img:first-child {
    width: 140px;
    height: auto;
}
.trustpilot-badge> img:last-child {
    width: 200px;
    height: auto;
}

/* Hero Title */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
    text-align: left;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    text-align: left;
}

/* Stats Cards */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 5px 10px;
    text-align: center;
    flex: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* CTA Buttons */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: flex-start;
}

.btn-view-plans {
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(30, 156, 230, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-view-plans:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 156, 230, 0.5);
}

.btn-instant-activation {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-instant-activation:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.btn-instant-activation i {
    font-size: 14px;
}

/* Right Content - Glassmorphism Card */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glassmorphism-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 100% ;
}

/* Refund Badge */
.refund-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.refund-badge i {
    font-size: 12px;
}

/* Play Icon */
.play-icon-wrapper {
    margin-bottom: 30px;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(30, 156, 230, 0.5);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.play-icon:hover {
    transform: scale(1.1);
}

.play-icon i {
    color: var(--white);
    font-size: 28px;
    margin-left: 4px;
}

/* Glass Card Content */
.glass-card-content {
    width: 100%;
}

.glass-card-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.4;
}

.glass-card-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-card-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-wrapper {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 42px;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        max-width: 100%;
    }
    
    .trustpilot-badge {
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .glassmorphism-card {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        background-attachment: scroll;
    }
    .play-icon-wrapper {
        margin-top: 30px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .btn-view-plans,
    .btn-instant-activation {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .glassmorphism-card {
        padding: 30px 24px;
        min-height: 350px;
    }
    
    .glass-card-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-description {
        font-size: 15px;
        text-align: center;
    }
    
    .trustpilot-badge {
        align-items: center;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .hero-ctas {
        justify-content: center;
        align-items: center;
    }
    
    .btn-view-plans,
    .btn-instant-activation {
        font-size: 14px;
        padding: 14px 24px;
    }
    
    .glassmorphism-card {
        padding: 24px 20px;
        min-height: 300px;
    }
    
    .play-icon {
        width: 70px;
        height: 70px;
    }
    
    .play-icon i {
        font-size: 24px;
    }
    
    .glass-card-text {
        font-size: 18px;
    }
    
    .glass-card-button {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .refund-badge {
        top: 16px;
        right: 16px;
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Old Trustpilot and Activation Badge styles removed - replaced with new hero design */

/* 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;
}


/* 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;
    }
}
.hero-title>span{
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
/* More than Section */
.more-than-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-blue);
    margin-bottom: 60px;
    text-align: center;
    padding: 0 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.section-title>span{
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
    position: relative;
}
.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: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 156, 230, 0.1);
}

.feature-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 156, 230, 0.15);
    border-color: rgba(30, 156, 230, 0.2);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.icon-outer-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(30, 156, 230, 0.3);
}

.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, rgba(30, 156, 230, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    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);
    border: 1px solid rgba(255, 255, 255, 0.2);
    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 {
    background-image: url(./assets/bg/bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.pricing-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}



.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: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    padding: 48px 36px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    color: var(--white);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
    transition-duration: 0.5s;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(30, 156, 230, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(30, 156, 230, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    background: linear-gradient(135deg, rgba(30, 156, 230, 0.4) 0%, rgba(124, 58, 237, 0.4) 100%);
    box-shadow: 0 16px 50px rgba(30, 156, 230, 0.5);
    transition-duration: 0.5s;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(30, 156, 230, 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 rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--white);
}

/* 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, #1e9ce6 0%, #7c3aed 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, #1e9ce6 0%, #7c3aed 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: rgba(255, 255, 255, 0.8);
    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.9);
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    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, 1);
}

.features-list i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 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: #1e9ce6;
}

.btn-subscribe {
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 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%;
    text-align: center;
    box-shadow: 0 8px 24px rgba(30, 156, 230, 0.4);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 156, 230, 0.5);
    transition-duration: 0.5s;
}

.pricing-card.featured .btn-subscribe {
    background: #ffffff;
    color: #1e9ce6;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.pricing-card.featured .btn-subscribe:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

.pricing-card:not(.featured) .btn-subscribe {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pricing-card:not(.featured) .btn-subscribe:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 32px rgba(30, 156, 230, 0.3);
}

/* Lifetime Plan Styles */
.lifetime-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    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, #1e9ce6 0%, #7c3aed 100%);
    padding: 6px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(30, 156, 230, 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: rgba(255, 255, 255, 0.2);
}

.lifetime-card .pricing-header h3 {
    color: var(--white);
    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: rgba(255, 255, 255, 0.8);
}

.lifetime-card .features-list li {
    color: rgba(255, 255, 255, 0.9);
}

.lifetime-card .features-list i {
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    color: #ffffff;
}

.btn-lifetime {
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(30, 156, 230, 0.4);
}

.btn-lifetime:hover {
    background: linear-gradient(135deg, #1786c8 0%, #6a2fd3 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 156, 230, 0.5);
}

@media (max-width: 968px) {
    .pricing-section {
        background-attachment: scroll;
        padding: 80px 0;
    }
    
    .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;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    .pricing-card{
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }
}

/* 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;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(30, 156, 230, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(30, 156, 230, 0.2);
    box-shadow: 0 4px 20px rgba(30, 156, 230, 0.08);
}

.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: linear-gradient(135deg, rgba(30, 156, 230, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    color: var(--text-blue);
}

.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;
    background: var(--white);
}

.sport-section {
    background: var(--white);
    padding: 10px 0 40px 0;
}

.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: 48px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.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: 28px;
    align-items: flex-start;
    background: var(--white);
    border: 2px solid rgba(30, 156, 230, 0.08);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(30, 156, 230, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.how-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1e9ce6 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.how-step:hover::before {
    opacity: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 28px;
    box-shadow: 0 12px 32px rgba(30, 156, 230, 0.35), 0 0 0 0 rgba(30, 156, 230, 0.4);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.how-step:hover .step-number {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 16px 40px rgba(30, 156, 230, 0.45), 0 0 0 4px rgba(30, 156, 230, 0.1);
}

.how-step:hover .step-number::after {
    width: 200px;
    height: 200px;
}

.how-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 156, 230, 0.12), 0 0 0 1px rgba(30, 156, 230, 0.1);
    border-color: rgba(30, 156, 230, 0.2);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.step-content {
    flex: 1;
    padding-top: 4px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-blue);
    letter-spacing: -0.3px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.how-step:hover .step-content h3 {
    color: #1e9ce6;
}

.step-content p {
    color: #64748b;
    line-height: 1.75;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
}

/* 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: linear-gradient(135deg, rgba(30, 156, 230, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    border: 2px solid rgba(30, 156, 230, 0.12);
    border-radius: 28px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 8px 40px rgba(30, 156, 230, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.how-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.how-cta-card:hover::before {
    left: 100%;
}

.how-cta-card:hover {
    box-shadow: 0 16px 60px rgba(30, 156, 230, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-6px);
    border-color: rgba(30, 156, 230, 0.25);
    background: linear-gradient(135deg, rgba(30, 156, 230, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.how-cta-card .cta-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.how-cta-card .cta-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-blue);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.how-cta-card .cta-text p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.how-cta-card .btn-section-cta {
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    padding: 18px 36px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(30, 156, 230, 0.35);
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.how-cta-card .btn-section-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 156, 230, 0.45);
}

/* Responsive How It Works */
@media (max-width: 968px) {
    .how-it-works {
        padding: 100px 0;
    }
    
    .how-header {
        margin-bottom: 60px;
    }
    
    .how-subtitle {
        font-size: 18px;
    }
    
    .how-steps {
        gap: 28px;
        margin-bottom: 60px;
    }
    
    .how-step {
        padding: 32px 28px;
        gap: 24px;
    }
    
    .step-number {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    
    .step-content h3 {
        font-size: 22px;
    }
    
    .step-content p {
        font-size: 16px;
    }
    
    .how-cta-card {
        padding: 40px 44px;
    }
    
    .how-cta-card .cta-text h3 {
        font-size: 24px;
    }
    
    .how-cta-card .cta-text p {
        font-size: 16px;
    }
    
    .how-cta-card .btn-section-cta {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }
    
    .how-header {
        margin-bottom: 50px;
    }
    
    .how-subtitle {
        font-size: 17px;
        margin-top: 16px;
    }
    
    .how-steps {
        gap: 24px;
        margin-bottom: 50px;
    }
    
    .how-step {
        padding: 28px 24px;
        gap: 20px;
        border-radius: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 22px;
        border-radius: 16px;
    }
    
    .step-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: 15px;
    }
    
    .how-cta-card {
        padding: 32px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        border-radius: 24px;
    }
    
    .how-cta-card .cta-text h3 {
        font-size: 22px;
    }
    
    .how-cta-card .cta-text p {
        font-size: 15px;
    }
    
    .how-cta-card .btn-section-cta {
        width: 100%;
        padding: 16px 28px;
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-header {
        margin-bottom: 40px;
    }
    
    .how-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .how-steps {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .how-step {
        padding: 24px 20px;
        gap: 18px;
        border-radius: 18px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 20px;
        border-radius: 14px;
    }
    
    .step-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .how-cta-card {
        padding: 28px 24px;
        border-radius: 20px;
        gap: 20px;
    }
    
    .how-cta-card .cta-text h3 {
        font-size: 20px;
    }
    
    .how-cta-card .cta-text p {
        font-size: 14px;
    }
    
    .how-cta-card .btn-section-cta {
        padding: 14px 24px;
        font-size: 15px;
    }
}

.how-cta-card .btn-section-cta {
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%);
    padding: 18px 36px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(30, 156, 230, 0.35);
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.how-cta-card .btn-section-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 156, 230, 0.45);
}

/* 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;
    }
}



/* 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: 80px 0;
    background: var(--white);
}

/* Reviews Carousel Styles */
.reviews-carousel-wrapper {
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.reviews-carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.reviews-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 20px 0;
    align-items: center;
}

.review-card-item-wrapper {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
}

/* Review Card Styling - Premium Design */
.review-card-item {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 156, 230, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 156, 230, 0.15);
    border-color: rgba(30, 156, 230, 0.2);
}

.review-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px;
    display: block;
}

.review-card-item:hover .review-image {
    transform: scale(1.05);
}
.review-stars{
    margin-top: 10px;
}

/* Review Card Content */
.review-card-item .p-4 {
    padding: 24px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Stars Styling */
.review-card-item .text-warning {
    color: #ffc107 !important;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.review-card-item .text-warning i,
.review-card-item .text-warning .bi-star-fill,
.review-card-item .text-warning .bi-star-half {
    color: #ffc107 !important;
    font-size: 20px;
    line-height: 1;
}

.review-card-item .text-warning .bi-star-half {
    color: #ffc107 !important;
}

/* Review Text */
.review-card-item .text-white-50 {
    color: #6b7280 !important;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Customer Info */
.review-card-item .d-flex.align-items-center {
    margin-top: auto;
    gap: 12px;
}

@media (max-width: 768px) {
    .review-card-item .d-flex.align-items-center {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .review-card-item .d-flex.align-items-center {
        gap: 8px;
    }
}

.review-card-item .bg-primary {
    background: linear-gradient(135deg, #1e9ce6 0%, #7c3aed 100%) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--white) !important;
    margin-right: 0 !important;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 156, 230, 0.3);
}

.review-card-item h6 {
    color: var(--text-blue) !important;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.review-card-item small {
    color: #9ca3af !important;
    font-size: 13px;
}

/* Responsive adjustments for reviews carousel */
@media (max-width: 992px) {
    .review-card-item-wrapper {
        flex: 0 0 calc(50% - 12px);
    }
    
    .reviews-carousel-track {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .payment-logos{
        gap: 10px;
        padding: 8px;
    }
    .review-section {
        padding: 50px 0;
    }
    
    .review-image {
        height: 180px !important;
        border-radius: 16px !important;
        margin-bottom: 16px !important;
    }
    
    .review-card-item-wrapper {
        flex: 0 0 calc(100% - 32px);
        max-width: calc(100% - 32px);
        min-width: calc(100% - 32px);
        margin: 0 auto;
    }
    
    .reviews-carousel-track {
        gap: 20px;
        justify-content: flex-start;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .review-card-item {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 20px !important;
        border-radius: 16px;
    }
    
    .review-card-item .p-4 {
        padding: 0 !important;
    }
    
    .review-stars {
        margin-top: 8px !important;
        margin-bottom: 12px !important;
    }
    
    .review-card-item .text-warning i,
    .review-card-item .text-warning .bi-star-fill,
    .review-card-item .text-warning .bi-star-half {
        font-size: 18px !important;
    }
    
    .review-card-item .text-white-50 {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
    }
    
    .review-card-item .bg-primary {
        width: 44px !important;
        height: 44px !important;
        font-size: 15px !important;
    }
    
    .review-card-item h6 {
        font-size: 15px !important;
        margin-bottom: 2px !important;
    }
    
    .review-card-item small {
        font-size: 12px !important;
    }
    
    .reviews-carousel-wrapper {
        padding: 16px 0;
    }
    
    .reviews-carousel-container {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .review-section {
        padding: 40px 0;
    }
    
    .review-image {
        height: 160px !important;
        border-radius: 14px !important;
        margin-bottom: 14px !important;
    }
    
    .review-card-item-wrapper {
        flex: 0 0 calc(100% - 24px);
        max-width: calc(100% - 24px);
        min-width: calc(100% - 24px);
        margin: 0 auto;
    }
    
    .reviews-carousel-wrapper {
        padding: 12px 0;
    }
    
    .reviews-carousel-track {
        gap: 16px;
        justify-content: flex-start;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .review-card-item {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 18px !important;
        border-radius: 14px;
    }
    
    .review-card-item .p-4 {
        padding: 0 !important;
    }
    
    .review-stars {
        margin-top: 6px !important;
        margin-bottom: 10px !important;
    }
    
    .review-card-item .text-warning i,
    .review-card-item .text-warning .bi-star-fill,
    .review-card-item .text-warning .bi-star-half {
        font-size: 16px !important;
    }
    
    .review-card-item .text-white-50 {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 14px !important;
    }
    
    .review-card-item .bg-primary {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
    
    .review-card-item h6 {
        font-size: 14px !important;
        margin-bottom: 2px !important;
    }
    
    .review-card-item small {
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    .review-section {
        padding: 35px 0;
    }
    
    .review-image {
        height: 150px !important;
        border-radius: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .review-card-item-wrapper {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        margin: 0 auto;
    }
    
    .reviews-carousel-wrapper {
        padding: 10px 0;
    }
    
    .reviews-carousel-track {
        gap: 14px;
        justify-content: flex-start;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .review-card-item {
        padding: 16px !important;
        border-radius: 12px;
    }
    
    .review-card-item .p-4 {
        padding: 0 !important;
    }
    
    .review-stars {
        margin-top: 4px !important;
        margin-bottom: 8px !important;
    }
    
    .review-card-item .text-warning i,
    .review-card-item .text-warning .bi-star-fill,
    .review-card-item .text-warning .bi-star-half {
        font-size: 15px !important;
    }
    
    .review-card-item .text-white-50 {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    
    .review-card-item .bg-primary {
        width: 38px !important;
        height: 38px !important;
        font-size: 13px !important;
    }
    
    .review-card-item h6 {
        font-size: 13px !important;
        margin-bottom: 1px !important;
    }
    
    .review-card-item small {
        font-size: 10px !important;
    }
}

@media (max-width: 360px) {
    .review-section {
        padding: 30px 0;
    }
    
    .review-image {
        height: 140px !important;
        border-radius: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .review-card-item-wrapper {
        flex: 0 0 calc(100% - 16px);
        max-width: calc(100% - 16px);
        min-width: calc(100% - 16px);
    }
    
    .reviews-carousel-track {
        padding-left: 8px;
        padding-right: 8px;
        gap: 12px;
    }
    
    .review-card-item {
        padding: 14px !important;
        border-radius: 10px;
    }
    
    .review-card-item .text-white-50 {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }
    
    .review-card-item .bg-primary {
        width: 36px !important;
        height: 36px !important;
        font-size: 12px !important;
    }
    
    .review-card-item h6 {
        font-size: 12px !important;
    }
    
    .review-card-item small {
        font-size: 9px !important;
    }
}
/* Remove glass-card background for review cards */
.review-card-item.glass-card {
    background: var(--white) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.review-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}
.review-shadow:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

/* 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: rgba(255, 255, 255, 0.9);
}

/* Payment Logos Container */
.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(30, 156, 230, 0.15);
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Logos */
.logo {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.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;
    }
}
.pricing-title {
    color: var(--white) !important;
}