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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Animated Stars Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 15s linear infinite;
    pointer-events: none;
    z-index: 1;
    overflow-x: hidden;
}

@keyframes sparkle {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
    z-index: 1000;
    padding: 1rem 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.nav-logo h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
}

.snap-red {
    color: #ff0000 !important;
    font-weight: 700;
    -webkit-text-fill-color: #ff0000 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.fit-white {
    color: #ffffff;
    font-weight: 900;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #000000 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.nav-cta::after {
    display: none;
}

.nav-cta[href="usar.html"] {
    display: none;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    position: relative;
    z-index: 2;
}

/* Floating Particles */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 80% 80%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 40% 40%, rgba(255, 255, 255, 0.4), transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
    overflow-x: hidden;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 25%, #cccccc 50%, #b3b3b3 75%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { 
        background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 25%, #cccccc 50%, #b3b3b3 75%, #999999 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: brightness(1);
    }
    50% { 
        background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 25%, #ffffff 50%, #f0f0f0 75%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: brightness(1.5);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Hero Products and Services Buttons */
.hero-products-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-product-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #111111;
    border: 2px solid #333333;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-product-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hero-product-btn:hover {
    transform: translateY(-3px);
    border-color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.hero-product-btn span {
    white-space: nowrap;
}

/* Hero Statistics */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 25%, #cccccc 50%, #b3b3b3 75%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.5);
    }
}

.stat-number::after {
    content: '   %';
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-number.no-percentage::after {
    content: '';
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animate {
    animation: countUp 0.8s ease-out forwards;
}

/* Visual Demo Section */
.visual-demo {
    padding: 60px 0;
    background: #000000;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    position: relative;
    z-index: 2;
}

.visual-demo-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.demo-panel {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.demo-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.left-panel, .right-panel {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.demo-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.demo-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
}

.arrow-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    max-width: 120px;
}

.center-arrow {
    width: 100px;
    height: 50px;
    color: #cccccc;
    transition: all 0.3s ease;
}

.center-arrow:hover {
    color: #ffffff;
    transform: scale(1.1);
}



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

.cta-box {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 25%, #cccccc 50%, #b3b3b3 75%, #999999 100%);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Product Showcase Sections */
.product-showcase {
    padding: 50px 0;
    background: #111111;
    border-top: 1px solid #222222;
}

.product-showcase:first-of-type {
    border-top: none;
}

.product-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.product-image-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Left image: image on left, text on right */
.product-showcase.product-left-image .product-image-side {
    order: 1 !important;
}

.product-showcase.product-left-image .product-text-side {
    order: 2 !important;
}

/* Right image: text on left, image on right */
.product-showcase.product-right-image .product-text-side {
    order: 1 !important;
}

.product-showcase.product-right-image .product-image-side {
    order: 2 !important;
}

.products-section-header {
    padding: 120px 0 20px 0;
    background: #111111;
}

.products-section-header .section-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000 !important;
    margin-bottom: 0;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ff0000 !important;
    background-clip: unset !important;
    animation: none !important;
}

.product-header {
    text-align: left;
    margin-bottom: 1rem;
    max-width: 100%;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-underline-offset: 0.3em;
}

.product-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
}

.product-visual-comparison {
    margin-bottom: 4rem;
}

.product-process-image {
    text-align: center;
    margin-bottom: 0;
    width: 100%;
}

.process-img {
    max-width: 70%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .process-img {
        max-width: 90%;
    }
}

.product-cta {
    text-align: left;
    margin-top: 0.5rem;
}

.product-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 25%, #cccccc 50%, #b3b3b3 75%, #999999 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .products-section-header {
        padding: 60px 0 15px 0;
    }
    
    .products-section-header .section-title {
        font-size: 2rem;
    }
    
    .product-showcase {
        padding: 30px 0;
    }
    
    .product-content-wrapper {
        flex-direction: column !important;
        gap: 1.5rem;
        display: flex !important;
    }
    
    /* Mobile order: Title -> Image -> Description -> Button */
    /* First, extract title from product-header and make it first */
    .product-text-side {
        order: 1 !important;
        display: contents !important;
    }
    
    .product-header {
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .product-title {
        order: 1 !important;
        margin-bottom: 1rem !important;
    }
    
    .product-image-side {
        order: 2 !important;
    }
    
    .product-description {
        order: 3 !important;
        margin-bottom: 1rem !important;
    }
    
    .product-cta {
        order: 4 !important;
        margin-top: 0 !important;
    }
    
    /* Override desktop alternation classes on mobile */
    .product-showcase.product-left-image .product-image-side,
    .product-showcase.product-right-image .product-image-side {
        order: 2 !important;
    }
    
    .product-showcase.product-left-image .product-text-side,
    .product-showcase.product-right-image .product-text-side {
        order: 1 !important;
        display: contents !important;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .product-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-box:hover::before {
    left: 100%;
}

.cta-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
}

.demo-cta h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #000000;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #000000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #111111;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

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

.demo-text {
    text-align: left;
}

.demo-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.demo-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.demo-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.demo-button.primary {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #000000;
}

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

.demo-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.demo-button.secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.contact-section {
    padding: 60px 0 !important;
}

.contact-info {
    background: #222222;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0;
    animation: fadeIn 0.3s ease-in;
}

.contact-item {
    color: #cccccc;
    margin-bottom: 0;
    font-size: 1rem;
}

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

.contact-item strong {
    color: #999999;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.demo-video {
    position: relative;
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: 12px;
    border: 1px solid #333333;
    overflow: hidden;
}

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


/* How it works Section */
.how-it-works {
    padding: 100px 0;
    background: #000000;
}

.how-it-works-visual {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

.how-it-works-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid #333333;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.how-it-works-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works-visual {
        margin-bottom: 2rem;
    }
    
    .how-it-works-image {
        border-radius: 12px;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 25%, #cccccc 50%, #b3b3b3 75%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: glow 4s ease-in-out infinite;
}

.pricing-note {
    font-size: inherit;
    font-weight: inherit;
    background: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
    opacity: 0.8;
}

@keyframes glow {
    0%, 100% { 
        filter: brightness(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% { 
        filter: brightness(1.5);
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

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

.step-item {
    text-align: center;
    padding: 1.5rem;
    background: #111111;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-item:hover::before {
    transform: scaleX(1);
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: #555555;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-item p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Lead Generation Section */
.lead-generation {
    padding: 100px 0;
    background: #111111;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

@media (max-width: 480px) {
    .lead-generation {
        padding: 60px 0;
    }
}

.lead-description {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lead-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.lead-text {
    text-align: left;
}

.lead-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.lead-paragraph {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
}

.lead-cta-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lead-items-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem 4rem;
    align-items: stretch;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #000000;
    border: 1px solid #333333;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-item:hover {
    transform: translateX(5px);
    border-color: #555555;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    color: #ffffff;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.stat-box {
    background: #000000;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #555555;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.stat-box.highlight {
    border-color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.stat-box-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-box.highlight .stat-box-number {
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 25%, #cccccc 50%, #b3b3b3 75%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box-label {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: #000000;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.product-card-modern {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.product-card-modern:hover {
    transform: translateY(-5px);
    border-color: #555555;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.product-card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-shrink: 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card-modern:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-underline-offset: 0.3em;
}

.product-card-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-card-btn {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
}

.product-card-btn::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 0.3s ease;
}

.product-card-btn:hover::after {
    width: 100%;
}

.product-card-btn:hover {
    color: #cccccc;
    transform: translateX(5px);
}

@media (max-width: 480px) {
    .products-section {
        padding: 60px 0;
    }
}

.products-description {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.product-card {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

.product-card:hover {
    transform: translateY(-5px);
    border-color: #555555;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.product-card.featured {
    border-color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.product-card.featured::before {
    background: linear-gradient(90deg, #ffffff, #ff0000);
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-icon {
    width: 3.5rem;
    height: 3.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.product-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
    font-size: 0.95rem;
}

.product-feature-item .check {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #111111;
}

@media (max-width: 480px) {
    .features {
        padding: 60px 0;
    }
}

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

.feature-card {
    background: #000000;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #555555;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    display: block;
    color: #ffffff;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    flex: 1;
}

.feature-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Where we are Section */
.where-we-are {
    padding: 100px 0;
    background: #000000;
}

@media (max-width: 480px) {
    .where-we-are {
        padding: 60px 0;
    }
}

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

.platform-card {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.platform-card:hover {
    transform: translateY(-5px);
    border-color: #555555;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.platform-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #ffffff;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
}

.platform-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.platform-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status.available {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #000000;
}

.status.coming-soon {
    background: #333333;
    color: #cccccc;
    border: 1px solid #555555;
}

.status.in-progress {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #000000;
    border: 1px solid #ffa500;
}

/* Integration Options */
.integration-options {
    margin: 1.5rem 0;
    text-align: left;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
}

.integration-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.integration-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.check {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.integration-item span:last-child {
    color: #cccccc;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Impact Calculator Section */
.impact-calculator {
    padding: 100px 0;
    background: #000000;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.calculator-description {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calculator-form {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.calculator-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.calculator-form:hover::before {
    transform: scaleX(1);
}

.calculator-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #cccccc;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: #000000;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: #666666;
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #000000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.calculator-results {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.calculator-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.calculator-results:hover::before {
    transform: scaleX(1);
}

.calculator-results h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

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

.result-card {
    background: #000000;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.result-card:hover {
    transform: translateY(-2px);
    border-color: #555555;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.result-card.highlight {
    border-color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.result-card.highlight::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.result-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    word-break: keep-all;
    white-space: nowrap;
}

.percentage-inline {
    font-size: 0.9em;
    opacity: 0.9;
    color: #cccccc !important;
    -webkit-text-fill-color: #cccccc !important;
}

.result-card.highlight .result-value {
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 25%, #cccccc 50%, #b3b3b3 75%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
}

.calculator-cta p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}


/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #333333;
    padding: 3rem 0 1rem;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #999999;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    min-width: 0;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 1;
}

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

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

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Remove all animations on mobile */
    body::before {
        display: none;
    }
    
    .hero::after {
        display: none;
    }
    
    .navbar {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .nav-container {
        overflow-x: hidden;
        position: relative;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
        gap: 0.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .nav-menu {
        gap: 0.5rem;
        flex-shrink: 1;
        justify-content: flex-end;
        position: relative;
        transform: none !important;
        transition: none !important;
        min-width: 0;
        max-width: 100%;
    }
    
    .nav-link {
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 1;
        position: relative;
        transform: none !important;
        transition: none !important;
        padding: 0.25rem 0;
    }
    
    .nav-cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 1;
        position: relative;
        transform: none !important;
        transition: none !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-products-services {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-product-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-product-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-stats {
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-number::after {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-number.no-percentage::after {
        content: '';
    }
    
    .brands-slider {
        gap: 1.5rem;
    }
    
    .brand-logo {
        min-width: 100px;
        padding: 0.75rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card-modern {
        margin-bottom: 0;
    }
    
    .product-card-image {
        min-height: 200px;
        padding: 0.75rem;
    }
    
    .product-card-content {
        padding: 1.5rem;
    }
    
    .product-card-title {
        font-size: 1.3rem;
    }
    
    .product-card-description {
        font-size: 0.95rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.95rem;
    }
    
    .lead-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lead-cta-top {
        justify-content: center;
    }
    
    .lead-items-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lead-subtitle {
        font-size: 1.5rem;
    }
    
    .lead-paragraph {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-box-number {
        font-size: 2rem;
    }
    
    .stat-box-label {
        font-size: 0.9rem;
    }
    
    
    .integration-options {
        margin: 1rem 0;
    }
    
    .integration-item {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0.4rem 0;
    }
    
    .integration-item span:last-child {
        font-size: 0.9rem;
    }
    
    .feature-icon,
    .platform-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Contact section responsive for 768px */
    .contact-section {
        padding: 50px 0 !important;
    }
    
    .contact-info {
        padding: 0.75rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .contact-item strong {
        font-size: 0.85rem;
    }
    
    .demo-buttons {
        gap: 0.75rem !important;
    }
    
    .demo-button {
        padding: 0.85rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    .footer {
        padding: 2rem 0 1rem;
        overflow-x: hidden;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
        padding: 0;
    }
    
    .footer-logo h3 {
        font-size: 1.2rem;
    }
    
    .footer-logo p {
        font-size: 0.85rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
        white-space: normal;
        word-break: break-word;
        text-align: center;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        padding: 0 10px;
    }
}

/* Extra small screens - single column */
@media (max-width: 360px) {
    /* Remove all animations on very small mobile */
    body::before {
        display: none;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-stats,
    .steps-grid,
    .features-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    
    .container {
        padding: 0 10px;
    }
    
    /* Remove all animations on very small mobile */
    body::before {
        display: none;
    }
    
    .hero::after {
        display: none;
    }
    
    .nav-container {
        overflow-x: hidden;
        padding: 0 8px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        gap: 0.25rem;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .nav-menu {
        gap: 0.4rem;
        transform: none !important;
        transition: none !important;
        min-width: 0;
        max-width: 100%;
        flex-shrink: 1;
    }
    
    .nav-link {
        font-size: 0.75rem;
        transform: none !important;
        transition: none !important;
        padding: 0.1rem 0;
        flex-shrink: 1;
    }
    
    .nav-cta {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
        transform: none !important;
        transition: none !important;
        flex-shrink: 1;
    }
    
    /* Footer responsive for 360px */
    .footer {
        padding: 1.5rem 0 1rem;
        overflow-x: hidden;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
        padding: 0;
    }
    
    .footer-logo h3 {
        font-size: 1rem;
    }
    
    .footer-logo p {
        font-size: 0.75rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }
    
    .footer-links a {
        font-size: 0.75rem;
        padding: 0.2rem 0;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        line-height: 1.4;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
        padding: 0 8px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    /* Remove all animations on small mobile */
    body::before {
        display: none;
    }
    
    .hero::after {
        display: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        overflow-x: hidden;
        padding: 0 10px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        gap: 0.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .nav-menu {
        gap: 0.5rem;
        transform: none !important;
        transition: none !important;
        min-width: 0;
        max-width: 100%;
        flex-shrink: 1;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.2rem 0;
        transform: none !important;
        transition: none !important;
        flex-shrink: 1;
    }
    
    .nav-cta {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
        transform: none !important;
        transition: none !important;
        flex-shrink: 1;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-products-services {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-product-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-product-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-stats {
        gap: 0.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-number::after {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-step {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0;
        justify-content: space-between;
        align-items: center;
    }
    
    .left-panel, .right-panel {
        flex: 1;
        min-width: 0;
        max-width: 48%;
    }
    
    .arrow-center {
        display: none;
    }
    
    .demo-img {
        height: 200px;
    }
    
    .cta-box {
        padding: 0.8rem 1.5rem;
    }
    
    .demo-cta h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #000000;
        font-style: normal;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .demo-title {
        font-size: 1.8rem;
    }
    
    .demo-description {
        font-size: 0.95rem;
    }
    
    .demo-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .demo-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 40px 0 !important;
    }
    
    .contact-info {
        padding: 0.75rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .contact-item strong {
        font-size: 0.8rem;
    }
    
    .demo-buttons {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    .demo-button {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-number::after {
        font-size: 2rem;
    }
    
    .stat-number.no-percentage::after {
        content: '';
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .step-item {
        padding: 0.75rem;
    }
    
    .feature-card {
        padding: 0.75rem;
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    
    .feature-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon {
        width: 1.5rem;
        height: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .feature-card h3 {
        margin-bottom: 0;
        font-size: 1rem;
    }
    
    .platform-card {
        padding: 0.75rem;
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    
    .platform-top-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .platform-icon {
        width: 1.2rem;
        height: 1.2rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .platform-card h3 {
        margin-bottom: 0;
        font-size: 1rem;
    }
    
    
    /* Impact Calculator Responsive */
    .impact-calculator {
        padding: 60px 0;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculator-form,
    .calculator-results {
        padding: 1.5rem;
    }
    
    .calculator-form h3,
    .calculator-results h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .calculate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .result-card {
        padding: 1rem;
    }
    
    .result-value {
        font-size: 1.5rem;
    }
    
    .calculator-cta p {
        font-size: 1rem;
    }
    
    .lead-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .lead-cta-top {
        justify-content: center;
    }
    
    .lead-items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lead-subtitle {
        font-size: 1.5rem;
    }
    
    .lead-paragraph {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
        margin: 0 auto;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.95rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-box-number {
        font-size: 2.5rem;
    }
    
    .stat-box-label {
        font-size: 0.95rem;
    }
    
    .lead-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .product-card-modern {
        margin-bottom: 0;
    }
    
    .product-card-image {
        min-height: 180px;
        padding: 0.5rem;
    }
    
    .product-card-content {
        padding: 1.25rem;
    }
    
    .product-card-title {
        font-size: 1.2rem;
    }
    
    .product-card-description {
        font-size: 0.9rem;
    }
    
    .product-card {
        padding: 1.25rem;
    }
    
    .product-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .product-card h3 {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .product-features {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .product-feature-item {
        font-size: 0.85rem;
    }
    
    .products-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Footer responsive for 480px */
    .footer {
        padding: 1.5rem 0 1rem;
        overflow-x: hidden;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
        padding: 0;
    }
    
    .footer-logo h3 {
        font-size: 1.1rem;
    }
    
    .footer-logo p {
        font-size: 0.8rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.2rem 0;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        line-height: 1.4;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        padding: 0 10px;
        line-height: 1.4;
    }
    
}
