  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            background: #FFFFFF;
            color: #2C2C2C;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation */
        nav {
            padding: 30px 0;
            border-bottom: 1px solid #F0F0F0;
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .logo {
            font-size: 22px;
            font-weight: 300;
            letter-spacing: 2px;
            color: #2C2C2C;
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 0 120px;
            text-align: center;
            position: relative;
        }
        
        .floating-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0;
            animation: float 6s ease-in-out infinite;
        }
        
        .float-1 {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FFB6C1, #E6C9D6);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .float-2 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #E6C9D6, #D4B5C8);
            top: 20%;
            right: 15%;
            animation-delay: 1s;
        }
        
        .float-3 {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #FFE8EE, #F5E6EF);
            bottom: 15%;
            left: 15%;
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0.1;
            }
            50% {
                transform: translateY(-30px) scale(1.1);
                opacity: 0.2;
            }
        }
        
        .hero h1 {
            font-size: 56px;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 30px;
            color: #2C2C2C;
            letter-spacing: -1px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero .subheadline {
            font-size: 20px;
            color: #6C6C6C;
            margin-bottom: 50px;
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.2s forwards;
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(135deg, #FFB6C1 0%, #E6C9D6 100%);
            color: #FFFFFF;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(255, 182, 193, 0.3);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.4s forwards;
        }
        
        .cta-button::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-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255, 182, 193, 0.5);
        }
        
        /* Section Headers */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 38px;
            font-weight: 300;
            text-align: center;
            margin-bottom: 60px;
            color: #2C2C2C;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .section-title.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Case Studies */
        .case-studies {
            background: #FAFAFA;
        }
        
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }
        
        .case-card {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease;
            cursor: pointer;
        }
        
        .case-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .case-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255, 182, 193, 0.2);
        }
        
        .case-label {
            font-size: 12px;
            letter-spacing: 2px;
            color: #FFB6C1;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .case-card h3 {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 20px;
            color: #2C2C2C;
        }
        
        .before-after {
            margin: 25px 0;
        }
        
        .before-after div {
            margin-bottom: 12px;
            font-size: 15px;
        }
        
        .label {
            font-weight: 600;
            color: #6C6C6C;
        }
        
        .result {
            color: #2C2C2C;
        }
        
        /* Framework Section */
        .framework {
            background: white;
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }
        
        .step {
            text-align: center;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease;
        }
        
        .step.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #E6C9D6 0%, #D4B5C8 100%);
            color: white;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }
        
        .step:hover .step-number {
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 10px 30px rgba(212, 181, 200, 0.4);
        }
        
        .step h3 {
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 15px;
            color: #2C2C2C;
        }
        
        .step p {
            color: #6C6C6C;
            font-size: 15px;
        }
        
        /* Progress Bar */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #F0F0F0;
            z-index: 9999;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #FFB6C1, #E6C9D6);
            width: 0%;
            transition: width 0.1s ease;
        }
        
        /* Testimonials */
        .testimonials {
            background: #FFF9FB;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }
        
        .testimonial {
            background: white;
            padding: 35px;
            border-radius: 8px;
            border-left: 3px solid #FFB6C1;
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.6s ease;
        }
        
        .testimonial.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .testimonial:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(255, 182, 193, 0.15);
        }
        
        .quote {
            font-size: 16px;
            font-style: italic;
            color: #2C2C2C;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .author {
            font-size: 14px;
            color: #6C6C6C;
            font-weight: 600;
        }
        
        .role {
            font-size: 13px;
            color: #999;
        }
        
        /* Stats Counter */
        .stats {
            display: flex;
            justify-content: space-around;
            max-width: 800px;
            margin: 60px auto 0;
            padding: 40px 0;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 300;
            color: #FFB6C1;
            display: block;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 14px;
            color: #6C6C6C;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        /* Offer Section */
        .offer {
            background: linear-gradient(135deg, #FFE8EE 0%, #F5E6EF 100%);
            text-align: center;
        }
        
        .offer-box {
            max-width: 650px;
            margin: 0 auto;
        }
        
        .offer h2 {
            font-size: 42px;
            font-weight: 300;
            margin-bottom: 25px;
            color: #2C2C2C;
        }
        
        .offer p {
            font-size: 18px;
            color: #6C6C6C;
            margin-bottom: 40px;
        }
        
        .value-list {
            text-align: left;
            margin: 35px 0;
            padding: 0 40px;
        }
        
        .value-list li {
            list-style: none;
            padding: 12px 0;
            font-size: 16px;
            color: #2C2C2C;
            position: relative;
            padding-left: 30px;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.4s ease;
        }
        
        .value-list li.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .value-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #FFB6C1;
            font-weight: bold;
            font-size: 18px;
        }
        
        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FFB6C1, #E6C9D6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(255, 182, 193, 0.4);
        }
        
        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 182, 193, 0.6);
        }
        
        .scroll-top::after {
            content: "↑";
            color: white;
            font-size: 24px;
        }
        
        /* Footer */
        footer {
            padding: 50px 0;
            text-align: center;
            border-top: 1px solid #F0F0F0;
            font-size: 14px;
            color: #999;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 38px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .steps, .testimonial-grid, .case-grid {
                grid-template-columns: 1fr;
            }
            
            .stats {
                flex-direction: column;
                gap: 30px;
            }
            
            .floating-element {
                display: none;
            }
        }