:root {
    --primary: #11061e;
    --gradient-1: #16a34a;
    --gradient-2: #22c55e;
    --gradient-3: #22c55e;
    --gradient-4: #16a34a;
    --white: #ffffff;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-5: rgba(255, 255, 255, 0.05);
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --border-radius: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #e5e7eb;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--white-10);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--gradient-2), var(--gradient-3));
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.light-ray {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #22c55e80, transparent);
    animation: rayMove 4s linear infinite;
    opacity: 0.6;
}

.light-ray:nth-child(1) { left: 10%; animation-delay: 0s; }
.light-ray:nth-child(2) { left: 30%; animation-delay: 1s; }
.light-ray:nth-child(3) { left: 50%; animation-delay: 2s; }
.light-ray:nth-child(4) { left: 70%; animation-delay: 3s; }
.light-ray:nth-child(5) { left: 90%; animation-delay: 0.5s; }

@keyframes rayMove {
    0% { transform: translateY(-200px) rotate(15deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(100vh) rotate(15deg); opacity: 0; }
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #22c55e40, transparent);
    animation: orbFloat 8s ease-in-out infinite;
}

.light-orb:nth-child(6) { width: 300px; height: 300px; top: 20%; left: 5%; animation-delay: 0s; }
.light-orb:nth-child(7) { width: 200px; height: 200px; top: 60%; right: 10%; animation-delay: 2s; }
.light-orb:nth-child(8) { width: 150px; height: 150px; bottom: 30%; left: 15%; animation-delay: 4s; }

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.1); opacity: 0.6; }
    50% { transform: translateY(-10px) translateX(-15px) scale(0.9); opacity: 0.8; }
    75% { transform: translateY(-40px) translateX(10px) scale(1.05); opacity: 0.5; }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    z-index: 100;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    padding: 1rem 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #4ade80;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.logo-icon-main {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #4ade80;
    transform: translateY(-2px);
    background: rgba(34, 197, 94, 0.1);
}

.nav-cta {
    background: linear-gradient(135deg, #16a34a, #22c55e) !important;
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.1) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 101;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.1), transparent);
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
}

.hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #4ade80;
    animation: heroPulse 3s infinite;
    background: rgba(34, 197, 94, 0.05);
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(34, 197, 94, 0.3); }
    50% { transform: scale(1.08); box-shadow: 0 0 50px rgba(34, 197, 94, 0.6); }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4ade80, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
    animation: slideInUp 1s ease 0.2s both;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #4ade80;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease 0.4s both;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    animation: slideInUp 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Launchers Section - Horizontal Scroll with Vertical Navigation */
.launchers {
    position: relative;
    height: 500vh; /* 5 slides * 100vh */
    z-index: 10;
}

.section-title {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 3.5rem;
    color: #4ade80;
    z-index: 20;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.launchers-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.launchers-container {
    display: flex;
    height: 100vh;
    width: 500%; /* 5 slides * 100% */
    will-change: transform;
    transition: none;
}

.launcher-slide {
    flex: 0 0 100vw;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.8), 
        rgba(23, 23, 23, 0.9));
    position: relative;
}

.launcher-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(34, 197, 94, 0.1), 
        transparent, 
        rgba(34, 197, 94, 0.05));
    z-index: 1;
}

.launcher-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.launcher-info {
    padding: 2rem;
}

.launcher-info h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #4ade80;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.launcher-info p {
    color: #e5e7eb;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.3rem;
}

.launcher-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-tag {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.launcher-preview {
    width: 570px;
    height: 275px;
    background: linear-gradient(135deg, #171717, #0a0a0a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: #4ade80;
    border: 3px solid #22c55e;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.launcher-image {
    width: 585px;
    height: 40vh;
    object-fit: contain;
    padding: 0px;
    display: block;
    object-fit: fill;
}

.launcher-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.launcher-navigation {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 200;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #4ade80;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.launcher-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    transition: width 0.1s ease;
    z-index: 200;
}

/* Timeline Section */
.timeline {
    padding: 8rem 2rem 8rem 2rem;
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.3), rgba(10, 10, 10, 0.5));
    position: relative;
    z-index: 10;
}

.timeline .section-title {
    margin-bottom: 6rem;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    margin-top: 5rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #16a34a, #22c55e, #4ade80);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    max-width: 45%;
    background: rgba(23, 23, 23, 0.8);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    border-color: #4ade80;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.timeline-title {
    font-size: 1.5rem;
    color: #4ade80;
    margin-bottom: 1rem;
}

.timeline-description {
    color: #e5e7eb;
    line-height: 1.6;
}

/* Feedback Section with Auto Scroll */
.feedback {
    padding: 8rem 2rem 8rem 2rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.feedback .section-title {
    margin-bottom: 5rem;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.feedback-container {
    position: relative;
    height: 300px;
}

.feedback-scroll {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    animation: autoScroll 30s linear infinite;
    will-change: transform;
}

@keyframes autoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.feedback-scroll:hover {
    animation-play-state: paused;
}

.feedback-item {
    min-width: 400px;
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.8), rgba(10, 10, 10, 0.9));
    border-radius: 20px;
    padding: 2.5rem;
    border-left: 4px solid #4ade80;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feedback-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.feedback-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #e5e7eb;
    font-size: 1.1rem;
}

.feedback-author {
    color: #4ade80;
    font-weight: bold;
    font-size: 1.1rem;
}

.feedback-rating {
    color: #22c55e;
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Interactive Project Cases */
.project-cases {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.5), rgba(10, 10, 10, 0.8));
    position: relative;
    z-index: 10;
}

.projects-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.project-card {
    background: rgba(23, 23, 23, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #4ade80;
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.3);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.project-title {
    font-size: 1.8rem;
    color: #4ade80;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.project-type {
    color: #e5e7eb;
    font-size: 0.9rem;
    opacity: 0.8;
}

.project-description {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tech-tag {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4ade80;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #e5e7eb;
    opacity: 0.8;
}

.project-cta {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.project-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

/* Modal for Project Details */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.project-modal.active {
    display: flex;
}

.modal-content {
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.95), rgba(10, 10, 10, 0.98));
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(50px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #4ade80;
    transform: rotate(90deg);
}

.modal-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.modal-project-info h2 {
    font-size: 2.5rem;
    color: #4ade80;
    margin-bottom: 1rem;
}

.modal-project-info .project-type {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.modal-project-preview {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #171717, #0a0a0a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #4ade80;
    border: 2px solid #22c55e;
    position: relative;
    overflow: hidden;
}

.modal-tech-details {
    margin-bottom: 3rem;
}

.modal-tech-details h3 {
    color: #4ade80;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.tech-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-detail-card {
    background: rgba(10, 10, 10, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.tech-detail-card h4 {
    color: #4ade80;
    margin-bottom: 1rem;
}

.tech-detail-card p {
    line-height: 1.6;
    color: #e5e7eb;
}

.modal-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.modal-metric {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.modal-metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.modal-metric-label {
    color: #e5e7eb;
    opacity: 0.8;
}

/* Plans Section */
.plans {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
}

.plans .section-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.plans-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.plans-mobile-indicator {
    display: none;
    text-align: center;
    margin-bottom: 2rem;
    color: #4ade80;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.plans-mobile-container {
    display: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
}

.plans-mobile-container::-webkit-scrollbar {
    display: none;
}

.plans-mobile-scroll {
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
}

.plan-card {
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.8), rgba(10, 10, 10, 0.9));
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    border-color: #4ade80;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.3);
}

.plan-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 2rem;
    color: #4ade80;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.plan-price {
    font-size: 3rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    font-weight: bold;
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
}

.plan-features li {
    padding: 0.8rem 0;
    color: #e5e7eb;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.plan-features li::before {
    content: '✓';
    color: #4ade80;
    margin-right: 1rem;
    font-weight: bold;
}

.plan-button {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a0a0a, #171717);
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 2px solid rgba(34, 197, 94, 0.2);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.footer-links a:hover {
    color: #4ade80;
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

/* Fade animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.feedback .section-title::before {
        content: 'Feedback de Clientes';
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 99;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    /* Mobile title adjustments - Corrigido */
    .launchers .section-title {
        display: none;
    }

    .feedback .section-title {
        display: block !important;
        font-size: 2.5rem !important;
        text-align: center;
    }

    .feedback .section-title::before {
        content: 'Feedbacks';
    }

    .feedback .section-title {
        text-indent: -9999px;
        line-height: 0;
    }

    .feedback .section-title::before {
        text-indent: 0;
        display: block;
        line-height: initial;
    }

    .section-title {
        font-size: 2.5rem;
        top: 3rem;
    }

    /* Launchers mobile - keep vertical scroll behavior */
    .launchers {
        height: 100vh;
        position: relative;
    }

    .launchers-sticky-container {
        position: relative;
    }

    .launchers-container {
        flex-direction: column;
        height: auto;
        width: 100%;
        position: relative;
        transform: none !important;
    }

    .launcher-slide {
        flex: none;
        width: 100%;
        height: 100vh;
        padding: 6rem 1rem 4rem;
    }

    .launcher-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .launcher-preview {
        order: 1;
        height: 250px;
        font-size: 4rem;
        margin-bottom: 2rem;
    }

    .launcher-info {
        order: 2;
        padding: 1rem;
    }

    .launcher-info h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .launcher-info p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .launcher-features {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .feature-tag {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .launcher-navigation {
        display: none;
    }

    .launcher-progress {
        display: none;
    }

    /* Timeline mobile adjustments */
    .timeline {
        padding: 6rem 1rem;
    }

    .timeline .section-title {
        margin-bottom: 4rem;
    }

    .timeline-item {
        flex-direction: column;
        margin-bottom: 3rem;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-content {
        max-width: 100%;
        margin-top: 2rem;
    }

    .timeline-number {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto 1rem;
    }

    .timeline-line {
        display: none;
    }

    /* Feedback mobile adjustments */
    .feedback {
        padding: 6rem 1rem;
    }

    .feedback .section-title {
        margin-bottom: 3rem;
    }

    .feedback-item {
        min-width: 300px;
    }

    /* Project cases mobile - MODAL RESPONSIVO */
    .project-cases {
        padding: 6rem 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 0.5rem;
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }

    .modal-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .modal-project-info h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .modal-project-info .project-type {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .modal-project-preview {
        height: 200px;
        font-size: 3rem;
    }

    .modal-tech-details h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .tech-details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tech-detail-card {
        padding: 1rem;
    }

    .tech-detail-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .modal-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .modal-metric {
        padding: 1rem;
    }

    .modal-metric-value {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .modal-metric-label {
        font-size: 0.8rem;
    }

    /* Plans mobile - show horizontal scroll */
    .plans {
        padding: 6rem 1rem;
    }

    .plans-grid {
        display: none;
    }

    .plans-mobile-indicator {
        display: block;
    }

    .plans-mobile-container {
        display: block;
    }

    .plan-card {
        flex-shrink: 0;
        min-width: 300px;
        scroll-snap-align: center;
    }

    .plan-card.featured {
        transform: none;
    }

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        top: 1rem;
    }

    .launcher-info h3 {
        font-size: 1.8rem;
    }

    .launcher-preview {
        height: 200px;
        font-size: 3rem;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .feedback-item {
        min-width: 280px;
        padding: 1.5rem;
    }

    .plan-card {
        padding: 2rem;
        min-width: 280px;
    }

    .project-card {
        padding: 2rem;
    }

    .modal-content {
        padding: 1rem;
        margin: 0.5rem;
    }

    .modal-project-info h2 {
        font-size: 1.5rem;
    }

    .modal-project-preview {
        height: 150px;
        font-size: 2.5rem;
    }

    .timeline {
        padding: 4rem 1rem;
    }

    .timeline .section-title {
        margin-bottom: 3rem;
    }

    .feedback {
        padding: 4rem 1rem;
    }

    .feedback .section-title {
        margin-bottom: 2rem;
    }

    .plans {
        padding: 4rem 1rem;
    }

    .project-cases {
        padding: 4rem 1rem;
    }
}

#launcherProgress {
    transition: opacity 0.3s ease, width 0.3s ease;
    opacity: 0;
}

/* Nova Seção - Funcionalidades Exclusivas */
.exclusive-features {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(23, 23, 23, 0.8));
    position: relative;
    z-index: 10;
}

.exclusive-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(34, 197, 94, 0.05), 
        transparent, 
        rgba(34, 197, 94, 0.03));
    z-index: 1;
}

.exclusive-features .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.exclusive-features .section-title {
    text-align: center;
    font-size: 3.5rem;
    color: #4ade80;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.exclusive-features .section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    font-size: 1.3rem;
    color: #e5e7eb;
    line-height: 1.8;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(23, 23, 23, 0.8);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #4ade80;
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.6);
}

.feature-title {
    font-size: 1.8rem;
    color: #4ade80;
    margin-bottom: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.feature-description {
    color: #e5e7eb;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Fade animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}