html {
    scroll-behavior: smooth;
}

body.landing-page {
    height: 100vh;
    margin: 0;
    overflow: hidden;
    display: block;
}

.landing-page .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.snap-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.snap-container::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-dots {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-dot:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.2);
}

.nav-dot.active {
    height: 1.5rem;
    background: #000000;
    border-radius: 0.25rem;
}

.hero-section {
    background: #ffffff;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    display: none;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #000000;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333333;
    margin-bottom: 2rem;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    border: 2px solid #000000;
    letter-spacing: 0.02em;
    cursor: pointer;
    position: relative;
    overflow: visible;
}

.cta-button i {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    background: #ffffff;
    color: #000000;
    text-decoration: none;
}

.cta-button:hover i {
    transform: translateY(-30px) scale(1.3);
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.floating-particle {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
    pointer-events: none;
}

.floating-particle:nth-child(even) {
    animation-duration: 5s;
}

.floating-particle:nth-child(3n) {
    animation-duration: 6s;
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

.pulse-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.pulse-circle-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -250px;
    animation-delay: 1.5s;
}

.blob {
    position: absolute;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.06);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: blobMorph 6s ease-in-out infinite;
    will-change: transform, border-radius;
    border-radius: 45% 55% 48% 52% / 52% 48% 52% 48%;
}

.blob-1 {
    width: 400px;
    height: 400px;
    top: -15%;
    left: -8%;
    animation-delay: 0s;
}

.blob-2 {
    width: 450px;
    height: 450px;
    bottom: -18%;
    right: -10%;
    animation-delay: 2s;
}

.blob-3 {
    width: 380px;
    height: 380px;
    bottom: 15%;
    left: -10%;
    animation-delay: 4s;
}

.features-section {
    background: #f8f9fa;
    padding: 4rem 0 3rem 0;
}

.features-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #212529, #495057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.stats-section {
    background: #ffffff;
    color: #000000;
    padding: 3rem 0;
}

.stats-section .section-title {
    color: #000000;
}

.stats-section .section-subtitle {
    color: #666666;
}

.stats-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

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

.stat-card {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: #000000;
}

.stat-suffix {
    font-size: 3.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    color: #666666;
    font-weight: 400;
}

.cta-section {
    background: #ffffff;
    padding: 3rem 0;
    flex-direction: column;
}

.cta-container {
    max-width: 800px;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.cta-button-primary {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
}

.cta-button-secondary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
    color: #000000;
    text-decoration: none;
}

.footer-info {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
}

.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 45% 55% 48% 52% / 52% 48% 52% 48%;
        transform: scale(1);
    }

    25% {
        border-radius: 58% 42% 55% 45% / 48% 52% 62% 38%;
        transform: scale(1.05, 0.95);
    }

    50% {
        border-radius: 42% 58% 45% 55% / 38% 62% 48% 52%;
        transform: scale(0.95, 1.05);
    }

    75% {
        border-radius: 52% 48% 57% 43% / 55% 45% 47% 53%;
        transform: scale(1.02, 0.98);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-title::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-top: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-container,
    .features-container,
    .stats-container,
    .cta-container {
        padding: 0 1rem;
    }

    .features-section {
        padding: 6.5rem 0 2rem 0;
    }

    .stats-section,
    .cta-section {
        padding: 2rem 0;
    }

    .nav-dots {
        display: none;
    }

    .blob-1 {
        width: 300px;
        height: 300px;
    }

    .blob-2 {
        width: 320px;
        height: 320px;
    }

    .blob-3 {
        width: 280px;
        height: 280px;
    }

    .pulse-circle-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
    }

    .pulse-circle-2 {
        width: 350px;
        height: 350px;
        bottom: -175px;
        left: -175px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}