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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
            color: #1e293b;
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(148, 163, 184, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 600;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
            margin: 0;
        }

        .nav-link {
            color: #475569;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        .nav-link:hover {
            color: #8b5cf6;
        }

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

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

        .nav-cta {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #475569;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.15;
            margin-bottom: 24px;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .hero-text .highlight {
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .subtitle {
            font-size: 1.25rem;
            color: #64748b;
            margin-bottom: 32px;
            line-height: 1.6;
            font-weight: 400;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            color: white;
            padding: 16px 32px;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
        }

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

        .phone-mockup {
            width: 280px;
            height: 500px;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 32px;
            padding: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: phoneFloat 6s ease-in-out infinite;
        }

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

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            padding: 20px;
        }

        .screen-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e2e8f0;
        }

        .screen-title {
            font-weight: 600;
            color: #1e293b;
            font-size: 0.9rem;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
            flex: 1;
        }

        .photo-item {
            border-radius: 8px;
            animation: photoSlide 4s ease-in-out infinite;
        }
        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }

        @keyframes photoSlide {
            0%, 100% { transform: scale(1); opacity: 0.9; }
            50% { transform: scale(1.02); opacity: 1; }
        }

        /* How It Works Section */
        .how-it-works {
            padding: 120px 0;
            background: white;
        }

        .how-it-works h2 {
            font-family: 'Playfair Display', serif;
            text-align: center;
            font-size: 2.75rem;
            margin-bottom: 16px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .how-it-works .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 80px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .process-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .step-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
            max-width: 280px;
            flex: 1;
            min-width: 250px;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8b5cf6, #ec4899);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

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

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        .step-icon {
            font-size: 3rem;
            margin-bottom: 24px;
            margin-top: 20px;
            display: block;
        }

        .step-card h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            font-weight: 600;
            color: #1e293b;
        }

        .step-card p {
            color: #64748b;
            line-height: 1.6;
            font-size: 1rem;
        }

        .step-arrow {
            font-size: 2rem;
            color: #8b5cf6;
            font-weight: bold;
            margin: 0 20px;
        }

        /* Sample Preview Section */
        .sample-preview {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .sample-preview h2 {
            font-family: 'Playfair Display', serif;
            text-align: center;
            font-size: 2.75rem;
            margin-bottom: 16px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .sample-preview .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 80px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .sample-albums {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 60px;
        }

        .sample-album {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .sample-album:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
        }

        .album-cover {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .album-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .sample-album:hover .album-cover img {
            transform: scale(1.05);
        }

        .album-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 24px;
        }

        .album-overlay h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .album-overlay p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

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

        .cta-button.secondary {
            background: white;
            color: #8b5cf6;
            border: 2px solid #8b5cf6;
        }

        .cta-button.secondary:hover {
            background: #8b5cf6;
            color: white;
        }

        /* Features Section */
        .features {
            padding: 120px 0;
            background: white;
        }

        .features h2 {
            font-family: 'Playfair Display', serif;
            text-align: center;
            font-size: 2.75rem;
            margin-bottom: 16px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .features .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 80px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 48px;
        }

        .feature-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8b5cf6, #ec4899);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

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

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 24px;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            font-weight: 600;
            color: #1e293b;
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Problem Section */
        .problem {
            padding: 120px 0;
            background: linear-gradient(135deg, #fef2f2 0%, #fef7f7 100%);
        }

        .problem-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .problem-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            margin-bottom: 24px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .problem-text .intro {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .problem-list {
            list-style: none;
            margin: 32px 0;
        }

        .problem-list li {
            padding: 16px 0;
            font-size: 1.1rem;
            display: flex;
            align-items: flex-start;
            color: #475569;
            line-height: 1.6;
        }

        /* .problem-list li::before {
            content: '😔';
            margin-right: 16px;
            font-size: 1.3rem;
            margin-top: 2px;
        } */

        .chaos-visual {
            position: relative;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            border-radius: 24px;
            overflow: hidden;
        }

        .photo-chaos {
            position: absolute;
            width: 48px;
            height: 48px;
            /* background: linear-gradient(135deg, #ef4444, #dc2626); */
            overflow: hidden; /* ensure image doesn't overflow the box */
            border-radius: 8px;
            animation: chaosFloat 4s ease-in-out infinite;
            opacity: 0.9;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

                /* Image inside each floating box */
        .photo-chaos img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* ensures image fills container without distortion */
            border-radius: 8px;
            display: block;
        }

        @keyframes chaosFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(30px, -30px) rotate(90deg); }
            50% { transform: translate(-30px, 30px) rotate(180deg); }
            75% { transform: translate(-30px, -30px) rotate(270deg); }
        }

        /* Pricing Section */
        .pricing {
            padding: 120px 0;
            background: white;
        }

        .pricing h2 {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            margin-bottom: 16px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .pricing .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 80px;
        }

        .pricing-grid {
            display: flex;
            gap: 32px;
            overflow-x: auto;
            padding: 42px 38px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            max-width: 100%;
        }

        /* Optional: Hide scrollbars */
        .pricing-grid::-webkit-scrollbar {
            display: none;
        }
        .pricing-grid {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .pricing-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            color: white;
            transform: scale(1.05);
            border-color: #8b5cf6;
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
        }

        .pricing-card.featured .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured:hover {
            transform: translateY(-8px) scale(1.05);
        }

        .plan-name {
            font-size: 1.5rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .plan-period {
            margin-bottom: 32px;
            opacity: 0.8;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 40px;
            text-align: left;
        }

        .plan-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            font-size: 1rem;
        }

        .plan-features li::before {
            content: '✓';
            margin-right: 12px;
            color: #10b981;
            font-weight: bold;
        }

        .pricing-card.featured .plan-features li::before {
            color: #fbbf24;
        }

        .plan-cta {
            display: block;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .pricing-card.featured .plan-cta {
            background: white;
            color: #8b5cf6;
        }

        .plan-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .testimonials h2 {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            margin-bottom: 16px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .testimonials .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 80px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 24px;
            line-height: 1.6;
            color: #475569;
            font-size: 1.1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

        .author-info .name {
            font-weight: 600;
            color: #1e293b;
        }

        .author-info .role {
            color: #64748b;
            font-size: 0.9rem;
        }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #64748b;
            font-weight: 500;
        }

        /* About Us Section */
        .about {
            padding: 120px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .about h2 {
            font-family: 'Playfair Display', serif;
            text-align: center;
            font-size: 2.75rem;
            margin-bottom: 16px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .about .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 80px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Story Section */
        .about-story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 120px;
            position: relative;
            z-index: 1;
        }

        .story-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 24px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .story-content .highlight {
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .story-content p {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .story-visual {
            position: relative;
            height: 400px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .story-illustration {
            width: 100%;
            max-width: 600px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .story-illustration img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            object-fit: contain;
        }

        /* Values Section */
        .about-values {
            margin-bottom: 120px;
        }

        .about-values h3 {
            font-family: 'Playfair Display', serif;
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 16px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .values-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 60px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .value-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 20px;
            padding: 40px 24px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8b5cf6, #ec4899);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

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

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .value-card h4 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            font-weight: 600;
            color: #1e293b;
        }

        .value-card p {
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem;
        }


        /* Mission Statement */
        .mission-statement {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #ec4899 100%);
            border-radius: 24px;
            padding: 60px 40px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .mission-statement::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: missionGlow 8s ease-in-out infinite;
        }

        @keyframes missionGlow {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        .mission-content {
            position: relative;
            z-index: 1;
        }

        .mission-statement h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 24px;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .mission-statement p {
            font-size: 1.2rem;
            line-height: 1.6;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        /* FAQ Section */
        .faq {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .faq h2 {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            margin-bottom: 80px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 16px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            padding: 24px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: #1e293b;
        }

        .faq-answer {
            padding: 0 32px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            color: #64748b;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 0 32px 24px;
            max-height: 200px;
            opacity: 1;
        }

        .faq-icon {
            transition: transform 0.3s ease;
            color: #8b5cf6;
            font-weight: 300;
            font-size: 1.5rem;
        }

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

        /* Contact Section */
        .contact {
            padding: 80px 20px;
            background: #ffffff;
        }

        .contact h2 {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 16px;
            font-weight: 700;
            color: #1e293b;
        }

        .contact .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Contact Method */
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            margin-bottom: 40px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            width: 100%;
            max-width: 600px;
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease;
        }

        .contact-method:hover {
            transform: translateY(-3px);
        }

        .contact-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: white;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1e293b;
            margin: 0 0 4px;
        }

        .contact-details p {
            color: #64748b;
            margin: 0;
            font-size: 0.95rem;
        }

        /* Social Media Section */
        .social-media-section {
            text-align: center;
        }

        .social-media-section h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1e293b;
        }

        .social-media-section p {
            color: #64748b;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, transform 0.3s;
            color: #1e293b;
        }

        .social-link:hover {
            background: #8b5cf6;
            color: #f4eded;
            transform: scale(1.1);
        }
        .social-link svg {
            fill: #1e293b;
            transition: fill 0.3s;
        }

        .social-link:hover svg {
            fill: #ffffff;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .contact h2 {
                font-size: 2rem;
            }

            .contact .section-subtitle {
                font-size: 0.95rem;
            }

            .contact-method {
                flex-direction: row;
                padding: 16px;
            }

            .contact-icon {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }

            .social-links {
                gap: 12px;
            }

            .social-link {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .contact-method {
                flex-direction: column;
                text-align: center;
            }

            .contact-icon {
                margin-bottom: 12px;
            }
        }

        /* Final CTA Section */
        .final-cta {
            padding: 120px 0;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #ec4899 100%);
            text-align: center;
            color: white;
        }

        .final-cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            margin-bottom: 24px;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .final-cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .mega-cta {
            background: white;
            color: #8b5cf6;
            padding: 20px 48px;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .mega-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
        }

        .cta-note {
            margin-top: 24px;
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
            padding: 80px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-description {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #cbd5e1;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        }

        .footer-section h4 {
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: white;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #8b5cf6;
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            opacity: 0.8;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-bottom-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #8b5cf6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 60px;
                margin-top: 40px;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
                
            }

            .hero-visual {
                height: 400px;
            }

            .phone-mockup {
                width: 240px;
                height: 420px;
            }
            
            .problem-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }

            /* How It Works responsive styles */
            .how-it-works h2 {
                font-size: 2rem;
            }

            .process-steps {
                flex-direction: column;
                gap: 24px;
            }

            .step-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
            }

            .step-card {
                max-width: 100%;
                min-width: auto;
            }

            /* Sample Preview responsive styles */
            .sample-preview h2 {
                font-size: 2rem;
            }

            .sample-albums {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .about h2 {
                font-size: 2rem;
            }

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

            .story-content h3 {
                font-size: 1.8rem;
            }

            .story-visual {
                height: auto; /* Let it adjust based on image size */
                padding: 16px;
            }
        
            .story-illustration {
                width: 100%;
                max-width: 100%;
                height: auto;
            }
        
            .story-illustration img {
                width: 100%;
                height: auto;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .mission-statement {
                padding: 40px 24px;
            }

            .mission-statement h3 {
                font-size: 1.6rem;
            }

            .mission-statement p {
                font-size: 1rem;
            }
        }
