/* ==================== BASE STYLES ==================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

/* Enhanced Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

/* Improved Spacing */
.section-content {
    margin-bottom: 3rem;
}

.section-content p {
    margin-bottom: 2rem;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* Critical CSS for above-the-fold content */
.hero {
    contain: layout style paint;
}

html {
    scroll-behavior: smooth;
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #444;
    line-height: 1.6;
}

/* ==================== COLOR VARIABLES ==================== */
:root {
    --primary-orange: #F15A29;
    --primary-orange-hover: #e14f21;
    --secondary-teal: #013A36;
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #777;
    --background-light: #f8f9fa;
}

/* ==================== LAYOUT COMPONENTS ==================== */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid #E5E5E5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 101;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link:hover {
    color: #666;
    background: rgba(0, 0, 0, 0.02);
}

.mobile-login-link {
    display: block;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 1rem 2rem;
    margin: 1rem 2rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    background: transparent;
}

.mobile-login-link:hover {
    color: #999;
    background: #f5f5f5;
    border-color: #b0b0b0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    z-index: 100;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 12rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-form {
    display: none;
}

/* Hide form in hero-content on mobile, show in hero-form */
@media (max-width: 768px) {
    .hero-content form {
        display: none;
    }
}

.hero-content {
    position: relative;
}

/* TrustPilot Badge */
.trust-badge {
    margin-bottom: 2rem;
    text-align: center;
}

.trust-stars {
    font-size: 1.2rem;
    color: #FFD634;
    margin-bottom: 0.25rem;
    display: block;
}

.trust-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Urgency Badge */
.urgency-badge {
    margin: 1.5rem 0;
    text-align: center;
}

.urgency-text {
    background: linear-gradient(135deg, #FFD634, #FFA500);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: fit-content;
}

.badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1rem;
    color: #FFD634;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.hero-image {
    position: relative;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    background: #F8F9FA;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ==================== COMPONENT STYLES ==================== */

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

.logo-icon {
    width: 200px;
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.logo-subtext {
    font-size: 0.8rem;
    color: #777;
    margin-top: -0.2rem;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;

}

.nav-link:hover {
    color: #b3b3b3;

}

.nav-link:hover::after {
    display: none;
}

.nav-link.active {
    color: #FFD634;
    background: rgba(255, 214, 52, 0.15);
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.globe-icon {
    width: 20px;
    height: 20px;
    color: #666;
    cursor: pointer;
}

.login-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: transparent;
}

.login-link:hover {
    color: #999;

}

.cta-button {
    background: #FFD634;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button:hover {
    background: #000;
    color: #FFD634;
}

/* Hero Content */
.hero h1 {
    font-size: 72px;
    font-weight: 900;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.0;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero p {
    font-size: 22px;
    color: #444;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero .hero-lead {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero .hero-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: #FFD634;
    color: #000;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.hero-cta:hover {
    background: #000;
    color: #FFD634;
}

/* Hero Form */
#hero-contact-form .group {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

#hero-contact-form .relative {
    position: relative;
}

#hero-contact-form input:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-email-input {
    width: 100%;
    padding: 24px 140px 24px 28px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    font-size: 16px;
    color: #111111;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 64px;
}

.hero-email-input:focus {
    background-color: white;
    box-shadow: 0 0 0 2px rgba(255, 214, 52, 0.2);
    transform: translateY(-1px);
}

.hero-email-input::placeholder {
    color: #9ca3af;
}

.hero-submit-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    padding: 16px 32px;
    background-color: #FFD634;
    color: #000;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.hero-submit-btn:hover {
    background-color: #000;
    color: #FFD634;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-success-message {
    display: none;
    margin-top: 16px;
    font-size: 14px;
    color: #059669;
    font-weight: 500;
    align-items: center;
    gap: 8px;
}

.hero-success-message.show {
    display: flex;
    animation: slideInUp 0.5s ease-out;
}


.hero-success-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Hero Image */
.image-container {
    background: linear-gradient(135deg, #FFD634, #FFA500);
    border-radius: 40px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 214, 52, 0.3);
}

.hero-img {
    width: 100%;
    height: 500px;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.connector-line {
    position: absolute;
    top: 50%;
    left: -2rem;
    width: 4rem;
    height: 2px;
    background: #FFD634;
    border-radius: 1px;
}

.connector-line::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: -0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    background: #FFD634;
    border-radius: 50%;
}

/* Feature Cards */
.feature-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #F0F0F0;
}

.card-1 { border-left: 4px solid #E7E2FB; }
.card-2 { border-left: 4px solid #FEE5D9; }
.card-3 { border-left: 4px solid #FDD9E1; }
.card-4 { border-left: 4px solid #D9F1EE; }

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.feature-card .subtitle {
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.feature-link {
    color: #FFD634;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.feature-link:hover {
    text-decoration: underline;
}

/* Feature Icons */
.feature-icon {
    width: 48px;
    height: 48px;
    background: #FFD634;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
}

/* Typography */
.features h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features p {
    font-size: 18px;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button-large {
    background: #FFD634;
    color: #000;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 214, 52, 0.3);
}

.cta-button-large:hover {
    background: #000;
    color: #FFD634;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 214, 52, 0.4);
}

/* Footer */
.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFD634;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FFD634;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* ==================== NEW COMPONENTS ==================== */

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.trust-stars {
    color: #00B67A;
    font-size: 18px;
}

.trust-text {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.button-primary {
    background-color: #FFD634;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
}

.button-primary:hover::before {
    left: 100%;
}

.button-primary:hover {
    background-color: #000;
    color: #FFD634;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 214, 52, 0.2);
}

.button-secondary {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: left 0.3s ease;
    z-index: -1;
}

.button-secondary:hover::before {
    left: 0;
}

.button-secondary:hover {
    color: #FFD634;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.check-icon {
    color: #FFD634;
    font-weight: bold;
    font-size: 16px;
}

.feature-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Hero Banner Section */
.hero-banner {
    width: 100%;
    margin: 6rem 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-banner-content {
    width: 100%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    border-radius: 32px;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 32px;
    overflow: hidden;
}

.hero-banner-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

.hero-banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-banner-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Third Hero Banner */
.hero-banner-third {
    margin: 4rem 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    min-height: 700px;
    object-fit: contain;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-banner-img:hover {
    transform: scale(1.02);
}

/* Desktop specific styling */
@media (min-width: 769px) {
    .hero-banner-img {
        height: 700px;
        object-fit: cover;
    }
}

/* AI Platform Section */
.ai-platform-section {
    padding: 6rem 0;
    background: #ffffff;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD634, #F15A29);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFD634;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Smart Services Section */
.smart-services-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-item:hover {
    transform: translateY(-2px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Market Intelligence Section */
.market-intelligence-section {
    padding: 6rem 0;
    background: #ffffff;
}

.intelligence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intelligence-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.intelligence-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.intelligence-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.data-visualization {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.chart-placeholder {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 200px;
    margin-bottom: 1rem;
}

.chart-bar {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e14f21 100%);
    width: 15%;
    border-radius: 4px 4px 0 0;
    transition: transform 0.3s ease;
}

.chart-bar:hover {
    transform: scale(1.05);
}

.chart-bar:nth-child(1) {
    height: 60%;
}

.chart-bar:nth-child(2) {
    height: 80%;
}

.chart-bar:nth-child(3) {
    height: 45%;
}

.chart-bar:nth-child(4) {
    height: 90%;
}

.chart-bar:nth-child(5) {
    height: 70%;
}

.chart-label {
    text-align: center;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-teal) 0%, #013A36 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #5a9b7a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.button-primary.large,
.button-secondary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.button-secondary.large {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.button-secondary.large:hover {

    border: 2px solid #000000;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #5a9b7a;
    margin-bottom: 0.5rem;
}

.trust-text {
    font-size: 0.9rem;
    color: #5a9b7a;
}

/* About Us Section */
.about-section {
    padding: 6rem 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-description p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-description-text {
    color: #666666;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.cofounders-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.cofounders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    justify-items: center;
    align-items: start;
}

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

.cofounder-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.cofounder-avatar:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cofounder-item:hover .avatar-img {
    transform: scale(1.02);
}

.cofounder-info {
    text-align: center;
}

.cofounder-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 0.5rem;
}

.cofounder-info p {
    font-size: 1rem;
    color: #888888;
    margin: 0;
    font-weight: 500;
}

.cofounder-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 0.5rem;
}

.cofounder-name {
    font-size: 1rem;
    color: #888888;
    margin: 0;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--secondary-teal);
    color: #ffffff;
    padding: 4rem 0 2rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo img {
    height: 8rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    filter: brightness(0.8);
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #397b63;
}

.footer-description {
    color: #397b63;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #397b63;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #397b63;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal p {
    color: #397b63;
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #397b63;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Ex-lease Section */
.ex-lease-section {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.section-content {
    text-align: center;
    margin-bottom: 3rem;
}

.section-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-content p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.car-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.car-card:hover {
    transform: translateY(-4px);
}

.car-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bid-ribbon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #FFD634;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.car-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1rem 1rem 0.5rem;
}

.car-details {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0 1rem 1rem;
}

/* ==================== ANIMATIONS ==================== */

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

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .login-link {
        display: none;
    }
    
    .logo-icon {
        width: 120px;
        height: 60px;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 8rem 1rem 4rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-form {
        display: block;
        order: 3;
    }
    
    .hero h1 {
        font-size: 48px;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .hero .hero-lead {
        font-size: 20px;
        margin-bottom: 0.75rem;
    }
    
    .hero .hero-subtitle {
        font-size: 16px;
        margin-bottom: 2rem;
    }
    
    /* Mobile Hero Components */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-divider {
        display: none;
    }
    
    /* Mobile Ex-lease Section */
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-content h2 {
        font-size: 28px;
    }
    
    .section-content p {
        font-size: 16px;
    }
    
    /* Mobile Hero Banner */
    .hero-banner {
        margin: 4rem 0;
        padding: 2rem 0;
    }
    
    .hero-banner-content {
        padding: 0px 0px;
    }
    
    .hero-banner-img {
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
    }
    
    .hero-banner-title {
        font-size: 2.5rem;
    }
    
    .hero-banner-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-banner-text {
        padding: 1.5rem;
    }
    
    /* Mobile AI Platform */
    .platform-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Mobile Smart Services */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    /* Mobile Market Intelligence */
    .intelligence-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intelligence-text h2 {
        font-size: 2rem;
    }
    
    .intelligence-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .data-visualization {
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .chart-placeholder {
        height: 150px;
    }
    
    /* Mobile Final CTA */
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        gap: 2rem;
    }
    
    /* Mobile About Us */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.25rem;
    }
    
    .cofounders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cofounder-avatar {
        width: 100px;
        height: 100px;
    }
    
    /* Mobile Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 16px;
    }
    
    /* Mobile Hero Form */
    #hero-contact-form input {
        padding: 20px 120px 20px 24px;
        font-size: 16px;
        border-radius: 18px;
        height: 60px;
    }
    
    .hero-submit-btn {
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 14px;
        min-width: 100px;
    }
    
    #hero-contact-form button {
        min-height: 48px;
        min-width: 100px;
    }
    
    #hero-contact-form .group {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .image-container {
        padding: 1.5rem;
        border-radius: 24px;
    }
    
    .hero-img {
        height: 300px;
        border-radius: 20px;
    }
    
    .connector-line {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 100px;
        height: 50px;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .features h2 {
        font-size: 28px;
    }
    
    .features p {
        font-size: 16px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    /* Mobile Trust Badge */
    .trust-badge {
        margin-bottom: 1.5rem;
    }
    
    .trust-stars {
        font-size: 1rem;
    }
    
    .trust-text {
        font-size: 0.8rem;
    }
    
    /* Mobile Trust Badges */
    .trust-badges {
        gap: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .badge-item {
        flex: 1;
        min-width: 140px;
        max-width: 180px;
        justify-content: center;
        padding: 0.4rem 0.8rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
        text-align: center;
    }
    
    /* Mobile Urgency Badge */
    .urgency-text {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* ==================== EXIT INTENT POPUP ==================== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.exit-popup.show {
    display: flex;
}

.popup-content {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 214, 52, 0.2);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: 1.4rem;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.popup-close:hover {
    color: #374151;
    background: #f9fafb;
    border-color: #d1d5db;
}

.popup-header h3 {
    color: #111827;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.popup-header p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.popup-form input {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-weight: 400;
    color: #111827;
}

.popup-form input:focus {
    outline: none;
    border-color: #FFD634;
    box-shadow: 0 0 0 3px rgba(255, 214, 52, 0.1);
}

.popup-form input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.popup-cta {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.25);
    letter-spacing: 0.01em;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 41, 55, 0.35);
    background: linear-gradient(135deg, #111827, #1f2937);
}

.popup-benefits {
    margin: 1.5rem 0;
    text-align: left;
    background: linear-gradient(135deg, rgba(255, 214, 52, 0.08), rgba(255, 165, 0, 0.08));
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 214, 52, 0.2);
}

.benefit-item {
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

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

.popup-disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
    font-style: italic;
}

/* Mobile Popup */
@media (max-width: 768px) {
    .popup-content {
        margin: 1rem;
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .popup-header h3 {
        font-size: 1.5rem;
    }
    
    .popup-header p {
        font-size: 0.9rem;
    }
    
    .popup-form input {
        padding: 0.875rem 1rem;
    }
    
    .popup-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
}
