:root {
    --primary-color: #f97316;
    --secondary-color: #dc2626;
    --accent-color: #ea580c;
    --background-dark: #111827;
    --background-light: #1f2937;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(to bottom, var(--background-dark), var(--background-light));
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.875rem;
    font-weight: bold;
    background: linear-gradient(to right, #f97316, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 767px) {
    .logo {
        font-size: 1.5rem;
    }
}

.hidden-keywords {
    display: none;
    visibility: hidden;
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    left: -9999px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
    padding: 0;
    background: none;
    border: none;
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Enhanced Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.95));
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 999;
        padding: 2rem;
    }

    .nav-links.active {
        display: flex;
        animation: fadeInMenu 0.4s ease;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        padding: 1.5rem 3rem;
        border-radius: 1rem;
        transition: all 0.3s ease;
        text-align: center;
        min-width: 280px;
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(220, 38, 38, 0.1));
        border: 2px solid rgba(249, 115, 22, 0.3);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }

    .nav-links a:hover::before {
        left: 100%;
    }

    .nav-links a:hover {
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(220, 38, 38, 0.2));
        border-color: rgba(249, 115, 22, 0.6);
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 12px 40px rgba(249, 115, 22, 0.3);
        color: #ffffff;
    }

    .nav-links a:active {
        transform: translateY(-2px) scale(1.01);
        transition: all 0.1s ease;
    }
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Enhanced Modern Hero Section */
.modern-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 20%, #7c2d12 50%, #dc2626 80%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.bg-circle-1 {
    top: 20%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.4);
    animation-delay: 0s;
}

.bg-circle-2 {
    bottom: 20%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: rgba(220, 38, 38, 0.3);
    animation-delay: 3s;
}

.bg-circle-3 {
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: rgba(234, 88, 12, 0.2);
    animation-delay: 6s;
    transform: translate(-50%, -50%);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    opacity: 0.1;
    animation: floatIcon 12s ease-in-out infinite;
    color: rgba(249, 115, 22, 0.6);
}

.floating-icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 3s;
}

.floating-icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.floating-icon-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 9s;
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
    width: 100%;
}

@media (max-width: 767px) {
    .hero-container {
        padding: 2rem 1rem;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Left Content */
.hero-main-content {
    space-y: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 9999px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    margin-right: 0.5rem;
    color: #fb923c;
}

.badge-text {
    color: #fed7aa;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 767px) {
    .badge-text {
        font-size: 0.75rem;
    }
}

.hero-text-content {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    min-height: 200px;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        min-height: 240px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
        min-height: 120px;
    }
}

.title-main {
    background: linear-gradient(to right, #ffffff, #fed7aa, #fdba74);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.title-accent {
    background: linear-gradient(to right, #fb923c, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

/* Typewriter Effect */
.title-main::after,
.title-accent::after {
    content: '|';
    color: #fb923c;
    animation: blink 1s infinite;
    font-weight: normal;
}

.title-main.typing-complete::after,
.title-accent.typing-complete::after {
    display: none;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 32rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

.highlight {
    color: #fb923c;
    font-weight: 600;
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #9ca3af;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .feature-item {
        font-size: 0.875rem;
    }
}

.feature-icon {
    margin-right: 0.75rem;
    color: #fb923c;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Enhanced Button Styles */
.btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #f97316, #dc2626);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 1rem;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

@media (max-width: 767px) {
    .btn-primary {
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-primary:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
    transition: all 0.1s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #ea580c, #b91c1c);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    font-weight: 600;
    color: white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    transform: translateY(0);
    backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
    .btn-secondary {
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-secondary:active {
    transform: translateY(1px) scale(0.98);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.1s ease;
}

.btn-icon {
    color: #fb923c;
}

/* Enhanced Stats - Fixed for Desktop */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
}

@media (max-width: 767px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .stat-item {
        padding: 1rem 0.5rem;
        min-height: 100px;
    }
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-icon {
    margin-bottom: 0.75rem;
    color: #fb923c;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .stat-icon {
        margin-bottom: 0.5rem;
    }
    
    .stat-icon svg {
        width: 20px;
        height: 20px;
    }
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

@media (max-width: 767px) {
    .stat-value {
        font-size: 1.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Enhanced Right Image Section */
.hero-image-section {
    position: relative;
}

/* Hide image section on mobile */
@media (max-width: 767px) {
    .hero-image-section {
        display: none;
    }
}

@media (min-width: 1024px) {
    .hero-image-section {
        order: 2;
    }
}

.image-container {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(249, 115, 22, 0.4), rgba(220, 38, 38, 0.4));
    border-radius: 1.5rem;
    filter: blur(2rem);
    transform: rotate(6deg);
}

.image-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.6), rgba(17, 24, 39, 0.6));
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-main-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-badge {
    position: absolute;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.live-badge {
    top: -1rem;
    right: -1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.profit-badge {
    bottom: -1rem;
    left: -1rem;
    background: linear-gradient(to right, #f97316, #dc2626);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.profit-icon {
    color: white;
}

.profit-content {
    display: flex;
    flex-direction: column;
}

.profit-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.profit-value {
    font-size: 1.125rem;
    font-weight: bold;
}

.decorative-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1rem);
}

.deco-1 {
    top: 25%;
    left: -2rem;
    width: 4rem;
    height: 4rem;
    background: rgba(249, 115, 22, 0.3);
    animation: float 6s ease-in-out infinite;
}

.deco-2 {
    bottom: 25%;
    right: -2rem;
    width: 5rem;
    height: 5rem;
    background: rgba(220, 38, 38, 0.3);
    animation: float 8s ease-in-out infinite reverse;
}

.deco-triangle {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(234, 88, 12, 0.2);
    filter: blur(8px);
    animation: float 10s ease-in-out infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fb923c, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
}

.section-header p {
    color: #9ca3af;
    font-size: 1.125rem;
}

@media (max-width: 767px) {
    .section-header p {
        font-size: 1rem;
    }
}

/* Plans Section */
.plans-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

@media (max-width: 767px) {
    .plans-section {
        padding: 3rem 1rem;
    }
}

.plans-container {
    position: relative;
}

.plans-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plan-card {
    background: rgba(17, 24, 39, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: relative;
    backdrop-filter: blur(10px);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    border: 2px solid rgba(249, 115, 22, 0.5);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(to right, #f97316, #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.plan-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-price-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.price-tag {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .price-tag {
        font-size: 1.75rem;
    }
}

.price-tag .currency {
    font-size: 1.25rem;
    vertical-align: super;
}

.price-tag .period {
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .price-tag .period {
        font-size: 0.875rem;
    }
}

.plan-content {
    padding: 1.5rem;
}

@media (max-width: 767px) {
    .plan-content {
        padding: 1.25rem;
    }
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.plan-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    color: white;
}

@media (max-width: 767px) {
    .plan-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .plan-icon svg {
        width: 24px;
        height: 24px;
    }
}

.plan-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(8px);
    transform: scale(1.2);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .plan-name {
        font-size: 1.25rem;
    }
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    transition: color 0.3s;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .plan-features li {
        font-size: 0.875rem;
    }
}

.plan-features li:hover {
    color: var(--text-primary);
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

@media (max-width: 767px) {
    .feature-icon {
        width: 1.25rem;
        height: 1.25rem;
        min-width: 1.25rem;
    }
    
    .feature-icon svg {
        width: 12px;
        height: 12px;
    }
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: inherit;
    filter: blur(4px);
    opacity: 0.7;
    z-index: -1;
}

/* Limited Badge for Regular Plans */
.limited-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.5);
    animation: bounce 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: calc(100% - 2rem);
    text-align: center;
}

@media (max-width: 767px) {
    .limited-badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.6rem;
        padding: 4px 10px;
        max-width: calc(100% - 1.5rem);
        border-radius: 12px;
        letter-spacing: 0.5px;
    }
}

/* Enhanced Plan Button Styles */
.plan-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .plan-button {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
        min-height: 48px;
    }
}

.plan-button:hover {
    transform: translateY(-3px);
    filter: brightness(110%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.plan-button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}

.plan-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.plan-button:hover::before {
    left: 100%;
}

/* Installation Section */
.installation-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.8), rgba(31, 41, 55, 0.8));
}

@media (max-width: 767px) {
    .installation-section {
        padding: 3rem 1rem;
    }
}

.installation-container {
    max-width: 1280px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(17, 24, 39, 0.8);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 767px) {
    .step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 
                0 0 0 4px rgba(249, 115, 22, 0.1);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .step-number {
        min-width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
        align-self: flex-start;
    }
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .step-content h4 {
        font-size: 1.125rem;
    }
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .step-content p {
        font-size: 0.875rem;
    }
}

/* Step Image Styles - Responsive 600x500 base with adaptability */
.step-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 6/5; /* Maintains 600:500 ratio */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .step-image {
        max-width: 100%;
    }
    
    .step-image img {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .step-image img {
        aspect-ratio: 3/2;
    }
}

/* Support Section */
.support-section {
    background: rgba(17, 24, 39, 0.9);
    border-radius: 1rem;
    padding: 2rem;

    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (max-width: 767px) {
    .support-section {
        padding: 1.5rem;
    }
}

.support-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .support-section h3 {
        font-size: 1.25rem;
    }
}

.support-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .support-section p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

/* Enhanced Telegram Button Styles */
.telegram-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .telegram-buttons {
        flex-direction: row;
    }
}

.telegram-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #0088cc, #0077b5);
    color: white;
    text-decoration: none;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .telegram-button {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

.telegram-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.telegram-button:hover::before {
    left: 100%;
}

.telegram-button:hover {
    background: linear-gradient(135deg, #0077b5, #006ba3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.telegram-button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 136, 204, 0.3);
    transition: all 0.1s ease;
}

.telegram-button.secondary-telegram {
    background: linear-gradient(135deg, #f97316, #dc2626);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.telegram-button.secondary-telegram:hover {
    background: linear-gradient(135deg, #ea580c, #b91c1c);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.telegram-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
    .telegram-icon {
        width: 40px;
        height: 40px;
    }
}

.telegram-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

@media (max-width: 767px) {
    .telegram-icon svg {
        width: 20px;
        height: 20px;
    }
}

.telegram-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.telegram-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .telegram-title {
        font-size: 1rem;
    }
}

.telegram-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@media (max-width: 767px) {
    .telegram-subtitle {
        font-size: 0.8rem;
    }
}

.telegram-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .telegram-arrow {
        font-size: 1.25rem;
    }
}

.telegram-button:hover .telegram-arrow {
    transform: translateX(4px);
    color: white;
}

/* FAQ Section */
.faq-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

@media (max-width: 767px) {
    .faq-section {
        padding: 3rem 1rem;
    }
}

.faq-container {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(31, 41, 55, 0.8);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

@media (max-width: 767px) {
    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    transition: transform 0.3s;
    font-size: 1rem;
    opacity: 0.7;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .faq-answer {
        padding: 0 1.25rem;
        font-size: 0.875rem;
    }
}

.faq-answer.active {
    max-height: none;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

@media (max-width: 767px) {
    .faq-answer.active {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Footer */
.footer {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .footer p {
        font-size: 0.8rem;
    }
}

/* Enhanced Discount Badge - Smaller and Auto-Hide */
.discount-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f97316, #dc2626, #ea580c);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
    max-width: 280px;
    min-width: 200px;
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
    .discount-badge {
        bottom: 16px;
        right: 16px;
        padding: 10px 14px;
        gap: 8px;
        max-width: 240px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .discount-badge {
        bottom: 12px;
        right: 12px;
        padding: 8px 12px;
        gap: 6px;
        max-width: 220px;
        min-width: 160px;
    }
}

.discount-badge:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5),
                0 0 0 2px rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, #ea580c, #b91c1c, #dc2626);
}

.discount-badge:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.discount-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #f97316;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .discount-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .discount-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
}

.discount-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.discount-title {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.95;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .discount-title {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .discount-title {
        font-size: 8px;
    }
}

.discount-code {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.2px;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .discount-code {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .discount-code {
        font-size: 13px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-6px) scale(1.1);
    }
    60% {
        transform: translateY(-3px) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}