:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --header-height: 80px;
    --header-bg: rgba(255, 255, 255, 0.98);
    --header-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.header {
    height: var(--header-height);
    background: var(--header-bg);
    box-shadow: var(--header-shadow);
    position: relative;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.logo-link:hover {
    color: var(--primary-color);
}

.logo-dot {
    color: var(--primary-color);
}

.demo-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: translateY(0);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.demo-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.demo-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: #ffffff;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    max-width: 100%;
    padding-right: 1.5rem;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2.5rem;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    text-decoration: none;
}

.cta-button .arrow-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
    margin-left: auto;
    transform: scale(1.1);
    transform-origin: right center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Ecosystem Section */
.ecosystem {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: minmax(250px, 300px) 1fr;
    gap: 3rem;
    align-items: start;
}

.info-panel {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.info-content {
    display: none;
    padding: 2rem;
}

.info-content.active {
    display: block;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.info-text {
    padding-right: 2rem;
}

.info-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.info-description {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item .feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: #22c55e;
}

.feature-item span {
    flex: 1;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.4;
}

/* Mockup Styles */
.info-visual {
    position: relative;
}

.mockup-window {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 8px 10px -6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.mockup-header {
    background: #f8fafc;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

.mockup-title {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.mockup-content {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.mockup-widget {
    height: 120px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
}

.mockup-widget::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%,
        rgba(255,255,255,0.1) 50%,
        transparent 100%);
    animation: shimmer 2s infinite;
}

.mockup-list {
    display: grid;
    gap: 0.75rem;
}

.mockup-item {
    height: 40px;
    background: #f1f5f9;
    border-radius: 0.5rem;
}

.mockup-chart {
    height: 160px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mockup-stat {
    height: 80px;
    background: #f1f5f9;
    border-radius: 0.75rem;
}

/* Estilos para el mockup de TI */
.mockup-it .mockup-content {
    background: #1e293b;
    color: #94a3b8;
}

.server-rack {
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    background: #0f172a;
    border-radius: 0.5rem;
}

.server-unit {
    height: 24px;
    background: #334155;
    border-radius: 0.25rem;
    position: relative;
}

.server-unit.active::before {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    transform: translateY(-50%);
}

.network-stats {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.network-graph {
    height: 120px;
    background: #334155;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.network-graph::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #22c55e;
    filter: blur(1px);
    transform: translateY(-50%);
    opacity: 0.5;
}

/* Estilos para el mockup de Software */
.mockup-code .mockup-content {
    background: #1e1e1e;
    font-family: 'Consolas', monospace;
    padding: 1rem;
}

.code-editor {
    display: grid;
    gap: 0.25rem;
}

.code-line {
    font-size: 0.875rem;
    color: #d4d4d4;
    padding: 0.125rem 0;
}

.keyword { color: #569cd6; }
.variable { color: #9cdcfe; }
.operator { color: #d4d4d4; }

/* Estilos para el mockup de Procesos */
.process-flow {
    display: flex;
    justify-content: space-between;
    padding: 2rem 1rem;
    position: relative;
}

.step-node {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    position: relative;
    z-index: 1;
}

.step-node.active {
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.step-line {
    position: absolute;
    top: 50%;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #e2e8f0;
    transform: translateY(-50%);
}

.process-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.metric-card {
    height: 80px;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

/* Estilos para el mockup de Ventas */
.sales-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-box {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

.sales-chart {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), #60a5fa);
    border-radius: 0.25rem;
    transition: height 0.3s ease;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: sticky;
    top: 2rem;
    max-width: 280px;
}

.service-card {
    aspect-ratio: 1;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #4f46e5;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.active {
    background: white;
    border: 2px solid #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    transform: scale(1.05);
}

.service-card.active::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), transparent);
    z-index: -1;
}

.service-card.active:hover {
    transform: scale(1.05) translateY(-5px);
}

.service-icon {
    margin-bottom: 0.75rem;
    color: #4f46e5;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke-width: 1.5;
}

.service-card h3 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    text-align: center;
    position: relative;
}

@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-container {
        grid-template-columns: repeat(3, 1fr);
        position: relative;
        top: 0;
        max-width: 100%;
        justify-content: center;
    }

    .service-card {
        width: 100px;
        height: 100px;
        padding: 1.25rem;
        margin: 0 auto;
    }

    .service-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .service-card {
        width: 90px;
        height: 90px;
        padding: 1rem;
    }

    .service-icon {
        margin-bottom: 0.5rem;
    }

    .service-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .service-card h3 {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .service-card {
        width: 80px;
        height: 80px;
        padding: 0.875rem;
    }

    .service-icon svg {
        width: 1.125rem;
        height: 1.125rem;
    }

    .service-card h3 {
        font-size: 0.6875rem;
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-image {
        order: -1;
        margin-top: -2rem;
        margin-bottom: 2rem;
    }
    
    .dashboard-mockup {
        transform: none;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-link {
        font-size: 1.5rem;
    }
    
    .demo-button {
        padding: 0.625rem 1.25rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #f8fafc);
    overflow: hidden;
}

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

.testimonials-carousel {
    margin: 60px 0;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 32px;
    padding: 20px 0;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 22px);
    flex: 1;
    transition: all 0.3s ease;
}

.testimonial-content {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover .testimonial-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.quote-icon {
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #1e293b;
    margin: 0 0 32px;
    font-weight: 500;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.author-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.company-icon.anonymous {
    opacity: 0.5;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.875rem;
    color: #64748b;
}

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

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: #94a3b8;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.25);
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }
    
    .testimonials {
        padding: 60px 0;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 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='%234338ca' fill-opacity='0.1'%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-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-content {
    max-width: 500px;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #e0e7ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #a5b4fc;
    margin-bottom: 3rem;
}

.system-preview {
    margin-top: 60px;
    perspective: 1000px;
}

.system-mockup {
    position: relative;
    transform-style: preserve-3d;
}

.floating-screen {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.floating-screen.main {
    transform: translateZ(40px);
}

.floating-screen.secondary {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 80%;
    height: 80%;
    transform: translateZ(-40px);
    opacity: 0.6;
}

.screen-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    height: 100%;
}

.screen-header {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-dots {
    display: flex;
    gap: 6px;
}

.header-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.screen-body {
    padding: 20px;
}

.visualization {
    height: 200px;
    margin-bottom: 20px;
}

.flow-path {
    stroke-width: 2;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: flow 3s ease-out infinite;
}

.flow-dot {
    fill: #fff;
    animation: moveDot 3s linear infinite;
}

@keyframes flow {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes moveDot {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(200px);
        opacity: 0;
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metric {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.data-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-item {
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: 80%;
}

.list-item:nth-child(2) {
    width: 65%;
}

.list-item:nth-child(3) {
    width: 75%;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 0.875rem;
    color: #a5b4fc;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.submit-button {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.5);
}

.send-icon {
    transition: transform 0.3s ease;
}

.submit-button:hover .send-icon {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .cta-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        text-align: center;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .system-preview {
        margin: 40px 0;
    }

    .cta-section {
        padding: 80px 0;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(to bottom, #1e1b4b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-link:hover .footer-icon {
    opacity: 1;
}

.brand-column {
    display: flex;
    align-items: center;
}

.footer-brand {
    text-align: center;
}

.brand-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--primary-color);
}

.brand-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

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

.copyright {
    color: #64748b;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-link {
        justify-content: center;
    }

    .footer-link:hover {
        transform: translateX(0) scale(1.05);
    }

    .brand-description {
        margin: 0 auto;
    }
}

/* Comparison Section */
.comparison {
    padding: 6rem 1.5rem;
    background-color: #f8fafc;
}

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

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

.comparison-table {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 3rem;
    font-size: 0.9375rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-cell {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-row .comparison-cell {
    padding: 0.875rem 1.25rem;
    background-color: #f8fafc;
}

.feature-cell {
    font-weight: 500;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #1e293b;
    font-size: 0.9375rem;
}

.feature-icon {
    width: 1.125rem;
    height: 1.125rem;
    stroke: #4f46e5;
}

.vendy-cell {
    background-color: #f8fafc;
    border-left: 1px solid #e2e8f0;
    position: relative;
}

.vendy-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #4f46e5;
}

.others-cell {
    border-left: 1px solid #e2e8f0;
}

.product-header {
    text-align: center;
    width: 100%;
}

.product-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.product-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #4f46e5;
    color: white;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.check {
    color: #22c55e;
}

.cross {
    color: #ef4444;
}

.feature-text {
    font-size: 0.875rem;
    color: #475569;
}

.comparison-cta {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .header-row .others-cell {
        display: none;
    }

    .comparison-cell {
        padding: 1rem;
    }

    .others-cell {
        background-color: #f8fafc;
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }

    .vendy-cell {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }

    .vendy-cell::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
    }

    .feature-cell {
        background-color: #f1f5f9;
        border-top: 1px solid #e2e8f0;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-cell {
        padding: 0.875rem 1rem;
    }

    .feature-name {
        font-size: 0.875rem;
    }

    .feature-text {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        padding: 0.75rem;
    }

    .header-row .others-cell {
        display: none;
    }

    .others-cell {
        background-color: #f8fafc;
        border-top: 1px solid #e5e7eb;
    }
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

.mockup-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f8fafc;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    width: 200px;
}

.search-icon {
    color: #94a3b8;
}

.search-input {
    height: 4px;
    background: #94a3b8;
    width: 100px;
    border-radius: 2px;
    opacity: 0.3;
}

.toolbar-actions {
    display: flex;
    gap: 0.5rem;
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 0.375rem;
    background: white;
    border: 1px solid #e5e7eb;
    color: #64748b;
    cursor: pointer;
}

.document-list {
    padding: 1rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 0.75rem;
    background: white;
}

.document-item:last-child {
    margin-bottom: 0;
}

.doc-icon {
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 0.375rem;
}

.doc-info {
    flex: 1;
}

.doc-title {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.doc-meta {
    color: #64748b;
    font-size: 0.75rem;
}

.doc-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.doc-status.approved {
    background: #f0fdf4;
    color: #166534;
}

.doc-status.pending {
    background: #fff7ed;
    color: #9a3412;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.mockup-content {
    background: #f8fafc;
}
