         :root {
            --black: #000000;
            --white: #FFFFFF;
            --gray: #F8F8F8;
            --light-gray: #EEEEEE;
            --accent: #1A1A1A;
            --serif: 'Playfair Display', serif;
            --sans: 'Inter', sans-serif;
            --letter-spacing-tight: -0.03em;
            --letter-spacing-wide: 0.1em;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }

        .step-image{
            background-size: cover !important;
        }
        
        body {
            font-family: var(--sans);
            color: var(--black);
            background: var(--white);
            line-height: 1.8;
            overflow-x: hidden;
            font-weight: 300;
            letter-spacing: 0.01em;
        }
        
        h1, h2, h3, h4 {
            font-family: var(--serif);
            font-weight: 300;
            line-height: 1.2;
            letter-spacing: var(--letter-spacing-tight);
        }
        
        h1 { 
            font-size: clamp(3.5rem, 8vw, 7rem); 
            letter-spacing: -0.04em;
            font-weight: 200;
        }
        h2 { 
            font-size: clamp(2.8rem, 6vw, 4.5rem); 
            letter-spacing: -0.03em;
            font-weight: 200;
        }
        h3 { 
            font-size: clamp(2rem, 4vw, 3rem); 
            font-weight: 300;
        }
        
        p {
            font-size: clamp(1.1rem, 1.5vw, 1.25rem);
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            letter-spacing: 0.01em;
        }
        
        .container {
            width: 85%;
            max-width: 1600px;
            margin: 0 auto;
        }

    
        
        .section {
            padding: 12rem 0;
        }
        .image {
            width: 50%;
            height: 100%;
         }
        
        
        
        /* Hero */
        .hero {
            height: 100vh;
            min-height: 900px;
            display: flex;
            align-items: center;
            padding-top: 8rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            width: 60%;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            margin-bottom: 3rem;
            line-height: 1;
        }
        
        .hero p {
            max-width: 600px;
            margin-bottom: 4rem;
            font-size: 1.3rem;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 1.4rem 3rem;
            font-size: 0.9rem;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            border: 1px solid var(--black);
            transition: all 0.4s ease;
        }
        
        .btn-primary {
            background: var(--black);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: transparent;
            color: var(--black);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--black);
        }
        
        .btn-secondary:hover {
            background: var(--black);
            color: var(--white);
        }
        
        .hero-image {
            position: absolute;
            right: 2%;
            top: 20%;
            transform: translateY(-50%);
            width: 45%;
            max-width: 800px;
            height: 70vh;
            object-fit: cover;
            object-position: center;
            z-index: 1;
        }
        .hero-image img{
            width: 100%;
        }
        
        /* Features */
        .features {
            background: var(--gray);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 8rem;
        }
        
        .section-header h2 {
            margin-bottom: 2rem;
        }
        
        .section-header p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
        }
        
        .feature-card {
            padding: 4rem;
            background: var(--white);
            border: 1px solid var(--light-gray);
        }
        
        .feature-number {
            font-size: 0.9rem;
            font-weight: 300;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            color: rgba(0,0,0,0.4);
        }
        
        .feature-card h3 {
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1.5rem;
            font-weight: 300;
        }
        
        .feature-card h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 1px;
            background: var(--black);
        }
        
        .feature-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(0,0,0,0.7);
        }
        
        /* Process */
        .process {
            position: relative;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 6rem;
            position: relative;
        }
        
        .process-step {
            display: flex;
            align-items: center;
            gap: 5rem;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-number {
            font-size: 10rem;
            font-family: var(--serif);
            font-weight: 700;
            color: var(--gray);
            position: absolute;
            z-index: -1;
        }
        
        .step-image {
            flex: 1;
            height: 500px;
            background: var(--light-gray);
        }
        
        /* CTA */
        .cta {
            text-align: center;
            background: var(--black);
            color: var(--white);
        }
        
        .cta h2 {
            margin-bottom: 2rem;
            color: var(--white);
        }
        
        .cta p {
            max-width: 600px;
            margin: 0 auto 3rem;
            color: rgba(255,255,255,0.8);
        }
        
        .cta .btn {
            border-color: var(--white);
            color: var(--white);
        }
        
        .cta .btn:hover {
            background: var(--white);
            color: var(--black);
        }
        
        /* Footer */
        footer {
            padding: 6rem 0 3rem;
            background: var(--black);
            color: var(--white);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 6rem;
        }
        
        .footer-column h3 {
            font-family: var(--sans);
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 2rem;
            color: rgba(255,255,255,0.5);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 1rem;
        }
        
        .footer-column a {
            color: rgba(255,255,255,0.7);
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright {
            color: rgba(255,255,255,0.5);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                width: 100%;
                text-align: center;
            }
            
            .hero p {
                margin: 0 auto 3rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                display: none;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step, 
            .process-step:nth-child(even) {
                flex-direction: column;
            }
            
            .step-image {
                width: 100%;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 6rem 0;
            }
            
            nav {
                display: none;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
 