/* Base styles are now in theme.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    letter-spacing: 0.015em;
    font-weight: 300;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3?w=1920&h=1080&fit=crop&crop=center&auto=format');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--navbar-shadow);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.nav-brand-container {
    display: flex;
    flex-direction: column;
}

.contact-info {
    display: flex;
    margin-top: 0.1rem;
}

.contact-item-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--nav-text);
}

.contact-item-small i {
    font-size: 0.8rem;
    margin-right: 0.2rem;
}

/* Colorful navbar contact icons */
.contact-item-small i.fa-envelope {
    color: #26C281; /* Green for email */
}

.contact-item-small i.fa-phone {
    color: #FFD23F; /* Yellow for phone */
}

.separator {
    color: var(--text-gray);
    margin: 0 0.5rem;
    opacity: 0.6;
}

.contact-item-small a {
    color: var(--nav-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-small a:hover {
    color: var(--nav-text-hover);
}

.phone-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--accent-green) !important;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 20px;
    transition: all 0.3s ease;
}

.navbar.scrolled .container {
    padding: 0.4rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo {
    width: 32px;
    height: 32px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nav-text);
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-brand h1 {
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--nav-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.navbar.scrolled .nav-link {
    font-size: 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--nav-text-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--nav-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: var(--hero-bg);
    padding: 6rem 0 15rem 0;
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
    margin-bottom: 5rem;
}

/* Hero background removed - now using global body background */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-top: 10rem;
}

.hero-left h1.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', 'Arial', sans-serif;
    letter-spacing: -0.02em;
}

.hero-left p.hero-text {
    font-size: 1.2rem;
    color: var(--hero-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: 'Montserrat', 'Arial', sans-serif;
    letter-spacing: 0.01em;
}

.hero-description {
    margin: 2rem 0;
}

.hero-description p.hero-text {
    font-size: 1.1rem;
    color: var(--hero-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}



.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-btn, .buy-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', 'Arial', sans-serif;
    letter-spacing: 0.02em;
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--hover-green) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.5);
}

.buy-btn {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.buy-btn:hover {
    background: var(--accent-green);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
}

.hero-feature-item {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1 1 calc(33% - 1.5rem);
    min-width: 220px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hero-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.hero-feature-item i {
    font-size: 1.5rem;
}

/* Colorful hero feature icons */
.hero-feature-item:nth-child(1) i {
    color: #FF6B9D; /* Pink */
}

.hero-feature-item:nth-child(2) i {
    color: #FF8C42; /* Orange */
}

.hero-feature-item:nth-child(3) i {
    color: #FFD23F; /* Yellow */
}

.hero-feature-item h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

/* Hero Media Section */
.hero-media {
    position: relative;
    z-index: 2;
}

.media-grid-random {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
        "a b"
        "c d"
        "e d";
    gap: 12px;
    width: 100%;
}

.media-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 150px;
}

.media-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
    z-index: 10;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Grid areas match style="grid-area: X" on each item */
.media-item:nth-child(1) { grid-area: a; min-height: 200px; }
.media-item:nth-child(2) { grid-area: b; min-height: 160px; }
.media-item:nth-child(3) { grid-area: c; min-height: 170px; }
.media-item:nth-child(4) { grid-area: d; }
.media-item:nth-child(5) { grid-area: e; min-height: 130px; }

.video-item {
    position: relative;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(46, 139, 87, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--accent-green);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.text-modal {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    max-height: 80vh;
    overflow-y: auto;
    width: 80%;
    max-width: 800px;
    margin-top: 0;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.text-modal h2 {
    color: var(--accent-green);
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.text-modal h3 {
    color: var(--accent-green);
    margin: 20px 0 10px;
    font-size: 1.4rem;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.text-modal p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #555555;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(220, 220, 220, 0.7);
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--accent-green);
    background: rgba(220, 220, 220, 0.9);
}

/* Circle tooltips removed and replaced with hero-features */

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    background: var(--dark-bg);
    z-index: 1;
}

.section.animate-visible {
    opacity: 1;
    transform: translateY(0);
}





.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.section-title:hover {
    transform: translateY(-2px);
}

.section-title i {
    font-size: 2.2rem;
    color: var(--accent-green);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.section-title:hover i {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

/* Colorful icons for different sections */
#about .section-title i {
    color: #FF6B9D; /* Pink for building/company */
}

#about .section-title:hover i {
    color: #FF5A8A;
}

#features .section-title i {
    color: #FF8C42; /* Orange for rocket/power */
}

#features .section-title:hover i {
    color: #FF7A2E;
}

#howto .section-title i {
    color: #FFD23F; /* Yellow for play/video */
}

#howto .section-title:hover i {
    color: #FFC72C;
}

#pricing .section-title i {
    color: #6C5CE7; /* Purple for gem/premium */
}

#pricing .section-title:hover i {
    color: #5A4FCF;
}

#team .section-title i {
    color: #00D4FF; /* Blue for users/team */
}

#team .section-title:hover i {
    color: #00C4E6;
}

#contact .section-title i {
    color: #26C281; /* Green for contact/envelope */
}

#contact .section-title:hover i {
    color: #22A96B;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Enhanced bounce effect for section titles */
@keyframes customBounceIn {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
    70% {
        transform: translateY(-10px) scale(0.9);
    }
    80% {
        transform: translateY(5px) scale(1.02);
    }
    90% {
        transform: translateY(-3px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-title.animate__bounceInUp {
    animation-name: customBounceIn !important;
    animation-duration: 1.2s !important;
    animation-timing-function: ease-out !important;
}

/* Initial state for section titles */
.section-title[data-animate] {
    opacity: 0;
    transform: translateY(-100px) scale(0.3);
}

.section-title[data-animate].animate__animated {
    opacity: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.section-title:hover::after {
    width: 200px;
    height: 4px;
}

/* Override to ensure all section titles have the same hover effect */
#pricing .section-title::after,
#about .section-title::after,
#features .section-title::after, 
#howto .section-title::after,
#team .section-title::after,
#contact .section-title::after {
    transition: all 0.3s ease;
}

#pricing .section-title:hover::after,
#about .section-title:hover::after,
#features .section-title:hover::after,
#howto .section-title:hover::after,
#team .section-title:hover::after,
#contact .section-title:hover::after {
    width: 200px;
    height: 4px;
}

/* Fix for pricing section title */
#pricing .section-title {
    cursor: text;
    user-select: text;
    position: relative;
    z-index: 10;
}

#pricing .section-title i {
    pointer-events: auto;
}

#pricing .section-title:hover {
    transform: translateY(-2px);
}

/* Ensure pricing section elements don't block title interaction */
#pricing .pricing-note {
    position: relative;
    z-index: 2;
}

#pricing .container {
    position: relative;
    z-index: 5;
}

.section {
    padding: 5rem 0;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-description p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

/* About Section */
#about {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    background: var(--dark-bg);
    clear: both;
    border-top: 3px solid var(--accent-green);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.about-gif-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-gif-container img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.gif-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.6);
    pointer-events: none;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.static-feature {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.static-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--accent-shadow);
}

/* Colorful borders on hover for feature cards */
.static-feature:nth-child(1):hover {
    border-color: #FF6B9D; /* Pink */
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.static-feature:nth-child(2):hover {
    border-color: #FF8C42; /* Orange */
    box-shadow: 0 15px 30px rgba(255, 140, 66, 0.2);
}

.static-feature:nth-child(3):hover {
    border-color: #FFD23F; /* Yellow */
    box-shadow: 0 15px 30px rgba(255, 210, 63, 0.2);
}

.static-feature:nth-child(4):hover {
    border-color: #6C5CE7; /* Purple */
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.2);
}

.static-feature:nth-child(5):hover {
    border-color: #00D4FF; /* Blue */
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.static-feature:nth-child(6):hover {
    border-color: #26C281; /* Green */
    box-shadow: 0 15px 30px rgba(38, 194, 129, 0.2);
}

/* Hover animation removed to prevent flickering */

.feature-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
}

/* Colorful feature section icons */
.static-feature:nth-child(1) .feature-icon i {
    color: #FF6B9D; /* Pink */
}

.static-feature:nth-child(2) .feature-icon i {
    color: #FF8C42; /* Orange */
}

.static-feature:nth-child(3) .feature-icon i {
    color: #FFD23F; /* Yellow */
}

.static-feature:nth-child(4) .feature-icon i {
    color: #6C5CE7; /* Purple */
}

.static-feature:nth-child(5) .feature-icon i {
    color: #00D4FF; /* Blue */
}

.static-feature:nth-child(6) .feature-icon i {
    color: #26C281; /* Green */
}



.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-card ul li {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.feature-card ul li::before {
    content: "•";
    color: var(--accent-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-conclusion {
    font-style: italic;
    color: var(--accent-green) !important;
    margin-top: 1rem;
    font-weight: 500;
}

/* How To Section */
.howto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Colorful borders on hover for video cards */
.video-card:nth-child(1):hover {
    border-color: #FF6B9D; /* Pink */
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.video-card:nth-child(2):hover {
    border-color: #FF8C42; /* Orange */
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.video-card:nth-child(3):hover {
    border-color: #FFD23F; /* Yellow */
    box-shadow: 0 10px 30px rgba(255, 210, 63, 0.2);
}

.video-card:nth-child(4):hover {
    border-color: #6C5CE7; /* Purple */
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
}

.video-card:nth-child(5):hover {
    border-color: #00D4FF; /* Blue */
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.video-card:nth-child(6):hover {
    border-color: #26C281; /* Green */
    box-shadow: 0 10px 30px rgba(38, 194, 129, 0.2);
}

.video-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: 'Montserrat', 'Arial', sans-serif;
    line-height: 1.5;
}

.video-card h3 i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Colorful video card icons */
.video-card:nth-child(1) h3 i {
    color: #FF6B9D; /* Pink */
}

.video-card:nth-child(2) h3 i {
    color: #FF8C42; /* Orange */
}

.video-card:nth-child(3) h3 i {
    color: #FFD23F; /* Yellow */
}

.video-card:nth-child(4) h3 i {
    color: #6C5CE7; /* Purple */
}

.video-card:nth-child(5) h3 i {
    color: #00D4FF; /* Blue */
}

.video-card:nth-child(6) h3 i {
    color: #26C281; /* Green */
}

.video-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 0.9rem;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-green);
    color: var(--text-light);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.video-btn:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
}

/* New Pricing Section */
#pricing {
    background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
    position: relative;
    overflow: hidden;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--dark-bg), transparent);
    z-index: -1;
    pointer-events: none;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--highlight-bg);
    border-radius: 15px;
    border-left: 4px solid var(--discount-icon);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.pricing-note:hover {
    box-shadow: 0 10px 30px var(--highlight-shadow);
    transform: translateY(-5px);
    opacity: 1;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--accent-shadow);
    border-color: var(--accent-green);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-green);
    box-shadow: 0 15px 40px var(--accent-shadow);
    z-index: 3;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent-green);
    color: var(--text-light);
    padding: 0.4rem 2.5rem;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 4;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.pricing-card-header {
    padding: 2rem;
    text-align: center;
    background: var(--darker-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.pricing-card-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.pricing-card-header p {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.pricing-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-content ul li {
    margin-bottom: 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.pricing-card-content ul li i {
    color: var(--accent-green);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.pricing-card-content ul li i.fa-times {
    color: #ff4444;
}

.pricing-card-content ul li.discount-item {
    color: var(--discount-text);
    font-weight: 400;
    margin-top: 1rem;
    font-style: italic;
}

.pricing-card-content ul li.discount-item i {
    color: var(--discount-icon);
}

.pricing-card-footer {
    padding: 0 2rem 2rem;
}

.pricing-btn {
    width: 100%;
    background: var(--accent-green);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.pricing-btn:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.download-btn {
    background: var(--light-gray);
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.download-btn:hover {
    background: var(--accent-green);
    color: var(--text-light);
}

.featured-btn {
    background: var(--text-light);
    color: var(--accent-green);
    font-weight: 700;
}

.featured-btn:hover {
    background: var(--accent-green);
    color: var(--text-light);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px var(--accent-shadow);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-image {
    object-fit: cover;
    object-position: center top;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.team-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

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

.social-links a {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-green);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Colorful contact icons */
.contact-item:nth-child(1) i {
    color: #FF6B9D; /* Pink for location */
}

.contact-item:nth-child(2) i {
    color: #FFD23F; /* Yellow for phone */
}

.contact-item:nth-child(3) i {
    color: #26C281; /* Green for email */
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-green);
}

.address-icon {
    color: var(--accent-green);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.contact-item p a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--accent-green);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.footer-links a {
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-gray);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    color: var(--text-gray);
    font-family: 'Montserrat', 'Arial', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.section:nth-child(odd).animate-in {
    animation: slideInFromLeft 0.8s ease forwards;
}

.section:nth-child(even).animate-in {
    animation: slideInFromRight 0.8s ease forwards;
}

.feature-card {
    transition: all 0.6s ease;
}

.feature-card:hover {
    animation: scaleIn 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .media-grid-random {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 8px;
    }
    .media-item { min-height: 130px; }
    .media-item:nth-child(1) { min-height: 150px; }
    
    .hero-circles {
        position: relative;
        bottom: auto;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-circles {
        height: 300px;
    }

    .circle {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .tooltip {
        width: 200px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .howto-grid,
    .team-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .howto-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.detailed {
        padding: 1.5rem;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 2rem 0;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 220vh;
        padding: 1rem 0 30rem 0;
    }
    
    .hero-circles {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        height: auto;
        position: relative;
        bottom: auto;
        margin-top: 8rem;
    }
    
    #about {
        margin-top: 30rem;
        padding-top: 15rem;
        position: relative;
        z-index: 100;
        background: var(--darker-bg);
        border-top: 3px solid var(--accent-green);
    }
    
    .media-grid-random {
        grid-template-columns: 1fr;
        grid-template-areas:
            "a"
            "b"
            "c"
            "d"
            "e";
        gap: 8px;
    }
    .media-item,
    .media-item:nth-child(1),
    .media-item:nth-child(2),
    .media-item:nth-child(3),
    .media-item:nth-child(4),
    .media-item:nth-child(5) {
        min-height: 110px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-hover);
}

/* Highlighted text styles with colored underlines */
.highlight-about {
    border-bottom: 2px solid #FF6B9D;
}

.highlight-feature-1 {
    border-bottom: 2px solid #FF6B9D;
}

.highlight-feature-2 {
    border-bottom: 2px solid #FF8C42;
}

.highlight-feature-3 {
    border-bottom: 2px solid #FFD23F;
}

.highlight-feature-4 {
    border-bottom: 2px solid #6C5CE7;
}

.highlight-feature-5 {
    border-bottom: 2px solid #00D4FF;
}

.highlight-feature-6 {
    border-bottom: 2px solid #26C281;
}

.highlight-howto-1 {
    border-bottom: 2px solid #FF6B9D;
}

.highlight-howto-2 {
    border-bottom: 2px solid #FF8C42;
}

.highlight-howto-3 {
    border-bottom: 2px solid #FFD23F;
}

.highlight-howto-4 {
    border-bottom: 2px solid #6C5CE7;
}

.highlight-howto-5 {
    border-bottom: 2px solid #00D4FF;
}

.highlight-howto-6 {
    border-bottom: 2px solid #26C281;
}/* Base styles are now in theme.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    letter-spacing: 0.015em;
    font-weight: 300;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3?w=1920&h=1080&fit=crop&crop=center&auto=format');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--light-gray);
    border-top: 3px solid var(--accent-green);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.cookie-icon i {
    color: white;
    font-size: 1.5rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.cookie-text p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 100px;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.accept-btn {
    background: var(--accent-green);
    color: white;
}

.accept-btn:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.decline-btn {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--text-gray);
}

.decline-btn:hover {
    background: var(--text-gray);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for cookie popup */
@media screen and (max-width: 768px) {
    
    /* Force theme toggle to be visible on mobile */
    .theme-switch-wrapper {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}
/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE — fix complet toate sectiunile
   ═══════════════════════════════════════════════════ */

html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }

@media (max-width: 768px) {

    .container { padding: 0 16px; width: 100%; max-width: 100%; }

    /* Hero */
    .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-left h1.hero-title { font-size: 2.2rem; word-break: break-word; }
    .hero-left p.hero-text,
    .hero-description p.hero-text { font-size: 1rem; }
    .hero-buttons { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
    .cta-btn, .buy-btn { font-size: 0.95rem; padding: 0.75rem 1.4rem; }
    .hero-features { flex-direction: column; gap: 0.75rem; }
    .hero-feature-item { width: 100%; min-width: 0; flex: 1 1 100%; }

    /* Section titles */
    .section-title { font-size: 1.9rem; word-break: break-word; }

    /* About */
    .about-content { grid-template-columns: 1fr; gap: 2rem; }

    /* Features */
    .features-grid { grid-template-columns: 1fr !important; }
    .static-feature { padding: 1.5rem; overflow: hidden; }
    .static-feature * { word-break: break-word; overflow-wrap: break-word; max-width: 100%; }
    .static-feature div[style*="monospace"],
    .static-feature div[style*="font-family: monospace"] {
        overflow-x: auto !important; font-size: 11px !important;
        white-space: pre !important; max-width: 100% !important;
    }

    /* How To */
    .howto-grid { grid-template-columns: 1fr !important; }
    .video-card { padding: 1.5rem; overflow: hidden; }
    .video-card * { word-break: break-word; overflow-wrap: break-word; max-width: 100%; }
    .video-card div[style*="monospace"],
    .video-card div[style*="font-family: monospace"] {
        overflow-x: auto !important; font-size: 11px !important;
        white-space: pre !important; max-width: 100% !important;
    }

    /* Pricing */
    .pricing-cards { grid-template-columns: 1fr !important; }
    .pricing-card.featured { transform: none; margin: 0.5rem 0; }
    .pricing-card.featured:hover { transform: translateY(-5px); }

    /* Team */
    .team-grid { grid-template-columns: 1fr 1fr !important; }

    /* Contact */
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }

    /* Footer */
    .footer-content { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    /* Tables */
    table { display: block; overflow-x: auto; max-width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .hero-left h1.hero-title { font-size: 1.8rem; }
    .hero-left p.hero-text { font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .cta-btn, .buy-btn {
        width: 100%; text-align: center;
        justify-content: center; font-size: 0.9rem; padding: 0.7rem 1rem;
    }
    .section-title { font-size: 1.6rem; }
    .static-feature, .video-card { padding: 1.2rem; }
    .team-grid { grid-template-columns: 1fr !important; }
    .pricing-card-header .price { font-size: 2rem; }
}
