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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e3a8a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Particles Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid #dbeafe;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 5rem;
}

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

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #2563eb;
}

.sparkles-icon {
    width: 0.75rem;
    height: 0.75rem;
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
}

.nav-link {
    position: relative;
    color: #2563eb;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1d4ed8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

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

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.btn-primary {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 1px solid #dbeafe;
}

.btn-outline:hover {
    background-color: #eff6ff;
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    height: 50px !important;
}
.askIntegrationBtn{
    height: 50px !important;
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;

}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2563eb;
    width: fit-content;
}

.pulse-dot {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #2563eb;
    border-radius: 50%;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #60a5fa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1e3a8a;
}

.hero-description {
    font-size: 1.25rem;
    color: #1d4ed8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
}

.brand {
    color: #60a5fa;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand:hover {
    opacity: 1;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-container {
    width: 100%;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.1);

    background-image: url("../images/brand-logos/metricoceanTransparent.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    aspect-ratio: 1/1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    cursor: pointer;
    font-size: 0.875rem;
}

.chevron-down {
    width: 1.5rem;
    height: 1.5rem;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Stats Section */
.stats {
    padding: 4rem 0 6rem;
    background-color: #eff6ff;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
}

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

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

.stat-number {
    display: flex;
    align-items: end;
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
}

.stat-symbol {
    color: #2563eb;
}

.stat-label {
    color: #1d4ed8;
    margin-top: 0.5rem;
}

/* Features Section */
.features {
    padding: 5rem 0 8rem;
}

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

.section-badge {
    display: inline-block;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #1d4ed8;
    max-width: 900px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: white;
    border: 1px solid #dbeafe;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.05);
}

.feature-card:hover {
    background-color: #eff6ff;
    transform: translateY(-5px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #2563eb;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.feature-description {
    color: #1d4ed8;
}

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

/* Integrations Section */
.integrations {
    padding: 5rem 0 8rem;
    background-color: #eff6ff;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.integration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: white;
    border: 1px solid #dbeafe;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.05);
}

.integration-card:hover {
    border-color: #93c5fd;
    background-color: #eff6ff;
    transform: translateY(-5px);
}

.integration-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    font-size: 0.875rem;
}

.integration-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1d4ed8;
}

.integration-cta {
    display: flex;
    justify-content: center;
}

.integration-cta-content {
    max-width: 48rem;
    width: 100%;
    background-color: white;
    border: 1px solid #dbeafe;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.integration-cta-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.integration-cta-content p {
    color: #1d4ed8;
}

/* CTA Section */
.cta {
    padding: 5rem 0 8rem;
    background-color: #eff6ff;
}

.cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #1d4ed8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
}

.cta-stat-label {
    color: #1d4ed8;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: white;
    border-top: 1px solid #dbeafe;
    padding: 3rem 0 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-description {
    font-size: 0.875rem;
    color: #1d4ed8;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-links button {
    font-size: 0.875rem;
    color: #1d4ed8;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links button:hover {
    color: #1e3a8a;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dbeafe;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #2563eb;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 48rem;
    background-color: white;
    border: 1px solid #dbeafe;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background-color: #eff6ff;
    border-bottom: 1px solid #dbeafe;
}

.modal-title-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-title-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.modal-title-section p {
    font-size: 0.875rem;
    color: #1d4ed8;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    color: #2563eb;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #1d4ed8;
    background-color: #dbeafe;
}

.modal-close svg {
    width: 1.25rem;
    height: 1.25rem;
}

.modal-progress {
    padding: 1rem 1.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background-color: #dbeafe;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #2563eb;
    border-radius: 9999px;
    transition: width 0.5s ease;
    width: 33%;
}

.modal-body {
    padding: 1.5rem;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: #1d4ed8;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 500;
    color: #1e3a8a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #dbeafe;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    min-height: 6rem;
    resize: vertical;
}

.benefits-box {
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
}

.benefits-box h4 {
    font-weight: 500;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #1d4ed8;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: #2563eb;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
}

.success-content {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #2563eb;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.success-content p {
    color: #1d4ed8;
    margin-bottom: 1.5rem;
}

.email-confirmation {
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.email-confirmation p {
    font-size: 0.875rem;
    color: #1d4ed8;
    margin: 0;
}

.email-confirmation span {
    font-weight: 500;
    color: #1e3a8a;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .integration-cta-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}

@media (max-width: 640px){
    .logo-text-header{
        display: none;
    }
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .chart-container {
        /*height: 500px;*/
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 6rem;
    }
}