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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: black;
    background: white;
    overflow-x: hidden;
}

/* Main Container */
.main-container {
    width: 2166px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    background: white;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: inline-flex;
    margin: 0 auto;
}

/* Fixed Navigation */
.fixed-nav {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
    position: absolute;
    left: 908px;
    top: 26px;
    background: rgba(255, 255, 255, 0.40);
    overflow: hidden;
    border-radius: 100px;
    backdrop-filter: blur(15px);
    z-index: 1001;
}

.nav-content {
    justify-content: flex-start;
    align-items: center;
    gap: 27px;
    display: flex;
}

.nav-content a {
    text-align: center;
    color: black;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 19.60px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-content a:hover {
    opacity: 0.7;
}

/* Header */
.header {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: fixed;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
}

/* Notification Cards */
.notification-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    min-width: 240px;
    animation: fadeInUp 0.6s ease-out;
}

.card-1 {
    left: 45%;
    top: 25%;
    animation-delay: 0.2s;
}

.card-2 {
    left: 15%;
    bottom: 20%;
    animation-delay: 0.4s;
}

.card-3 {
    right: 12%;
    top: 30%;
    animation-delay: 0.6s;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-safety {
    background: #FFE5E5;
}

.top-performer {
    background: #E8F5E8;
}

.notification-badge {
    width: 40px;
    height: 40px;
    background: #E8E5FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #6D4FE7;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.notification-subtitle {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    margin-top: 2px;
}

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

/* Responsive Notification Cards */
@media (max-width: 1200px) {
    .card-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .card-1 {
        display: none;
    }
    
    .card-2 {
        left: 15%;
    }
}

.header-content {
    width: 100%;
    height: 148px;
    max-width: 1500px;
    padding-top: 32px;
    padding-bottom: 80px;
    padding-left: 76px;
    padding-right: 76px;
    justify-content: space-between;
    align-items: center;
    display: inline-flex;
    position: relative;
    z-index: 2;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
}

.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-svg {
    height: 48px;
    width: auto;
    display: block;
}

/* CTA Buttons */
.cta-button {
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
    gap: 2px;
    display: flex;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 19.60px;
    padding: 14px 22px;
}

.cta-button.waitlist {
    background: #6D4FE7;
    color: white;
}

.cta-button.primary {
    background: #485C11;
    color: white;
}

.cta-button.secondary {
    background: #DFECC6;
    color: black;
}

.cta-button.contact {
    background: #FFC27B;
    color: black;
}

.cta-button.login {
    background: rgba(255, 255, 255, 0.40);
    color: black;
    border: 2px solid #E9E9E9;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .cta-button.login {
        display: none;
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: black;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.desktop-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-waitlist {
    display: none;
    gap: 12px;
    align-items: center;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav {
    width: 375px;
    left: 0px;
    top: 0px;
    position: fixed;
    background: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav-header {
    align-self: stretch;
    padding-top: 20px;
    padding-bottom: 32px;
    padding-left: 20px;
    padding-right: 20px;
    background: white;
    justify-content: space-between;
    align-items: flex-start;
    display: inline-flex;
}

.mobile-nav-logo {
    width: 136px;
    height: 48px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-logo a:hover {
    opacity: 0.8;
}

.mobile-logo-svg {
    width: 136px;
    height: 48px;
    display: block;
}

.mobile-nav-close {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav-close span {
    width: 14px;
    height: 2px;
    background: black;
    position: absolute;
    transition: all 0.3s ease;
}

.mobile-nav-close span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-nav-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-nav-content {
    align-self: stretch;
    padding-top: 8px;
    padding-bottom: 32px;
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    display: flex;
}

.mobile-nav-links {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.mobile-nav-links a {
    align-self: stretch;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px #E9E9E9 solid;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    display: inline-flex;
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 19.60px;
}

.mobile-waitlist-btn {
    background: #6D4FE7;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

/* Responsive Design for Mobile Menu */
@media (max-width: 1200px) {
    .fixed-nav {
        display: none;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-waitlist {
        display: flex;
    }
}

@media (min-width: 1201px) {
    .mobile-waitlist {
        display: none;
    }
    
    .fixed-nav {
        display: block;
    }
    
    .desktop-nav {
        display: flex;
    }
}

/* Hero Section */
.hero {
    width: 100%;
    max-width: 1500px;
    padding-top: 180px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    display: flex;
}

.timeline-bubble {
    display: inline-block;
    padding: 14px 22px;
    background: white;
    border: 1px solid black;
    border-radius: 1000px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    /* font-weight: 700; */
    color: black;
    margin-bottom: 24px;
    text-align: center;
    line-height: 19.60px;
}

.hero-title {
    width: 100%;
    max-width: 950px;
    text-align: center;
    color: black;
    font-size: 90px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -2px;
    max-width: 700px;
    margin-bottom: 24px;
}

.hero-subtitle {
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: #6F6F6F;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 26px;
    word-wrap: break-word;
    margin: 0 auto 160px auto;
}

.hero-visualization {
    align-self: stretch;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #F8A5C2 0%, #D6CAFF 100%);
    border-radius: 16px;
    z-index: 1;
}

.hero-phones-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -40px;
    z-index: 2;
    height: 100%;
}

.hero-phone {
    height: 500px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
    margin: 0 -100px;
}

.phone-2 {
    height: 600px;
}

.phone-1 {
    z-index: 3;
}

.phone-2 {
    z-index: 4;
}

.phone-3 {
    z-index: 3;
}



/* Testimonial Section */
.testimonial {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Privacy Policy Page */
.privacy-policy {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    display: flex;
}

.privacy-policy-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.privacy-policy h1 {
    color: black;
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 40px;
}

.policy-content {
    color: #6F6F6F;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
}

.policy-content h2 {
    color: black;
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.policy-content h3 {
    color: black;
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0 10px 0;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}

/* Contact Button */
.contact-button:hover {
    background: #FFB85C !important;
    transform: translateY(-2px);
}

/* Trusted By Section */
.trusted-by {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-by-container {
    width: 100%;
    max-width: 1500px;
    padding-top: 56px;
    padding-bottom: 50px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    display: inline-flex;
}

.trusted-by-label {
    color: #6F6F6F;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 21px;
    word-wrap: break-word;
}

.trusted-by-logos {
    align-self: stretch;
    justify-content: center;
    align-items: center;
    gap: 56px;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: center;
}

.trusted-by-logo-item {
    height: 84px;
    padding: 20px;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: inline-flex;
}

.trusted-by-logo-item img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.trusted-by-logo-item:nth-child(1) img {
    max-width: 151px;
    max-height: 53px;
    opacity: 0.70;
    mix-blend-mode: luminosity;
}

.trusted-by-logo-item:nth-child(2) img {
    max-width: 134px;
    max-height: 34px;
    opacity: 0.60;
}

.trusted-by-logo-item:nth-child(3) img {
    max-width: 92px;
    max-height: 54px;
    opacity: 0.50;
}

.trusted-by-logo-item:nth-child(4) img {
    max-width: 117px;
    max-height: 49px;
    opacity: 0.60;
}

/* Market Overview Section */
.market-overview {
    width: 100%;
    max-width: 900px;
    padding-top: 90px;
    padding-bottom: 56px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    display: flex;
}

.market-title {
    align-self: stretch;
    text-align: center;
    color: black;
    font-size: 37px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 44.40px;
}

.market-description {
    align-self: stretch;
    opacity: 0.60;
    text-align: center;
    color: black;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 28px;
}

/* Statistics Section */
.statistics {
    width: 100%;
    max-width: 1200px;
    padding-top: 32px;
    padding-bottom: 32px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    display: inline-flex;
}

.stats-content {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    display: inline-flex;
}

.stat-card {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    gap: 30px;
}

.main-stat {
    flex: 1 1 0;
    align-self: stretch;
    border-radius: 10px;
    backdrop-filter: blur(10.90px);
    background-image: url(https://placehold.co/872x426);
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    display: inline-flex;
}

.main-stat-content {
    align-self: stretch;
    flex: 1 1 0;
    backdrop-filter: blur(2px);
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    gap: 30px;
}

.main-stat .stat-info {
    width: 100%;
    max-width: 550px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    display: flex;
    padding-top: 8px;
}

.main-stat .stat-info h3 {
    align-self: stretch;
    color: #282140;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 28.80px;
}

.main-stat .stat-info p {
    align-self: stretch;
    color: #282140;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
}

.main-stat .stat-value {
    text-align: left;
    color: #282140;
    font-size: 90px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 90px;
}

.stats-sidebar {
    width: 312px;
    flex-direction: column;
    gap: 16px;
    display: inline-flex;
}

.secondary-stat {
    height: 205px;
    background: #D6CAFF;
    border-radius: 6px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.secondary-stat .stat-info {
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.secondary-stat .stat-info h4 {
    color: #423D54;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 19.60px;
}

.secondary-stat .stat-info p {
    color: #423D54;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 19.60px;
}

.secondary-stat .stat-value {
    text-align: left;
    color: #282140;
    font-size: 57px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 64px;
}

.stat-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Challenge Section */
.challenge {
    width: 100%;
    max-width: 800px;
    padding-top: 80px;
    padding-bottom: 60px;
    border-top: 0.50px #E9E9E9 solid;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    display: flex;
}

.challenge-content {
    align-self: stretch;
    flex-direction: column;
    gap: 50px;
    display: flex;
}

.section-header {
    align-self: stretch;
    justify-content: space-between;
    align-items: flex-start;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.section-header-content {
    flex: 1 1 0;
    max-width: 660px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    display: inline-flex;
}

.section-tag {
    color: #485C11;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 16.80px;
}

.section-title {
    align-self: stretch;
    color: black;
    font-size: 37px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 44.40px;
}

.section-description {
    align-self: stretch;
    color: #6F6F6F;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 22.40px;
}

.absolute-cta {
    position: absolute;
    left: 1005px;
    top: 73px;
}

.challenges-grid {
    align-self: stretch;
    padding-top: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.challenge-card {
    flex: 1 1 0;
    min-width: 265px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 20px;
    border-top: 1px #E9E9E9 solid;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    display: inline-flex;
}

.challenge-card:last-child {
    padding-right: 40px;
}

.challenge-icon {
    width: 24px;
    height: 24px;
    position: relative;
    overflow: hidden;
}

.challenge-content-text {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    display: flex;
}

.challenge-content-text h3 {
    align-self: stretch;
    color: black;
    font-size: 29px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 34.80px;
}

.challenge-content-text p {
    align-self: stretch;
    color: #6F6F6F;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 22.40px;
}

/* Solution Section */
.solution {
    width: 100%;
    max-width: 1500px;
    padding-top: 40px;
    padding-bottom: 40px;
    justify-content: center;
    align-items: center;
    gap: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}

.solution-content {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
    display: inline-flex;
}

.solution-image {
    flex: 1 1 0;
    height: 968px;
    max-width: 1600px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    display: inline-flex;
}

.solution-image img {
    align-self: stretch;
    flex: 1 1 0;
    padding: 30px;
    border-radius: 10px;
    object-fit: cover;
}

.solution-text {
    flex: 1 1 0;
    min-width: 730px;
    padding-top: 60px;
    padding-bottom: 80px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    display: inline-flex;
}

.solution-header {
    align-self: stretch;
    padding-right: 80px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    display: flex;
}

.solution-header h2 {
    align-self: stretch;
    color: black;
    font-size: 46px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 55.20px;
}

.solution-header p {
    align-self: stretch;
    opacity: 0.60;
    color: black;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 22.40px;
}

.solution-features {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.solution-feature {
    align-self: stretch;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 80px;
    border-top: 1px #E9E9E9 solid;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    display: inline-flex;
}

.feature-number {
    color: #6F6F6F;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 21px;
}

.feature-content {
    flex: 1 1 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    display: inline-flex;
}

.feature-content h4 {
    align-self: stretch;
    color: black;
    font-size: 19px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 22.80px;
}

.feature-content p {
    align-self: stretch;
    opacity: 0.60;
    color: black;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 22.40px;
}

/* Connect Section */
.connect {
    width: 100%;
    max-width: 1500px;
    padding-left: 300px;
    padding-right: 300px;
    padding-top: 120px;
    padding-bottom: 120px;
    border-top: 0.50px #E9E9E9 solid;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    display: flex;
}

.connect-content {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    display: flex;
}

.connect .section-title {
    color: black;
    font-size: 37px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 44.40px;
}

.connect .section-description {
    opacity: 0.60;
    color: black;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 22.40px;
}

/* Footer */
.footer {
    width: 100%;
    max-width: 1500px;
    padding-top: 40px;
    padding-bottom: 20px;
    border-top: 1px #E9E9E9 solid;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 80px;
    display: flex;
}

.footer-content {
    align-self: stretch;
    height: 40px;
    justify-content: space-between;
    align-items: center;
    display: inline-flex;
}

.footer-nav {
    justify-content: flex-start;
    align-items: center;
    gap: 27px;
    display: flex;
}

.footer-nav a {
    text-align: center;
    color: black;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 19.60px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-privacy {
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.footer-privacy a {
    text-align: center;
    color: black;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 19.60px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-privacy a:hover {
    opacity: 0.7;
}

.footer-copyright {
    flex: 1 1 0;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    display: flex;
}

.footer-copyright span {
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: #485C11;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 16.80px;
}

.footer-rights {
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: #485C11;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 16.80px;
}

/* Video Background Styles */
.hero-video {
    position: absolute;
    top: 182px;
    left: -0.50px;
    width: 1501px;
    height: 362px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1;
}

.stats-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 1;
}

.solution-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.main-stat {
    position: relative;
    overflow: hidden;
}

.main-stat-content {
    position: relative;
    z-index: 2;
}

.solution-image {
    position: relative;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 2200px) {
    .main-container {
        width: 100%;
        max-width: 2166px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .fixed-nav {
        left: 50%;
        transform: translateX(-50%);
        position: fixed;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .hero-phone {
        height: 500px;
        margin: 0 -100px;
    }

    .phone-2 {
        height: 600px;
    }
    
    .hero-visualization {
        height: 350px;
    }
    
    /* Testimonial responsive - Large screens */
    .testimonial-video {
        height: 500px !important;
    }
    
    .testimonial-quote {
        font-size: 26px !important;
        line-height: 38px !important;
    }
}

/* Tablet Responsive */
@media (max-width: 800px) {
    .trusted-by-container {
        gap: 16px;
        padding: 48px 20px;
    }

    .trusted-by-logo-item {
        padding: 0px;
        height: auto;
    }

    .trusted-by-logos {
        gap: 0px;
    }

    .hero {
        padding-left: 40px;
        padding-right: 40px;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 56px;
        line-height: 64px;
    }
    
    .hero-phone {
        height: 200px;
        margin: 0 -10px;
    }
    
    .hero-visualization {
        height: 280px;
    }
    
    .phone-2 {
        transform: translateY(-5px) scale(1.05);
    }
    
    /* Testimonial responsive - Tablet */
    .testimonial {
        padding: 0 0;
    }
    
    .testimonial > div {
        width: 100% !important;
        max-width: 1000px !important;
        padding: 80px 30px !important;
        gap: 30px !important;
        flex-direction: column !important;
        align-items: left !important;
    }
    
    .testimonial-content {
        padding-left: 0 !important;
        gap: 30px !important;
        text-align: left;
        align-self: stretch !important;
    }
    
    .testimonial-video {
        height: 400px !important;
        width: 100% !important;
        max-width: 400px;
    }
    
    .testimonial-quote {
        font-size: 24px !important;
        line-height: 36px !important;
        text-align: left !important;
    }
    
    .testimonial-author {
        text-align: left !important;
        align-items: left !important;
    }
}

/* Mobile Responsive */
@media (max-width: 375px) {

    .hero {
        padding-top: 120px;
        padding-left: 0px;
        padding-right: 0px;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .hero-phone {
        height: 160px;
        margin: 0 -8px;
    }

    .phone-2 {
        height: 180px;
    }
    
    .hero-visualization {
        height: 220px;
    }
    
    .phone-1, .phone-3 {
        transform: translateY(15px);
    }
    
    .phone-2 {
        transform: translateY(-5px) scale(1.02);
    }
    
    /* Testimonial responsive - Mobile */
    .testimonial {
        padding: 0 20px;
    }
    
    .testimonial > div {
        width: 100% !important;
        max-width: 100% !important;
        padding: 60px 20px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 30px !important;
    }
    
    .testimonial-content {
        padding-left: 0 !important;
        gap: 25px !important;
        text-align: left;
        align-self: stretch !important;
    }
    
    .testimonial-video {
        height: 200px !important;
        width: 100% !important;
        max-width: 100%;
        object-fit: cover !important;
        align-self: stretch !important;
    }
    
    .testimonial-quote {
        font-size: 18px !important;
        line-height: 26px !important;
        text-align: left !important;
    }
    
    .testimonial-author {
        text-align: left !important;
        align-items: flex-start !important;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(109, 79, 231, 0.15);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.modal-content {
    display: flex;
    height: 600px;
}

.modal-video {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.modal-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-form {
    flex: 1;
    padding: 60px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: white;
}

.modal-header h2 {
    color: black;
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 12px;
}

.modal-header p {
    color: #6F6F6F;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 22px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    color: black;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 20px;
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #6D4FE7;
    box-shadow: 0 0 0 3px rgba(109, 79, 231, 0.1);
}

.form-group input.error {
    border-color: #FF4757;
}

.error-message {
    color: #FF4757;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 16px;
    display: none;
}

.error-message.show {
    display: block;
}

.modal-submit-btn {
    padding: 16px 24px;
    background: #6D4FE7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal-submit-btn:hover {
    background: #5A3FD8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 79, 231, 0.3);
}

.modal-submit-btn:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.success-message {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-icon {
    margin-bottom: 8px;
}

.success-message h3 {
    color: black;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 12px;
}

.success-message p {
    color: black;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 22px;
}

/* Solution Section Responsive */
@media (max-width: 768px) {
    .solution {
        padding: 0 20px;
    }
    
    .solution > div {
        padding: 60px 20px 40px 20px !important;
    }
    
    .solution > div > div:last-child {
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .solution > div > div:last-child > div {
        min-width: unset !important;
        margin-bottom: 40px;
        padding-right: 0 !important;
    }
    
    .solution > div > div:last-child > div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .solution > div {
        padding: 40px 10px 30px 10px !important;
    }
    
    .solution h2, .solution .section-title {
        font-size: 28px !important;
        line-height: 34px !important;
    }
    
    .solution .challenge-content-text h3 {
        font-size: 24px !important;
        line-height: 28px !important;
    }
}

/* Statistics Section Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 10px;
        background: white;
        margin: 0;
        height: fit-content;
        margin-left: -40px;
    }
    .statistics {
        padding: 20px;
        padding-bottom: 80px;
    }
    
    /* Make horizontal layout vertical */
    .stats-content {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    /* Make vertical layout horizontal */
    .stats-sidebar {
        flex-direction: row !important;
        width: 100% !important;
        gap: 20px !important;
    }
    
    .secondary-stat {
        flex: 1 1 0;
        height: auto !important;
        min-height: 150px;
    }
    
    .main-stat {
        align-self: stretch !important;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .statistics {
        padding: 15px;
        padding-bottom: 60px;
    }
    
    .stats-sidebar {
        gap: 15px !important;
    }
    
    .secondary-stat {
        padding: 20px !important;
        min-height: 130px;
    }
    
    .secondary-stat .stat-value {
        font-size: 40px !important;
        line-height: 45px !important;
    }
    
    .main-stat .stat-value {
        font-size: 60px !important;
        line-height: 65px !important;
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-width: none;
        margin: 20px;
    }
    
    .modal-content {
        flex-direction: column;
        height: auto;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .modal-video {
        height: 250px;
        flex: none;
    }
    
    .modal-form {
        padding: 30px 20px;
        gap: 20px;
    }
    
    .modal-header h2 {
        font-size: 28px;
        line-height: 34px;
    }
}