/* ============================================
   VARIABLES & ROOT STYLES
============================================ */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --accent: #f59e0b;

    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #1a1a2e;
    --gray-800: #252542;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --white: #ffffff;

    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --gradient-2: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-3: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Light Mode Theme */
[data-theme="light"] {
    --dark: #ffffff;
    --dark-light: #f8fafc;
    --gray-900: #f1f5f9;
    --gray-800: #e2e8f0;
    --gray-700: #cbd5e1;
    --gray-600: #94a3b8;
    --gray-500: #64748b;
    --gray-400: #475569;
    --gray-300: #334155;
    --gray-200: #1e293b;
    --gray-100: #0f172a;
    --white: #0f172a;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.2);
}

/* ============================================
   RESET & BASE STYLES
============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark);
    color: var(--gray-300);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    outline: none;
}

/* ============================================
   UTILITY CLASSES
============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    color: var(--gray-400);
    font-size: 1.125rem;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 1rem;
    color: var(--gray-300);
    animation: pulse-glow 2s ease-in-out infinite;
}

.time-badge i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.time-badge strong {
    color: var(--primary);
    font-weight: 700;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 30px rgba(59, 130, 246, 0.3);
    }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-600);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: cover;
    object-position: center;
    max-width: 180px;
}

.logo-text {
    color: var(--white);
}

.logo-dot {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--gray-300);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-1);
    border-radius: var(--radius-full);
    color: var(--white) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Code Window */
.hero-visual {
    display: flex;
    justify-content: center;
}

.code-window {
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-700);
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.window-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-800);
    border-bottom: 1px solid var(--gray-700);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.window-title {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.code-content {
    padding: 24px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-keyword {
    color: #c678dd;
}

.code-variable {
    color: #e5c07b;
}

.code-property {
    color: #e06c75;
}

.code-string {
    color: #98c379;
}

.code-function {
    color: #61afef;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-500);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-500);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   SERVICES SECTION
============================================ */
.services {
    padding: var(--section-padding);
    background: var(--dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-700), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--primary);
}

.service-card.featured::before {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--gradient-1);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary-light);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--primary-light);
    font-size: 0.75rem;
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gray-600);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-700);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.pricing-price .currency {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-top: 8px;
}

.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.pricing-period {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 8px;
}

.pricing-description {
    text-align: center;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.pricing-features li.included-from {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    padding-bottom: 8px;
    margin-bottom: 4px;
    border-bottom: 1px dashed rgba(139, 92, 246, 0.3);
}

.pricing-features i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

.pricing-maintenance {
    background: var(--gray-800);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-700);
}

.pricing-maintenance p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.pricing-maintenance strong {
    color: var(--white);
}

.pricing-maintenance .uyu {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.support-info {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.08);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: start;
}

.support-info i {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.support-info p {
    color: var(--gray-300);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}


.hours-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.includes-maint {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Monthly Options - New Pricing Structure */
.monthly-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.monthly-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.monthly-option:hover {
    border-color: var(--gray-600);
}

.monthly-option.recommended {
    background: rgba(99, 102, 241, 0.08);
    border-color: var(--primary);
    position: relative;
}

.monthly-option.recommended::before {
    content: '★ Recomendado';
    position: absolute;
    top: -10px;
    right: 12px;
    background: var(--gradient-1);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
}

.monthly-option>i {
    color: var(--primary-light);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.monthly-option p {
    margin: 0;
}

.monthly-option p:first-child {
    margin-bottom: 4px;
}

.monthly-option .option-price {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.monthly-option .option-desc {
    color: var(--gray-400);
    font-size: 0.8rem;
    line-height: 1.4;
}

.pricing-note {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note i {
    color: var(--primary-light);
    margin-right: 8px;
}

/* Comparison Table */
.comparison-table-container {
    margin-top: 60px;
    padding: 40px;
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
}

.comparison-title {
    text-align: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.comparison-title i {
    color: var(--primary-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-700);
}

.comparison-table th {
    background: var(--gray-800);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    color: var(--gray-300);
}

.comparison-table td {
    color: var(--gray-400);
}

.comparison-table .featured-col {
    background: rgba(99, 102, 241, 0.08);
}

.comparison-table th.featured-col {
    background: var(--primary);
    color: white;
}

.comparison-table .fa-check {
    color: #10b981;
    font-size: 1.1rem;
}

.comparison-table .fa-times {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.comparison-table .price-row td {
    color: var(--white);
    font-size: 1.1rem;
    background: var(--gray-800);
}

.comparison-table .price-row .featured-col {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
}

/* Annual Discount */
.annual-discount {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 2px solid #10b981;
    border-radius: var(--radius-lg);
}

.discount-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: #10b981;
    border-radius: var(--radius-md);
    color: white;
    flex-shrink: 0;
}

.discount-badge i {
    font-size: 2rem;
}

.discount-badge span {
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.discount-content h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.discount-content>p {
    color: var(--gray-300);
    margin-bottom: 16px;
}

.discount-prices {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.discount-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--dark);
    border-radius: var(--radius-md);
}

.discount-option .label {
    color: var(--white);
    font-weight: 500;
}

.discount-option .old-price {
    color: var(--gray-500);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.discount-option .new-price {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Guarantee Section */
.guarantee-section {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
}

.guarantee-badge {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 50%;
    flex-shrink: 0;
}

.guarantee-badge i {
    font-size: 2rem;
    color: white;
}

.guarantee-content h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.guarantee-content p {
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background: var(--dark-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gray-600);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question i {
    color: var(--primary-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-300);
    line-height: 1.7;
    margin: 0;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .annual-discount {
        flex-direction: column;
        text-align: center;
    }

    .discount-prices {
        justify-content: center;
    }

    .guarantee-section {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table-container {
        padding: 20px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}

/* Plan Personalizado - Calculadora */
.custom-plan {
    margin-top: 60px;
    padding: 40px;
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
}

.custom-plan-header {
    text-align: center;
    margin-bottom: 40px;
}

.custom-plan-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin: 16px 0 12px;
}

.custom-plan-header p {
    color: var(--gray-400);
    font-size: 1.1rem;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-options h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-options h4 i {
    color: var(--primary-light);
}

.option-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.option-item {
    cursor: pointer;
}

.option-item input {
    display: none;
}

.option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: var(--dark-light);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
}

.option-item input:checked+.option-box {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.option-box:hover {
    border-color: var(--gray-600);
}

.option-title {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.option-price {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-item:hover {
    border-color: var(--gray-600);
}

.checkbox-item input {
    display: none;
}

.checkbox-box {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border: 2px solid var(--gray-600);
    border-radius: 6px;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-box i {
    font-size: 0.7rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.checkbox-item input:checked+.checkbox-box {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-item input:checked+.checkbox-box i {
    opacity: 1;
}

.checkbox-label {
    color: var(--gray-300);
    font-size: 0.9rem;
    flex: 1;
}

.checkbox-price {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Calculator Result */
.result-card {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--gray-800) 100%);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-glow);
}

.result-card h4 {
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
}

.result-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.result-currency {
    color: var(--gray-400);
    font-size: 1.5rem;
    margin-top: 12px;
}

.result-amount {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.result-uyu {
    text-align: center;
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 24px;
}

.result-details {
    padding: 20px 0;
    border-top: 1px solid var(--gray-700);
    border-bottom: 1px solid var(--gray-700);
    margin-bottom: 20px;
}

.result-details p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-details p:last-child {
    margin-bottom: 0;
}

.result-details i {
    color: #10b981;
    font-size: 0.8rem;
}

.result-maintenance {
    margin-bottom: 24px;
}

.result-maintenance p {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.result-maintenance p:last-child {
    margin-bottom: 0;
}

/* Responsive calculadora */
@media (max-width: 1024px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }

    .result-card {
        position: static;
    }

    .option-group {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .custom-plan {
        padding: 24px;
    }

    .custom-plan-header h3 {
        font-size: 1.5rem;
    }

    .result-amount {
        font-size: 3.5rem;
    }
}

/* Tooltips para planes */
.tooltip-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    cursor: pointer;
}

.tooltip-icon i {
    font-size: 0.75rem;
    color: var(--gray-500);
    transition: var(--transition);
}

.tooltip-icon:hover i {
    color: var(--primary-light);
}

.tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 14px;
    background: var(--gray-800);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    border-radius: var(--radius-md);
    white-space: normal;
    width: 220px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-700);
}

.tooltip-icon::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--gray-800);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 101;
}

.tooltip-icon:hover::after,
.tooltip-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Para móviles - tooltip al hacer click */
@media (max-width: 768px) {
    .tooltip-icon::after {
        width: 180px;
        font-size: 0.75rem;
    }
}

/* ============================================
   PROJECTS SECTION
============================================ */
.projects {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
}

.project-placeholder i {
    font-size: 4rem;
    color: var(--gray-600);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(99, 102, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.25rem;
    transform: scale(0);
    transition: var(--transition);
}

.project-card:hover .project-link {
    transform: scale(1);
}

.project-info {
    padding: 24px;
}

.project-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.project-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 8px;
}

.project-info p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.project-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tech span {
    padding: 4px 10px;
    background: var(--gray-800);
    color: var(--gray-400);
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
    padding: var(--section-padding);
    background: var(--dark-light);
}

.about-grid {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-placeholder {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-lg);
}

.about-placeholder i {
    font-size: 8rem;
    color: var(--gray-600);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-1);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.exp-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.3;
}

.about-content .section-title {
    text-align: center;
}

.about-text {
    color: var(--gray-400);
    margin-bottom: 20px;
    font-size: 1.0625rem;
    text-align: center;
}

.skills-section {
    margin: 32px 0;
    text-align: center;
}

.skills-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.skills-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.skill-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.skill-item i {
    font-size: 2rem;
    color: var(--primary-light);
}

.skill-item span {
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--dark);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
}

.testimonial-content p {
    color: var(--gray-300);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 50%;
}

.author-avatar i {
    font-size: 1.25rem;
    color: var(--gray-500);
}

.author-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ============================================
   PROCESS SECTION
============================================ */
.process {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gray-700);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

/* ============================================
   CTA SECTION
============================================ */
.cta {
    padding: 80px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 32px;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info .section-title {
    text-align: left;
}

.contact-text {
    color: var(--gray-400);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--primary-light);
}

.contact-data span {
    display: block;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.contact-data a,
.contact-data p {
    color: var(--white);
    font-weight: 500;
}

.contact-data a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: 50%;
    color: var(--gray-400);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-container {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--gray-300);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--dark-light);
    padding: 80px 0 0;
    border-top: 1px solid var(--gray-700);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-400);
    max-width: 300px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-newsletter p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--gray-600);
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--gray-700);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    padding: 10px 16px;
    background: var(--white);
    color: var(--dark);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--dark-light);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat {
        text-align: center;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}