* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --blob-purple: #9C27B0;
            --blob-blue: #2196F3;
            --blob-pink: #E91E63;
            --blob-mint: #26A69A;
            --surface: #F3E5F5;
            --surface-alt: #EDE7F6;
            --dark: #1A1A2E;
            --dark-light: #2D2D44;
            --text-primary: #1A1A2E;
            --text-secondary: #555577;
            --white: #FFFFFF;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', 'Noto Sans KR', sans-serif;
            background: var(--surface);
            color: var(--text-primary);
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Blob Shape Mixin */
        .blob-shape {
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: morphBlob 8s ease-in-out infinite;
        }

        .blob-shape-2 {
            border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
            animation: morphBlob2 10s ease-in-out infinite;
        }

        .blob-shape-3 {
            border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
            animation: morphBlob3 12s ease-in-out infinite;
        }

        @keyframes morphBlob {
            0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
            50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
            75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
            100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
        }

        @keyframes morphBlob2 {
            0% { border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%; }
            25% { border-radius: 40% 60% 50% 50% / 45% 55% 45% 55%; }
            50% { border-radius: 65% 35% 60% 40% / 70% 30% 70% 30%; }
            75% { border-radius: 35% 65% 45% 55% / 50% 50% 50% 50%; }
            100% { border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%; }
        }

        @keyframes morphBlob3 {
            0% { border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%; }
            25% { border-radius: 60% 40% 30% 70% / 40% 50% 60% 50%; }
            50% { border-radius: 30% 70% 50% 50% / 60% 40% 50% 60%; }
            75% { border-radius: 50% 50% 60% 40% / 30% 70% 40% 60%; }
            100% { border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%; }
        }

        @keyframes floatUp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes floatDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(20px); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: 90%;
            max-width: 70rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
            animation: navMorph 15s ease-in-out infinite;
            box-shadow: 0 8px 32px rgba(156, 39, 176, 0.1);
        }

        @keyframes navMorph {
            0% { border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%; }
            25% { border-radius: 50% 50% 50% 50% / 40% 60% 40% 60%; }
            50% { border-radius: 40% 60% 40% 60% / 50% 50% 50% 50%; }
            75% { border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%; }
            100% { border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%; }
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--blob-purple);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--blob-purple);
        }

        .nav-cta {
            padding: 0.6rem 1.5rem;
            background: var(--blob-purple);
            color: white;
            border: none;
            border-radius: 50% 50% 50% 50%;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: ctaMorph 6s ease-in-out infinite;
        }

        @keyframes ctaMorph {
            0%, 100% { border-radius: 50% 50% 50% 50%; }
            50% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
        }

        .nav-cta:hover {
            transform: scale(1.1);
            background: var(--blob-pink);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--blob-purple);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(243, 229, 245, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            color: var(--blob-purple);
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 800;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 8rem 2rem 4rem;
            overflow: hidden;
        }

        .hero-blobs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .hero-blob {
            position: absolute;
            opacity: 0.6;
        }

        .hero-blob-1 {
            width: clamp(15rem, 30vw, 25rem);
            height: clamp(15rem, 30vw, 25rem);
            background: var(--blob-purple);
            top: 10%;
            left: 10%;
            animation: morphBlob 8s ease-in-out infinite, floatUp 6s ease-in-out infinite;
        }

        .hero-blob-2 {
            width: clamp(12rem, 25vw, 20rem);
            height: clamp(12rem, 25vw, 20rem);
            background: var(--blob-blue);
            top: 20%;
            right: 15%;
            animation: morphBlob2 10s ease-in-out infinite, floatDown 7s ease-in-out infinite;
        }

        .hero-blob-3 {
            width: clamp(10rem, 20vw, 18rem);
            height: clamp(10rem, 20vw, 18rem);
            background: var(--blob-pink);
            bottom: 15%;
            left: 20%;
            animation: morphBlob3 12s ease-in-out infinite, floatUp 8s ease-in-out infinite;
        }

        .hero-blob-4 {
            width: clamp(8rem, 15vw, 14rem);
            height: clamp(8rem, 15vw, 14rem);
            background: var(--blob-mint);
            bottom: 25%;
            right: 10%;
            animation: morphBlob 9s ease-in-out infinite, floatDown 5s ease-in-out infinite;
        }

        .hero-blob-5 {
            width: clamp(6rem, 12vw, 10rem);
            height: clamp(6rem, 12vw, 10rem);
            background: var(--blob-purple);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.3;
            animation: morphBlob2 7s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 50rem;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(156, 39, 176, 0.1);
            color: var(--blob-purple);
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
            border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
            animation: morphBlob3 10s ease-in-out infinite;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--blob-purple), var(--blob-pink), var(--blob-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--text-secondary);
            max-width: 35rem;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-blob {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Nunito', sans-serif;
        }

        .btn-primary-blob {
            background: var(--blob-purple);
            color: white;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: morphBlob 8s ease-in-out infinite;
        }

        .btn-primary-blob:hover {
            background: var(--blob-pink);
            transform: scale(1.08);
        }

        .btn-secondary-blob {
            background: rgba(156, 39, 176, 0.1);
            color: var(--blob-purple);
            border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
            animation: morphBlob2 9s ease-in-out infinite;
        }

        .btn-secondary-blob:hover {
            background: rgba(156, 39, 176, 0.2);
            transform: scale(1.08);
        }

        /* Stats Section */
        .stats-section {
            padding: 4rem 2rem;
            position: relative;
            z-index: 2;
        }

        .stats-container {
            max-width: 70rem;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: var(--white);
            animation: morphBlob 8s ease-in-out infinite;
            transition: transform 0.3s ease;
            box-shadow: 0 10px 40px rgba(156, 39, 176, 0.08);
        }

        .stat-card:nth-child(2) {
            animation-name: morphBlob2;
        }

        .stat-card:nth-child(3) {
            animation-name: morphBlob3;
        }

        .stat-card:nth-child(4) {
            animation-name: morphBlob;
            animation-delay: -3s;
        }

        .stat-card:hover {
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--blob-purple);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        /* Features Section */
        .features-section {
            padding: 6rem 2rem;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.4rem 1.5rem;
            background: rgba(33, 150, 243, 0.1);
            color: var(--blob-blue);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
            animation: morphBlob3 10s ease-in-out infinite;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 30rem;
            margin: 0 auto;
            line-height: 1.8;
        }

        .features-grid {
            max-width: 70rem;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            padding: 2.5rem;
            background: var(--white);
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(156, 39, 176, 0.06);
            position: relative;
            overflow: hidden;
        }

        .feature-card:nth-child(1) { animation: morphBlob 10s ease-in-out infinite; }
        .feature-card:nth-child(2) { animation: morphBlob2 11s ease-in-out infinite; }
        .feature-card:nth-child(3) { animation: morphBlob3 12s ease-in-out infinite; }
        .feature-card:nth-child(4) { animation: morphBlob2 9s ease-in-out infinite; }
        .feature-card:nth-child(5) { animation: morphBlob 13s ease-in-out infinite; }
        .feature-card:nth-child(6) { animation: morphBlob3 11s ease-in-out infinite; }

        .feature-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(156, 39, 176, 0.15);
        }

        .feature-icon-blob {
            width: 4rem;
            height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1.5rem;
            animation: morphBlob2 6s ease-in-out infinite;
        }

        .feature-icon-blob.purple { background: var(--blob-purple); }
        .feature-icon-blob.blue { background: var(--blob-blue); }
        .feature-icon-blob.pink { background: var(--blob-pink); }
        .feature-icon-blob.mint { background: var(--blob-mint); }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

        .feature-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Blob Showcase */
        .showcase-section {
            padding: 6rem 2rem;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .showcase-bg-blobs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .showcase-bg-blob {
            position: absolute;
            opacity: 0.15;
        }

        .showcase-bg-blob-1 {
            width: 20rem;
            height: 20rem;
            background: var(--blob-purple);
            top: -5rem;
            right: -5rem;
            animation: morphBlob 10s ease-in-out infinite;
        }

        .showcase-bg-blob-2 {
            width: 15rem;
            height: 15rem;
            background: var(--blob-pink);
            bottom: -3rem;
            left: -3rem;
            animation: morphBlob2 12s ease-in-out infinite;
        }

        .showcase-container {
            max-width: 70rem;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .showcase-header .section-title {
            color: var(--white);
        }

        .showcase-header .section-desc {
            color: rgba(255, 255, 255, 0.7);
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .showcase-card {
            padding: 3rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        .showcase-card:nth-child(1) { animation: morphBlob 9s ease-in-out infinite; }
        .showcase-card:nth-child(2) { animation: morphBlob2 10s ease-in-out infinite; }
        .showcase-card:nth-child(3) { animation: morphBlob3 11s ease-in-out infinite; }
        .showcase-card:nth-child(4) { animation: morphBlob 12s ease-in-out infinite; }

        .showcase-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.03);
        }

        .showcase-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--blob-pink);
            margin-bottom: 0.5rem;
        }

        .showcase-card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.8rem;
        }

        .showcase-card-desc {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Process Section */
        .process-section {
            padding: 6rem 2rem;
        }

        .process-container {
            max-width: 60rem;
            margin: 0 auto;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .process-step {
            display: grid;
            grid-template-columns: 5rem 1fr;
            gap: 2rem;
            align-items: center;
            padding: 2rem;
            background: var(--white);
            box-shadow: 0 5px 25px rgba(156, 39, 176, 0.06);
            transition: all 0.4s ease;
        }

        .process-step:nth-child(1) { animation: morphBlob 10s ease-in-out infinite; }
        .process-step:nth-child(2) { animation: morphBlob2 11s ease-in-out infinite; }
        .process-step:nth-child(3) { animation: morphBlob3 12s ease-in-out infinite; }
        .process-step:nth-child(4) { animation: morphBlob 9s ease-in-out infinite; }

        .process-step:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(156, 39, 176, 0.12);
        }

        .process-num {
            width: 4rem;
            height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--blob-purple);
            color: white;
            font-size: 1.5rem;
            font-weight: 900;
            animation: morphBlob2 7s ease-in-out infinite;
        }

        .process-info h3 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .process-info p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 6rem 2rem;
            background: var(--surface-alt);
        }

        .testimonials-grid {
            max-width: 70rem;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            padding: 2.5rem;
            background: var(--white);
            transition: all 0.4s ease;
            box-shadow: 0 5px 25px rgba(156, 39, 176, 0.06);
        }

        .testimonial-card:nth-child(1) { animation: morphBlob 9s ease-in-out infinite; }
        .testimonial-card:nth-child(2) { animation: morphBlob2 10s ease-in-out infinite; }
        .testimonial-card:nth-child(3) { animation: morphBlob3 11s ease-in-out infinite; }

        .testimonial-card:hover {
            transform: scale(1.03);
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--blob-purple);
            color: white;
            font-weight: 800;
            animation: morphBlob2 6s ease-in-out infinite;
        }

        .testimonial-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--dark);
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-blobs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .cta-blob {
            position: absolute;
            opacity: 0.3;
        }

        .cta-blob-1 {
            width: 15rem;
            height: 15rem;
            background: var(--blob-purple);
            top: -3rem;
            left: 10%;
            animation: morphBlob 9s ease-in-out infinite;
        }

        .cta-blob-2 {
            width: 12rem;
            height: 12rem;
            background: var(--blob-mint);
            bottom: -3rem;
            right: 15%;
            animation: morphBlob2 10s ease-in-out infinite;
        }

        .cta-container {
            max-width: 50rem;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 4rem;
            background: var(--white);
            box-shadow: 0 20px 60px rgba(156, 39, 176, 0.1);
            animation: morphBlob3 15s ease-in-out infinite;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .cta-desc {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        /* Footer */
        .footer {
            padding: 4rem 2rem 2rem;
            background: var(--dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .footer-blob {
            position: absolute;
            width: 10rem;
            height: 10rem;
            background: var(--blob-purple);
            opacity: 0.08;
            bottom: -3rem;
            right: 5%;
            animation: morphBlob 10s ease-in-out infinite;
        }

        .footer-container {
            max-width: 70rem;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            position: relative;
            z-index: 2;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--blob-purple);
            margin-bottom: 1rem;
        }

        .footer-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .footer-title {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            color: var(--blob-mint);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            max-width: 70rem;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .footer-copy {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
        }

        .footer-socials a {
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
            animation: morphBlob2 8s ease-in-out infinite;
        }

        .footer-socials a:hover {
            background: var(--blob-purple);
            color: white;
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1023px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .showcase-grid {
                grid-template-columns: 1fr;
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 767px) {
            html { font-size: 14px; }

            .nav-links, .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .process-step {
                grid-template-columns: 3.5rem 1fr;
                gap: 1.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .hero-blob {
                opacity: 0.3;
            }
        }

        @media (max-width: 359px) {
            html { font-size: 13px; }
        }

        @media (min-width: 1920px) {
            html { font-size: 17px; }
        }

        @media (min-width: 2560px) {
            html { font-size: 19px; }
        }

        @media (min-width: 3840px) {
            html { font-size: 22px; }
        }