﻿
/* Shared Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    line-height: 1.6;
    background-color: #f8fafc;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
  /* Header */
        header {
            background-color: #0f172a;
            color: white;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .logo img {
            max-height: 42px;
            width: auto;
            display: block;
            border-radius: 4px;
        }

  
.badge {
    background: #e0e7ff;
    color: #3730a3;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-block;
    letter-spacing: 1px;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-header h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .logo img {
        max-height: 42px;
        width: auto;
        display: block;
        border-radius: 4px;
    }

.nav-links {
    display: flex;
    align-items: center;
}

    .nav-links a:not(.btn-primary) {
        color: #cbd5e1;
        text-decoration: none;
        margin-left: 35px;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:not(.btn-primary):hover {
            color: #ffffff;
        }

.btn-primary {
    background-color: #dc2626;
    color: white !important;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 40px;
    border: 1px solid transparent;
}

    .btn-primary:hover {
        background-color: #b91c1c;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
    }

.hero {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0 0;
    text-align: center;
    position: relative;
}

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.2rem);
        color: #0f172a;
        margin-bottom: 24px;
        font-weight: 800;
        letter-spacing: -1.5px;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 40px;
        color: #475569;
    }

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 70px;
}

.btn-secondary {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .btn-secondary:hover {
        color: #2563eb;
        background-color: rgba(37, 99, 235, 0.05);
    }

.arrow {
    transition: transform 0.2s ease;
    margin-left: 8px;
}

.btn-secondary:hover .arrow {
    transform: translateX(5px);
}

@keyframes slideAnimation {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.dashboard-mockup {
    max-width: 900px;
    height: 450px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(1px);
}

.mockup-header {
    height: 24px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .mockup-dot:nth-child(1) {
        background: #ff5f56;
    }

    .mockup-dot:nth-child(2) {
        background: #ffbd2e;
    }

    .mockup-dot:nth-child(3) {
        background: #27c93f;
    }

.mockup-body {
    flex: 1;
    position: relative;
    background: #ffffff;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #ffffff;
    animation: slideAnimation 16s infinite;
}

    .carousel-slide img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: center top;
        padding-top: 15px;
    }

    .carousel-slide:nth-child(1) {
        animation-delay: 0s;
    }

    .carousel-slide:nth-child(2) {
        animation-delay: 4s;
    }

    .carousel-slide:nth-child(3) {
        animation-delay: 8s;
    }

    .carousel-slide:nth-child(4) {
        animation-delay: 12s;
    }

/* Social Proof / Authority Section */
.authority-proof {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 5;
}

.authority-header {
    margin-bottom: 40px;
}

    .authority-header h2 {
        font-size: 2.2rem;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }

.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.brand-text {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-divider {
    color: #cbd5e1;
    font-size: 1.5rem;
    font-weight: 300;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-block {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00B4D8;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

/* Pillars Section */
.pillars-section {
    padding: 100px 0;
    background-color: #f1f5f9;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
}

    .pillar-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        border-color: #00B4D8;
    }

.icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #2563eb;
}

    .icon-box.red {
        background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
        color: #dc2626;
    }

    .icon-box.cyan {
        background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
        color: #0891b2;
    }

.pillar-card h3 {
    color: #0f172a;
    font-size: 1.35rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.pillar-card p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    flex-grow: 1;
}

.bottom-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

    .bottom-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 24px;
        font-weight: 700;
    }

    .bottom-cta p {
        font-size: 1.2rem;
        color: #cbd5e1;
        margin-bottom: 40px;
    }

@media (max-width: 768px) {
    .hero {
        padding: 70px 0 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        display: none;
    }

    .brands {
        flex-direction: column;
        gap: 15px;
        padding: 30px 20px;
    }

    .brand-divider {
        display: none;
    }

    .dashboard-mockup {
        height: 280px;
    }

    .pillars-section {
        padding: 60px 0;
    }
}

.eapp-close42 {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*  float: right !important;*/
    /*  margin-inline-start: auto;*/
    float: none;
    /* margin-inline-start: auto;*/
    height: 42px;
    width: 42px;
    line-height: 42px;
    border: 0px;
    background-color: #61b1ff;
    font-size: 22px;
    color: white;
}

    .eapp-close42:hover,
    .eapp-close42:active {
        background-color: rgb(255, 106, 0) !important;
    }