/* ============================================
   VARIABLES GLOBALES
   ============================================ */
:root {
    --primary: #1a5d9f;
    --primary-dark: #0f3d6b;
    --primary-light: #2d7dd2;
    --accent: #e63946;
    --accent-light: #ff6b6b;
    --dark: #0a0a2a;
    --light: #f8fafc;
    --gray: #64748b;
    --text-dark: #1e293b;
    --text-light: #f1f5f9;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0a2a 0%, #0f0f2a 50%, #14142a 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a2a, #0f0f2a);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(45, 125, 210, 0.2);
    border-top: 3px solid var(--primary-light);
    border-right: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   CANVAS 3D
   ============================================ */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: #0a0a2a;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    animation: float linear infinite;
}

@keyframes float {
    from {
        transform: translateY(100vh) rotate(0deg);
    }
    to {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.logo-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
    right: -12px;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Navigation */
.desktop-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.desktop-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.desktop-nav a:hover {
    color: var(--accent);
}

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

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

.nav-cta {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 100px 40px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 30px;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--accent);
}

/* ============================================
   CONTENT
   ============================================ */
.content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', monospace;
}

.typing-wrapper {
    display: inline-block;
    position: relative;
}

.typing-ideas {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-width: 150px;
    display: inline-block;
}

.cursor-ideas {
    display: inline-block;
    width: 3px;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.description {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Stats */
.stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 8px;
}

.stat-progress {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 12px;
    border-radius: 2px;
    overflow: hidden;
}

.stat-progress::after {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 1s ease;
}

.stat-item.visible .stat-progress::after {
    width: 100%;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    color: #94a3b8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-card p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.service-price {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.service-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   TRUSTED COMPANIES
   ============================================ */
.trusted-section {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.trusted-badge {
    text-align: center;
    margin-bottom: 40px;
}

.trusted-badge span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 2px;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.company-item {
    display: inline-flex;
    align-items: center;
    margin: 0 40px;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.company-item:hover {
    background: rgba(230, 57, 70, 0.2);
    transform: scale(1.05);
}

.company-icon {
    margin-right: 10px;
    font-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-link-btn {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link-btn:hover {
    color: var(--accent);
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 14px;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
    border: none;
}

.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.float-btn:hover::before {
    opacity: 1;
}

.float-btn:hover {
    transform: scale(1.1);
}

.instagram {
    background: radial-gradient(circle at 30% 110%, #ffdb8b, #d6249f, #2851a3);
    color: white;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.chat {
    background: var(--gradient-accent);
    color: white;
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #1e1e3a, #1a1a35);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
}

.form-control.error {
    border-color: var(--accent);
}

.error-message {
    color: var(--accent);
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-control.error + .error-message {
    display: block;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.success-message {
    text-align: center;
    padding: 30px;
}

.success-message i {
    font-size: 60px;
    color: #4ade80;
    margin-bottom: 20px;
}

/* Chat Modal */
.chat-modal .modal-content {
    max-width: 400px;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    margin-bottom: 15px;
}

.message {
    margin-bottom: 15px;
    display: flex;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user {
    justify-content: flex-end;
}

.message-content {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
}

.message.user .message-content {
    background: var(--gradient-accent);
    color: white;
}

.message.bot .message-content {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-accent);
    border: none;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.05);
}

.chat-footer {
    text-align: center;
    padding: 10px;
    color: #64748b;
    font-size: 10px;
}

/* Toast */
#toastContainer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    animation: toastSlide 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--accent);
}

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

/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.countdown-section {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(45, 125, 210, 0.1));
    border-top: 1px solid rgba(230, 57, 70, 0.3);
    border-bottom: 1px solid rgba(230, 57, 70, 0.3);
    margin: 60px 0;
}

.countdown-badge {
    text-align: center;
    margin-bottom: 30px;
}

.countdown-badge span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 2px;
}

.countdown-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.countdown-section p {
    color: #94a3b8;
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    min-width: 80px;
    text-align: center;
}

.countdown-label {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 8px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    color: #94a3b8;
    font-size: 14px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
}

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

.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.team-photo {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    padding: 30px;
}

.team-photo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.team-card h3 {
    font-size: 20px;
    margin: 20px 0 5px;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.team-social a:hover {
    transform: scale(1.1);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-rating {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-weight: 600;
    margin: 0;
}

.author-company {
    color: #94a3b8;
    font-size: 12px;
    margin: 2px 0 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-accent);
    border: none;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.portfolio-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.portfolio-card h3 {
    font-size: 20px;
    padding: 20px 20px 5px;
}

.portfolio-service {
    color: var(--accent);
    font-size: 14px;
    padding: 0 20px;
    margin-bottom: 15px;
}

.portfolio-metrics {
    padding: 0 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portfolio-metrics span {
    color: #94a3b8;
    font-size: 13px;
}

.portfolio-metrics strong {
    color: var(--accent);
}

.portfolio-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.portfolio-btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #94a3b8;
    line-height: 1.6;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(45, 125, 210, 0.15));
    border-top: 1px solid rgba(230, 57, 70, 0.3);
    margin: 60px 0 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.newsletter-content p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form input:focus {
    border-color: var(--accent);
    outline: none;
}

.newsletter-form button {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        justify-content: center;
    }
    
    .stats {
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .company-item {
        margin: 0 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .countdown-number {
        font-size: 36px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        gap: 5px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    .content {
        padding: 100px 16px 60px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .countdown-number {
        font-size: 28px;
        min-width: 60px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .team-photo {
        height: 150px;
        font-size: 48px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 15px;
    }
    
    .faq-answer p {
        padding: 0 15px 15px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}