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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #000;
    background: #fff;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.logo {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 200;
    margin-bottom: 30px;
    letter-spacing: -3px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.7;
    font-weight: 300;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 24px;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.4s ease;
    border: 1px solid #000;
}

.cta-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-1px);
}

/* Abstract Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
    pointer-events: none;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

/* Additional Abstract Elements */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,0,0,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

/* Enhanced Header */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

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

/* Enhanced Hero with Parallax */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,0,0,0.015) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.parallax-element {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.parallax-1 { top: 20%; left: 15%; animation: float 12s ease-in-out infinite; }
.parallax-2 { top: 30%; right: 20%; animation: float 8s ease-in-out infinite reverse; }
.parallax-3 { bottom: 40%; left: 25%; animation: float 15s ease-in-out infinite; }
.parallax-4 { top: 60%; right: 30%; animation: float 10s ease-in-out infinite reverse; }
.parallax-5 { bottom: 30%; right: 15%; animation: float 14s ease-in-out infinite; }

/* Typing Animation */
.typing-text {
    border-right: 2px solid rgba(0, 0, 0, 0.3);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: rgba(0, 0, 0, 0.3); }
    51%, 100% { border-color: transparent; }
}

/* Enhanced Buttons */
.cta-button {
    position: relative;
    overflow: hidden;
}

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

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

/* Advanced Features Section */
.features {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.feature {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Interactive Stats */
.stat {
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.stat-number {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #fafafa;
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial {
    text-align: center;
    padding: 60px 40px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
    position: absolute;
    width: 100%;
    top: 0;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-text {
    font-size: 24px;
    font-weight: 200;
    line-height: 1.4;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #000;
    transform: scale(1.2);
}

/* Process Section - Enhanced */
.process {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 80px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-item:nth-child(even) .process-content {
    text-align: right;
}

.process-content {
    flex: 1;
    padding: 0 60px;
}

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    z-index: 2;
}

.process-title {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.process-description {
    font-size: 16px;
    opacity: 0.6;
    line-height: 1.6;
    max-width: 300px;
}

.process-item:nth-child(even) .process-description {
    margin-left: auto;
}

/* Mobile responsive for process */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }

    .process-item,
    .process-item:nth-child(even) {
        flex-direction: row;
        text-align: left;
    }

    .process-content,
    .process-item:nth-child(even) .process-content {
        text-align: left;
        padding-left: 80px;
        padding-right: 20px;
    }

    .process-number {
        left: 30px;
        transform: translateX(-50%);
    }

    .process-description,
    .process-item:nth-child(even) .process-description {
        margin-left: 0;
        max-width: none;
    }
}

/* Video Section */
.video-section {
    padding: 120px 0;
    background: #fff;
}

.video-container {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-section {
        padding: 80px 0;
    }
    
    .video-container {
        margin: 40px auto 0;
        border-radius: 8px;
    }
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: #fafafa;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.faq-question {
    padding: 30px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 14px;
    opacity: 0.6;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 30px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #000;
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Mouse Follower Enhancement */
.interactive-element {
    transition: all 0.3s ease;
}

.interactive-element:hover {
    transform: scale(1.02);
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-animation {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Red accent for xxx references */
.xxx-text {
    color: #e53e3e;
    font-weight: 500;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 200;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

/* Features Section - Enhanced */
.features {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.features-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 80px;
    align-items: center;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.feature-item p {
    font-size: 16px;
    opacity: 0.6;
    line-height: 1.6;
    max-width: 400px;
}

.features-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
    animation: float 8s ease-in-out infinite;
}

.visual-element:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.visual-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 20%;
    animation-delay: -2s;
}

.visual-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 15%;
    animation-delay: -4s;
}

.visual-center {
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 200;
    z-index: 2;
    position: relative;
}

/* Alternative minimal grid layout */
.features-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.feature-minimal {
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-minimal:hover {
    transform: translateY(-2px);
}

.feature-minimal:last-child {
    border-bottom: none;
}

.feature-number {
    font-size: 12px;
    opacity: 0.3;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.feature-minimal h3 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.feature-minimal p {
    font-size: 16px;
    opacity: 0.6;
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .features-visual {
        height: 300px;
        order: -1;
    }

    .features-content {
        gap: 40px;
    }

    .features-grid-minimal {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

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

.stat {
    padding: 40px 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.final-cta {
    padding: 120px 0;
    background: #fafafa;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 16px;
    margin-bottom: 50px;
    opacity: 0.6;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer p {
    font-size: 12px;
    opacity: 0.4;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .shape {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fade animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

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

/* Minimal loading state */
body.loading * {
    transition: none !important;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
