/* ===== Watch4k - FIXED MOBILE RESPONSIVE CSS =====
   Mobile-first responsive design with fixed navigation and overflow issues
   ================================================================= */

/* CSS Variables */
:root {
    --primary: #ff2e81;
    --primary-dark: #e91e63;
    --secondary: #713fdc;
    --bg-light: #ffffff;
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #ff2e81 0%, #e91e63 100%);
    --border-radius: 15px;
    --transition: all 0.3s ease;
    --header-height: 80px;
    --z-header: 1000;
    --z-mobile-nav: 999;
    --z-overlay: 998;
    --z-floating: 1001;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    transition: var(--transition);
    position: relative;
    min-height: 100vh;
}

body.dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
    --text-muted: #9ca3af;
    --border-light: #374151;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

/* Prevent horizontal scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    z-index: calc(var(--z-floating) + 1);
    transition: top 0.3s;
    font-size: 14px;
}

.skip-link:focus {
    top: 6px;
}

/* Container - Fixed to prevent overflow */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    overflow-x: hidden;
}

/* Ensure all direct children don't overflow */
* {
    max-width: 100%;
}

img,
video,
iframe,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

/* ===== HEADER & NAVIGATION ===== */

/* Header - Fixed positioning and sizing */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    transition: var(--transition);
    width: 100%;
    height: var(--header-height);
}

body.dark .header {
    background: rgba(10, 10, 10, 0.95);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%;
    height: 100%;
    min-height: var(--header-height);
}

/* Logo */
.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: calc(var(--z-header) + 1);
    white-space: nowrap;
}

.logo:hover {
    transform: scale(1.05);
}

body.dark .logo {
    color: var(--text-light);
}

.logo .highlight {
    color: var(--primary);
}

/* Desktop Navigation - Always visible on desktop */
.nav-desktop {
    display: none;
    /* Hidden by default for mobile-first */
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

body.dark .nav-links a {
    color: var(--text-light);
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

body.dark .theme-toggle {
    color: var(--text-light);
}

.theme-toggle:hover {
    transform: rotate(180deg);
    background: var(--border-light);
}

.free-trial-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    border: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.free-trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    color: white !important;
}

/* Mobile Menu Button - Always show on mobile */
.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    padding: 0;
    position: relative;
    z-index: calc(var(--z-header) + 1);
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

body.dark .hamburger-line {
    background: var(--text-light);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.nav-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: var(--z-mobile-nav);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

body.dark .nav-mobile {
    background: rgba(10, 10, 10, 0.98);
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.nav-mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark .nav-mobile-close {
    color: var(--text-light);
}

.nav-mobile-close:hover {
    background: var(--border-light);
    transform: rotate(90deg);
}

.nav-mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-mobile-links li {
    border-bottom: 1px solid var(--border-light);
}

.nav-mobile-links li:last-child {
    border-bottom: none;
}

.nav-mobile-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    display: block;
    padding: 1rem 0;
}

body.dark .nav-mobile-links a {
    color: var(--text-light);
}

.nav-mobile-links a:hover,
.nav-mobile-links a:focus {
    color: var(--primary);
    padding-left: 1rem;
}

.mobile-trial-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.mobile-trial-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1rem 2rem;
}

/* ===== SECTIONS ===== */

/* Section spacing and preventing overflow */
section {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Hero Section */
.hero {
    padding: calc(var(--header-height) + 2rem) 0 3rem;
    background: linear-gradient(135deg, rgba(255, 46, 129, 0.05) 0%, rgba(113, 63, 220, 0.05) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff2e81" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23713fdc" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23ff2e81" opacity="0.1"/></svg>') repeat;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    text-align: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 46, 129, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 46, 129, 0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

body.dark .btn-secondary {
    color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-align: center;
    order: -1;
}

.hero-main-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--card-shadow-hover);
    aspect-ratio: 3/2;
}

.floating-element {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    display: none;
    /* Hidden on mobile */
}

body.dark .floating-element {
    background: var(--bg-dark);
    color: var(--text-light);
}

.floating-element.top-right {
    top: 10%;
    right: -5%;
    animation-delay: -1s;
}

.floating-element.bottom-left {
    bottom: 10%;
    left: -5%;
    animation-delay: -2s;
}

.floating-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.floating-content i {
    color: #10b981;
}

.floating-element.bottom-left .floating-content i {
    color: #3b82f6;
}

/* Channel Slider Section */
.channel-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    width: 100%;
    overflow: hidden;

}

body.dark .channel-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-colored {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--bg-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.channel-slider {
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    width: 100%;
}

.channel-track {
    display: flex;
    gap: 1rem;
    animation: slideLeft 30s linear infinite;
    width: max-content;
}

.channel-logo {
    height: 60px;
    width: 90px;
    object-fit: contain;

    transition: var(--transition);
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    flex-shrink: 0;
    aspect-ratio: 3/2;
}

.channel-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.channel-slider::before,
.channel-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.channel-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.channel-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

body.dark .channel-slider::before {
    background: linear-gradient(to right, #1a1a1a, transparent);
}

body.dark .channel-slider::after {
    background: linear-gradient(to left, #1a1a1a, transparent);
}

/* Movies & Shows Section */
.movies-section {
    padding: 6rem 0;
    background: white;
    width: 100%;
    overflow: hidden;
}

body.dark .movies-section {
    background: var(--bg-dark);
}

.content-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: var(--border-light);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    white-space: nowrap;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    justify-content: center;
}

.filter-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--card-shadow);
}

body.dark .content-filters {
    background: #374151;
}

body.dark .filter-btn.active {
    background: var(--bg-dark);
    color: var(--primary);
}

.filter-btn:hover:not(.active) {
    background: rgba(255, 46, 129, 0.1);
    color: var(--primary);
}

.movie-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.movie-carousel-track {
    display: flex;
    gap: 1.5rem;
    will-change: transform;
    transition: transform 0.3s linear;
}

.movie-poster {
    flex: 0 0 auto;
    width: 280px;
    height: 420px;
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.movie-poster:hover {
    transform: scale(1.02);
    box-shadow: var(--card-shadow-hover);
}

.movie-poster::after {
    content: attr(data-title);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem 1rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.movie-rating {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: var(--card-shadow);
}

.carousel-fade-left,
.carousel-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

body.dark .carousel-fade-left {
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

body.dark .carousel-fade-right {
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

/* Loading state for movie carousel */
.movie-carousel-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 440px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.movie-carousel-loading i {
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Error state for movie carousel */
.movie-carousel-error {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 440px;
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
}

.movie-carousel-error i {
    font-size: 2rem;
    color: #ef4444;
    margin-bottom: 0.5rem;
}

/* Plans Section */
.plans-section {
    padding: 4rem 0;
    background: white;
    width: 100%;
    overflow: hidden;
}

body.dark .plans-section {
    background: var(--bg-dark);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 3rem;
    background: var(--border-light);
    padding: 0.25rem;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    white-space: nowrap;
    font-size: 0.85rem;
    flex: 1;
    min-width: 0;
}

.tab-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--card-shadow);
}

body.dark .pricing-tabs {
    background: #374151;
}

body.dark .tab-btn.active {
    background: var(--bg-dark);
    color: var(--primary);
}

.pricing-grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.pricing-grid.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    width: 100%;
}

body.dark .pricing-card {
    background: #1f2937;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100%;
    overflow: hidden;
}

body.dark .features-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

body.dark .feature-card {
    background: #1f2937;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

body.dark .feature-card h3 {
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
    width: 100%;
    overflow: hidden;
}

body.dark .faq-section {
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

body.dark .faq-item {
    background: #1f2937;
    border-color: #374151;
}

.faq-item:hover {
    box-shadow: var(--card-shadow-hover);
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: var(--transition);
}

body.dark .faq-question {
    color: var(--text-light);
}

.faq-question:hover {
    background: rgba(255, 46, 129, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
    margin-left: 1rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1rem 1rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100%;
    overflow: hidden;
}

body.dark .contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
}

.contact-info {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method i {
    font-size: 1.25rem;
    width: 25px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-method a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    word-break: break-word;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

body.dark .form-label {
    color: var(--text-light);
}

.form-input {
    padding: 0.875rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    width: 100%;
    font-family: inherit;
}

body.dark .form-input {
    background: #374151;
    border-color: #4b5563;
    color: var(--text-light);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 46, 129, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    width: 100%;
    justify-content: center;
}

/* Chat Buttons */
.chat-buttons {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: var(--z-floating);
}

.chat-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--card-shadow-hover);
}

.chat-btn:hover {
    transform: scale(1.1);
    color: white;
}

.chat-btn.whatsapp {
    background: #25d366;
}

.chat-btn.telegram {
    background: #0088cc;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    width: 100%;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand .highlight {
    color: var(--primary);
}

.footer-brand p {
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Small Mobile (480px+) */
@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        min-width: 180px;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .chat-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .chat-btn {
        width: 55px;
        height: 55px;
    }

    .channel-logo {
        height: 70px;
        width: 105px;
    }

    .nav-mobile {
        max-width: 350px;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .hero {
        padding: calc(var(--header-height) + 3rem) 0 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }

    .hero-image {
        order: 0;
    }

    .hero-badge {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .floating-element {
        display: block;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        text-align: left;
    }

    .footer-contact {
        justify-content: flex-start;
    }

    .payment-icons {
        justify-content: flex-start;
    }

    .channel-track {
        gap: 2rem;
    }

    .channel-logo {
        height: 80px;
        width: 120px;
    }

    .channel-slider::before,
    .channel-slider::after {
        width: 60px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {

    /* Show desktop navigation, hide mobile menu button */
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero {
        padding: calc(var(--header-height) + 4rem) 0 6rem;
    }

    .hero-content {
        gap: 4rem;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .plans-section {
        padding: 6rem 0;
    }

    .features-section {
        padding: 6rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .faq-section {
        padding: 6rem 0;
    }

    .contact-section {
        padding: 6rem 0;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .free-trial-btn {
        padding: 0.75rem 1.5rem;
    }

    .hero-main-image {
        max-width: 600px;
    }

    .channel-slider::before,
    .channel-slider::after {
        width: 100px;
    }

    .carousel-fade-left,
    .carousel-fade-right {
        width: 100px;
    }

    .movies-series-slider::before,
    .movies-series-slider::after {
        width: 100px;
    }

    .movies-series-section {
        padding: 6rem 0;
    }

    .poster-item {
        width: 200px;
        height: 300px;
    }

    .movies-series-track {
        gap: 1.5rem;
    }

    .movie-poster {
        width: 280px;
        height: 420px;
    }

    .movie-carousel-track {
        gap: 1.5rem;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        min-width: 120px;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1.05);
    }
}

/* Extra Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .channel-logo,
    .hero-main-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: calc(var(--header-height) + 1rem) 0 2rem;
        min-height: auto;
    }

    .floating-element {
        display: none;
    }

    .nav-mobile {
        padding: 1rem;
        overflow-y: auto;
    }

    .nav-mobile-links a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .channel-track {
        animation: none;
    }

    .floating-element {
        animation: none;
    }
}

/* Print Styles */
@media print {

    .header,
    .chat-buttons,
    .channel-slider,
    .hero-image,
    .floating-element,
    .nav-mobile,
    .nav-mobile-overlay {
        display: none !important;
    }

    .hero {
        padding: 2rem 0;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .pricing-card,
    .feature-card,
    .faq-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Focus Styles for Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.tab-btn:focus,
.faq-question:focus,
.form-input:focus,
.theme-toggle:focus,
.mobile-menu-btn:focus,
.nav-mobile-close:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.nav-links a:focus,
.nav-mobile-links a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: calc(var(--z-floating) + 100);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 300px;
    word-wrap: break-word;
    font-size: 0.9rem;
    color: white;
    cursor: pointer;
}

.notification-success {
    background: #10b981;
}

.notification-error {
    background: #ef4444;
}

.notification-info {
    background: #3b82f6;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile notification adjustments */
@media (max-width: 767px) {
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* Performance Optimizations */
.hero-main-image,
.channel-logo {
    will-change: transform;
}

.pricing-card,
.feature-card,
.faq-item {
    will-change: transform;
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Active Navigation State */
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

body.dark .stat-card {
    background: #1f2937;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

body.dark .mission-card {
    background: #1f2937;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.25rem;
}

body.dark .mission-card h3 {
    color: var(--text-light);
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Technology Grid */
.tech-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.tech-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

body.dark .tech-item {
    background: #1f2937;
    border-color: #374151;
}

.tech-item:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.tech-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 46, 129, 0.05);
    border-bottom: 1px solid var(--border-light);
}

body.dark .tech-header {
    background: rgba(255, 46, 129, 0.1);
    border-bottom-color: #374151;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tech-item h3 {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
}

body.dark .tech-item h3 {
    color: var(--text-light);
}

.tech-content {
    padding: 1.5rem;
}

.tech-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

body.dark .team-member {
    background: #1f2937;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    transition: var(--transition);
}

.member-image img:hover {
    transform: scale(1.05);
}

.member-info h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.25rem;
}

body.dark .member-info h3 {
    color: var(--text-light);
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-bio {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.member-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Call to Action Section */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: 2rem 0;
    width: 100%;
}

.cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-feature i {
    color: #10b981;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE UPDATES FOR ABOUT PAGE ===== */

@media (min-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-btn {
        width: auto;
        min-width: 180px;
    }

    .cta-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-header {
        padding: 2rem;
    }

    .tech-content {
        padding: 2rem;
    }
}

/* Mobile adjustments for About page */
@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .tech-item {
        margin-bottom: 1rem;
    }

    .tech-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .tech-content {
        padding: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .member-image img {
        width: 100px;
        height: 100px;
    }

    .member-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}





/* ===== ADDITIONAL CSS FOR PRICING PAGE ===== */
/* Add this to your existing styles.css file */

/* Pricing Hero Section Enhancements */
.pricing-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

body.dark .highlight-item {
    background: #1f2937;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.highlight-item i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

body.dark .highlight-item span {
    color: var(--text-light);
}

/* Enhanced Pricing Cards with Savings */
.pricing-savings {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Enhanced Pricing Tabs with Icons */
.pricing-tabs .tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
}

.pricing-tabs .tab-btn i {
    font-size: 0.9rem;
}

/* Payment Methods Section */
.payment-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100%;
    overflow: hidden;
}

body.dark .payment-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
}

body.dark .payment-method {
    background: #1f2937;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.payment-method i {
    font-size: 2.5rem;
    color: var(--primary);
}

.payment-method span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

body.dark .payment-method span {
    color: var(--text-light);
}

/* Comparison Table Section */
.comparison-section {
    padding: 6rem 0;
    background: white;
    width: 100%;
    overflow: hidden;
}

body.dark .comparison-section {
    background: var(--bg-dark);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    background: white;
}

body.dark .comparison-table-wrapper {
    background: #1f2937;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

body.dark .comparison-table th,
body.dark .comparison-table td {
    border-bottom-color: #374151;
}

.comparison-table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
    border-top-left-radius: var(--border-radius);
}

.comparison-table th:last-child {
    border-top-right-radius: var(--border-radius);
}

.comparison-table td {
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
}

body.dark .comparison-table td {
    color: var(--text-light);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary);
}

.comparison-table td i.fas.fa-check {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: var(--border-radius);
}

.comparison-table tr:last-child td:last-child {
    border-bottom-right-radius: var(--border-radius);
}

.comparison-table tr:hover {
    background: rgba(255, 46, 129, 0.05);
}

/* Pricing FAQ Section */
.pricing-faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100%;
    overflow: hidden;
}

body.dark .pricing-faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content .section-title,
.cta-content .section-subtitle {
    color: white;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: 2rem 0;
}

.cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.cta-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-guarantees {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.guarantee-item i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== RESPONSIVE STYLES FOR PRICING PAGE ===== */

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .pricing-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }

    .highlight-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .highlight-item span {
        font-size: 0.85rem;
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .payment-method {
        padding: 1.5rem 0.75rem;
    }

    .payment-method i {
        font-size: 2rem;
    }

    .payment-method span {
        font-size: 0.85rem;
    }

    .comparison-table-wrapper {
        margin: 2rem -1rem 0;
        border-radius: 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .cta-guarantees {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .guarantee-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-tabs .tab-btn {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.75rem 1rem;
    }

    .pricing-tabs .tab-btn i {
        font-size: 1rem;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .pricing-highlights {
        grid-template-columns: repeat(2, 1fr);
        max-width: 350px;
    }

    .payment-methods {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .cta-guarantees {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .pricing-highlights {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }

    .payment-methods {
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .cta-guarantees {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }

    .comparison-section {
        padding: 8rem 0;
    }

    .payment-section {
        padding: 6rem 0;
    }

    .pricing-faq-section {
        padding: 8rem 0;
    }

    .cta-section {
        padding: 8rem 0;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .payment-methods {
        max-width: 1000px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 2rem 1.5rem;
    }
}

/* Print Styles for Pricing Page */
@media print {

    .cta-section,
    .chat-buttons {
        display: none !important;
    }

    .comparison-table {
        font-size: 12px;
    }

    .pricing-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}







/* ===== ADDITIONAL CSS FOR CONTACT PAGE ===== */
/* Add this to your existing styles.css file */

/* Contact Hero Section Enhancements */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

body.dark .stat-item {
    background: #1f2937;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100%;
    overflow: hidden;
}

body.dark .quick-contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

body.dark .contact-card {
    background: #1f2937;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
    text-decoration: none;
    color: inherit;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.contact-card.whatsapp .contact-icon {
    background: #25d366;
}

.contact-card.telegram .contact-icon {
    background: #0088cc;
}

.contact-card.email .contact-icon {
    background: #ea4335;
}

.contact-card.phone .contact-icon {
    background: #4285f4;
}

.contact-card.live-chat .contact-icon,
.contact-card.remote-support .contact-icon {
    background: var(--gradient-primary);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    color: var(--text-dark);
}

body.dark .contact-card h3 {
    color: var(--text-light);
}

.contact-card p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-response {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-response i {
    color: var(--primary);
}

.contact-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-status i.fa-circle.online {
    color: #10b981;
    font-size: 0.6rem;
}

.contact-status i.fa-circle:not(.online) {
    color: #f59e0b;
    font-size: 0.6rem;
}

.start-chat-btn,
.schedule-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    width: fit-content;
}

.start-chat-btn:hover,
.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: white;
    width: 100%;
    overflow: hidden;
}

body.dark .contact-form-section {
    background: var(--bg-dark);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info-card {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.info-items {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.25rem;
    width: 25px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.info-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.support-types {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.support-types h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-types ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-types li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.support-types li i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Enhanced Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

body.dark .contact-form {
    background: #1f2937;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

body.dark .form-label {
    color: var(--text-light);
}

.form-input {
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    width: 100%;
    font-family: inherit;
}

body.dark .form-input {
    background: #374151;
    border-color: #4b5563;
    color: var(--text-light);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 46, 129, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    justify-content: center;
}

.form-note i {
    color: #10b981;
}

/* Support FAQ Section */
.support-faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100%;
    overflow: hidden;
}

body.dark .support-faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Support Team Section */
.support-team-section {
    padding: 6rem 0;
    background: white;
    width: 100%;
    overflow: hidden;
}

body.dark .support-team-section {
    background: var(--bg-dark);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

body.dark .stat-card {
    background: #1f2937;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.contact-cta-section .section-title,
.contact-cta-section .section-subtitle {
    color: white;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: 2rem 0;
}

.cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.cta-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-promises {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promise-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.promise-item i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== RESPONSIVE STYLES FOR CONTACT PAGE ===== */

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-card {
        padding: 2rem;
        position: static;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .cta-promises {
        gap: 1rem;
    }

    .promise-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .contact-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 350px;
    }

    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-card {
        position: static;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .cta-promises {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .contact-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }

    .quick-contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }

    .team-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .cta-promises {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }

    .quick-contact-section {
        padding: 8rem 0;
    }

    .contact-form-section {
        padding: 8rem 0;
    }

    .support-faq-section {
        padding: 8rem 0;
    }

    .support-team-section {
        padding: 8rem 0;
    }

    .contact-cta-section {
        padding: 8rem 0;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .quick-contact-grid {
        max-width: 1200px;
        margin: 3rem auto 0;
    }

    .contact-form-grid {
        max-width: 1200px;
        margin: 3rem auto 0;
    }
}

/* Print Styles for Contact Page */
@media print {

    .contact-cta-section,
    .chat-buttons,
    .quick-contact-grid .contact-card:not(.email):not(.phone) {
        display: none !important;
    }

    .contact-form,
    .contact-info-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}





/*PRICING LIST*/

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: white;
    width: 100%;
    overflow: hidden;
    position: relative;
}

body.dark .pricing-section {
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: var(--border-light);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    max-width: 100%;
}

body.dark .pricing-tabs {
    background: #374151;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    white-space: nowrap;
    font-size: 0.9rem;
    position: relative;
}

.tab-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--card-shadow);
}

body.dark .tab-btn.active {
    background: var(--bg-dark);
    color: var(--primary);
}

.tab-btn .savings-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #10b981;
    color: white;
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    font-weight: 700;
}

/* Pricing Grid */
.pricing-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    align-items: stretch;
}

.pricing-grid.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

body.dark .pricing-card {
    background: #1f2937;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.02);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px 20px 0 0;
}

.pricing-card.popular .pricing-header {
    margin-top: 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.device-count {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.pricing-price {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    margin-top: -0.5rem;
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.savings-info {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Features List */
.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-features .feature-highlight {
    font-weight: 600;
    color: #6E6E6E;
}

/* Order Button */
.pricing-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: auto;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    color: white;
}

/* Value Indicators */
.value-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(15deg);
}

/* Responsive Design */
@media (max-width: 1023px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 767px) {
    .pricing-tabs {
        flex-direction: column;
        width: 100%;
        padding: 0.25rem;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }
}

@media (max-width: 479px) {
    .pricing-card {
        padding: 1rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: fadeIn 0.6s ease;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Money Back Guarantee */
.guarantee-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 46, 129, 0.05) 0%, rgba(113, 63, 220, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 46, 129, 0.1);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.guarantee-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

body.dark .guarantee-title {
    color: var(--text-light);
}

.guarantee-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}