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

:root {
    --yellow-400: #FBBF24;
    --yellow-500: #F59E0B;
    --yellow-600: #D97706;
    --black: #000000;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --slate-900: #0F172A;
    --white: #FFFFFF;
    --green-100: #D1FAE5;
    --green-200: #A7F3D0;
    --green-600: #059669;
    --green-700: #047857;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--yellow-400);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--yellow-500);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--yellow-400);
    color: var(--yellow-400);
}

.btn-outline:hover {
    background: rgba(251, 191, 36, 0.1);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

.btn-cta {
    background: var(--yellow-400);
    color: var(--black);
}

.btn-cta:hover {
    background: var(--yellow-500);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
}
.logo-text2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
}

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

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--yellow-500);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-900);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--yellow-500);
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .desktop-only {
        display: inline-flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #000000, #1a1a1a, #000000);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.hero-text {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 9999px;
}

.hero-badge span {
    color: #FCD34D;
    font-size: 0.875rem;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    color: var(--yellow-400);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .hero-badge span {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

/* About Us Section */
.about-us {
    padding: 4rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    gap: 3rem;
}

.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 9999px;
    color: var(--yellow-600);
}

.section-badge.small {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.highlight {
    color: var(--yellow-600);
    font-weight: 600;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 2rem;
    color: var(--yellow-600);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: var(--gray-200);
}

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

.feature-card {
    padding: 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--yellow-400);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--yellow-400);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--black);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        align-items: center;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #f8c600;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--yellow-400);
}

.service-icon i {
    font-size: 1.75rem;
    color: #e73003;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--black);
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.bullet {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--yellow-500);
    border-radius: 50%;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background: var(--gray-50);
}

.portfolio-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--yellow-400);
    color: var(--black);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-tag {
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-700);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: var(--yellow-600);
}

.portfolio-button {
    text-align: center;
}

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

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

.process-step {
    position: relative;
    text-align: left;
    z-index: 10;
}

.process-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7.5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--yellow-400);
    opacity: 0.1;
    pointer-events: none;
    line-height: 1;
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.4);
}

.process-icon i {
    font-size: 4rem;
    color: var(--black);
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon i {
    transform: scale(1.2) rotate(-5deg);
}

.process-text-box {
    border: 0.5px solid var(--black);
    border-radius: 0.5rem;
    padding: 1rem;
    background: var(--white);
    margin-top: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--gray-600);
}

.process-connector {
    display: none;
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(7, 1fr);
        align-items: center;
    }
    
    .process-step {
        grid-column: span 1;
    }
    
    .process-step:nth-child(1) { grid-column: 1; }
    .process-step:nth-child(3) { grid-column: 3; }
    .process-step:nth-child(5) { grid-column: 5; }
    .process-step:nth-child(7) { grid-column: 7; }
    
    .process-connector {
        display: block;
        height: 2px;
        background: linear-gradient(to right, var(--yellow-400), var(--yellow-300));
        grid-column: span 1;
    }
    
    .process-connector:nth-child(2) { grid-column: 2; }
    .process-connector:nth-child(4) { grid-column: 4; }
    .process-connector:nth-child(6) { grid-column: 6; }
}

/* Video Showcase Section */
.video-showcase {
    padding: 3rem 0;
    background: var(--white);
}

.video-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.video-content h2 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.video-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--yellow-400);
}

.highlight-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--yellow-400);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.25rem;
    color: var(--black);
}

.highlight-text h3 {
    color: var(--gray-900);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.highlight-text p {
    color: var(--gray-600);
    font-size: 0.75rem;
    margin-bottom: 0;
}

.video-player {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gray-200);
}

.local-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--black);
}

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

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    background: var(--yellow-400);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.play-button i {
    font-size: 2rem;
    color: var(--black);
    margin-left: 0.25rem;
}

.video-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.video-iframe iframe {
    width: 100%;
    height: 100%;
}

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

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--yellow-400);
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--yellow-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
    font-size: 1.125rem;
}

.author-name {
    font-weight: 600;
    color: var(--black);
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-600);
}

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

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

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

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-item.whatsapp-item:hover .contact-icon {
    background: var(--green-200);
}

.contact-item.whatsapp-item:hover .contact-label {
    color: var(--green-600);
}

.contact-item.whatsapp-item:hover .contact-value {
    color: var(--green-700);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--yellow-400);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon.whatsapp {
    background: var(--green-100);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--black);
}

.contact-icon.whatsapp i {
    color: var(--green-600);
}

.contact-label {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.contact-value {
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.cta-box {
    background: linear-gradient(135deg, var(--black), #2d2d2d);
    border-radius: 0.75rem;
    padding: 2rem;
    color: var(--white);
}

.cta-box h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: #FCD34D;
    margin-bottom: 1.5rem;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-900);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow-500);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.captcha-box {
    border: 2px solid var(--yellow-400);
    border-radius: 0.5rem;
    padding: 1rem;
    background: #FFFBEB;
}

.captcha-box label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.captcha-question {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.captcha-display {
    flex: 1;
    background: var(--black);
    color: var(--yellow-400);
    padding: 0.75rem;
    border-radius: 0.375rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    user-select: none;
}

.captcha-refresh {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: var(--gray-50);
}

.captcha-box input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
}

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

/* Footer */
.footer {
    background: var(--slate-900);
    color: var(--white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #A78BFA;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--yellow-400);
    color: var(--black);
}

.btn-legal-contract {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--yellow-400);
    color: var(--black);
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-legal-contract:hover {
    background: var(--yellow-500);
    transform: translateY(-2px);
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

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

/* Scroll Rocket */
.scroll-rocket {
    position: fixed;
    right: 2rem;
    z-index: 100;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(5rem);
}

.scroll-rocket.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-rocket.exploded .rocket-body,
.scroll-rocket.exploded .rocket-flames,
.scroll-rocket.exploded .rocket-particles,
.scroll-rocket.exploded .rocket-tooltip {
    display: none;
}

.rocket-particles {
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
}

.particle {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--yellow-400);
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.rocket-flames {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.flame {
    width: 0.75rem;
    height: 1.5rem;
    background: linear-gradient(to top, var(--yellow-400), #F97316);
    border-radius: 9999px;
    animation: bounce 0.5s ease-in-out infinite;
}

.rocket-body {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rocket-body:hover {
    transform: scale(1.1);
}

.rocket-icon i {
    font-size: 1.75rem;
    color: var(--black);
    transform: rotate(-45deg);
}

.rocket-progress {
    position: absolute;
    top: -0.25rem;
    left: -0.25rem;
    width: 4rem;
    height: 4rem;
    transform: rotate(-90deg);
}

.progress-bg {
    stroke: var(--gray-200);
    stroke-width: 2;
    fill: none;
}

.progress-bar {
    stroke: var(--yellow-400);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 188.5;
    stroke-dashoffset: 188.5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
}

.rocket-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 1rem;
    background: var(--black);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.rocket-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 0.5rem solid transparent;
    border-left-color: var(--black);
}

.rocket-body:hover + .rocket-tooltip {
    opacity: 1;
}

.explosion {
    display: none;
}

.scroll-rocket.exploded .explosion {
    display: block;
}

.explosion-particle {
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--yellow-400);
    border-radius: 50%;
    animation: explode 0.6s ease-out forwards;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.25rem);
    }
}

@keyframes explode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-rocket {
        right: 1rem;
    }
    
    .rocket-body {
        width: 3rem;
        height: 3rem;
    }
    
    .rocket-icon i {
        font-size: 1.5rem;
    }
    
    .rocket-progress {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.video-container video {
    width: 100%;
    height: auto;
    max-width: 1920px;
    aspect-ratio: 16 / 9;
    display: block;
}