/* ==================== HOME PAGE CSS ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
            overflow-x: hidden;
            background: #ffffff;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #1a1a1a;
        }

        .nav-contact {
            background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
            color: white !important;
            padding: 10px 24px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .nav-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
        }

        /* Hero */
        .hero {
            padding: 160px 40px 100px;
            text-align: center;
            background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
        }

        .badge {
            display: inline-block;
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%);
            color: #c2185b;
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 32px;
            letter-spacing: 0.3px;
        }

        h1 {
            font-size: 64px;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 24px;
            line-height: 1.15;
            letter-spacing: -2px;
        }

        .highlight {
            font-weight: 700;
            background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 20px;
            color: #666;
            max-width: 720px;
            margin: 0 auto 48px;
            line-height: 1.7;
            font-weight: 400;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
            color: white;
            padding: 16px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 8px 30px rgba(233, 30, 99, 0.25);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(233, 30, 99, 0.35);
        }

        /* Sections */
        .section {
            padding: 120px 40px;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 0.3px;
        }

        .badge-orange {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%);
            color: #e65100;
        }

        .badge-pink {
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%);
            color: #c2185b;
        }

        .badge-yellow {
            background: linear-gradient(135deg, #fffde7 0%, #fff9c4 50%);
            color: #f57f17;
        }

        h2 {
            font-size: 48px;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -1.5px;
        }

        .highlight-orange {
            font-weight: 700;
            background: linear-gradient(135deg, #ff9800 0%, #fb8c00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .highlight-pink {
            font-weight: 700;
            background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .highlight-yellow {
            font-weight: 700;
            background: linear-gradient(135deg, #fbc02d 0%, #f9a825 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            font-weight: 400;
        }

        /* Cards Grid */
        .cards {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 32px;
        }

        .card {
            background: white;
            padding: 48px 36px;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border-color: rgba(0, 0, 0, 0.1);
        }

        .card-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .icon-orange {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
        }

        .icon-pink {
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
        }

        .icon-yellow {
            background: linear-gradient(135deg, #fffde7 0%, #fff9c4 100%);
        }

        .card-icon svg {
            width: 28px;
            height: 28px;
            stroke-width: 2;
        }

        .icon-orange svg {
            stroke: #e65100;
        }

        .icon-pink svg {
            stroke: #c2185b;
        }

        .icon-yellow svg {
            stroke: #f57f17;
        }

        .card h3 {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .card p {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
        }

        /* Backgrounds */
        .bg-white {
            background: #ffffff;
        }

        .bg-light-pink {
            background: linear-gradient(180deg, #fef5f8 0%, #ffffff 100%);
        }

        .bg-light-orange {
            background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
        }

        .bg-light-yellow {
            background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
        }

        .bg-peach {
            background: linear-gradient(180deg, #fff5f0 0%, #ffffff 100%);
        }

        /* Grid 2 columns */
        .cards-2 {
            grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
        }

        /* Projects */
        .project-visual {
            height: 220px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .project-visual svg {
            width: 56px;
            height: 56px;
            stroke-width: 1.5;
        }

        .project-tag {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }

        .tag-pink {
            background: #fce4ec;
            color: #c2185b;
        }

        .tag-orange {
            background: #fff3e0;
            color: #e65100;
        }

        .tag-yellow {
            background: #fffde7;
            color: #f57f17;
        }

        .project-card {
            text-align: center;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 100px 40px;
            background: #fafafa;
        }

        .cta-section h2 {
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 18px;
            color: #666;
            max-width: 680px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            padding: 80px 40px 40px;
            background: #fafafa;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .footer-section p {
            font-size: 15px;
            color: #666;
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-section a:hover {
            color: #e91e63;
        }

        .footer-desc {
            margin-top: 12px;
            max-width: 300px;
            line-height: 1.6;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            text-align: center;
        }

        .footer-bottom p {
            font-size: 14px;
            color: #999;
        }

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

            h1 {
                font-size: 40px;
            }

            h2 {
                font-size: 32px;
            }

            .hero {
                padding: 120px 24px 80px;
            }

            .section {
                padding: 80px 24px;
            }

            .cards {
                grid-template-columns: 1fr;
            }

            .cards-2 {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-section {
                text-align: center;
            }
            
            .footer-desc {
                margin-left: auto;
                margin-right: auto;
            }
            
            .illustration-left,
            .illustration-right {
                display: none;
            }
        }

        /* ==== ILLUSTRATIONS 3D ==== */
        .illustration-left,
        .illustration-right {
            position: absolute;
            width: 400px;
            height: 100%;
            pointer-events: none;
            opacity: 0.45;
            z-index: 0;
        }

        .illustration-left {
            left: 0;
            top: 0;
        }

        .illustration-right {
            right: 0;
            top: 0;
        }

        .scene-3d {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            perspective: 1200px;
        }

        /* ==== CUBES 3D DÉTAILLÉS ==== */
        .cube-3d {
            position: absolute;
            width: var(--size);
            height: var(--size);
            transform-style: preserve-3d;
            animation: floatAndRotate 12s ease-in-out infinite;
        }

        .cube-face {
            position: absolute;
            width: var(--size);
            height: var(--size);
            display: flex;
            align-items: center;
            justify-content: center;
            backface-visibility: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .cube-front  { transform: translateZ(calc(var(--size) / 2)); }
        .cube-back   { transform: translateZ(calc(var(--size) / -2)) rotateY(180deg); }
        .cube-right  { transform: rotateY(90deg) translateZ(calc(var(--size) / 2)); }
        .cube-left   { transform: rotateY(-90deg) translateZ(calc(var(--size) / 2)); }
        .cube-top    { transform: rotateX(90deg) translateZ(calc(var(--size) / 2)); }
        .cube-bottom { transform: rotateX(-90deg) translateZ(calc(var(--size) / 2)); }

        /* Dégradés pour les cubes */
        .gradient-pink { background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%); }
        .gradient-pink-dark { background: linear-gradient(135deg, #f8bbd0 0%, #f48fb1 100%); }
        .gradient-pink-light { background: linear-gradient(135deg, #fff 0%, #fce4ec 100%); }
        
        .gradient-orange { background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); }
        .gradient-orange-dark { background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%); }
        .gradient-orange-light { background: linear-gradient(135deg, #fff 0%, #fff3e0 100%); }
        
        .gradient-yellow { background: linear-gradient(135deg, #fffde7 0%, #fff9c4 100%); }
        .gradient-yellow-dark { background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%); }
        .gradient-yellow-light { background: linear-gradient(135deg, #fff 0%, #fffde7 100%); }
        
        .gradient-blue { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); }

        @keyframes floatAndRotate {
            0%, 100% {
                transform: translateY(0) rotateX(0deg) rotateY(0deg) rotateZ(var(--rotation));
            }
            25% {
                transform: translateY(-20px) rotateX(15deg) rotateY(90deg) rotateZ(calc(var(--rotation) + 5deg));
            }
            50% {
                transform: translateY(-10px) rotateX(0deg) rotateY(180deg) rotateZ(var(--rotation));
            }
            75% {
                transform: translateY(-25px) rotateX(-15deg) rotateY(270deg) rotateZ(calc(var(--rotation) - 5deg));
            }
        }

        /* ==== SPHÈRES 3D ==== */
        .sphere-3d {
            position: absolute;
            width: var(--size);
            height: var(--size);
            perspective: 1000px;
            animation: floatSphere 8s ease-in-out infinite;
        }

        .sphere-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            box-shadow: 
                inset -10px -10px 20px rgba(0, 0, 0, 0.1),
                inset 10px 10px 20px rgba(255, 255, 255, 0.5),
                0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .gradient-pink-sphere { background: radial-gradient(circle at 30% 30%, #fce4ec 0%, #f48fb1 100%); }
        .gradient-yellow-sphere { background: radial-gradient(circle at 30% 30%, #fffde7 0%, #fff59d 100%); }

        @keyframes floatSphere {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-30px) scale(1.1); }
        }

        /* ==== ICÔNES SOCIALES 3D ==== */
        .social-icon-3d {
            position: absolute;
            perspective: 800px;
            animation: floatIcon 6s ease-in-out infinite;
        }

        .icon-card {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: rotateY(var(--rotation)) rotateX(10deg);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: transform 0.6s ease;
        }

        .social-icon-3d:hover .icon-card {
            transform: rotateY(0deg) rotateX(0deg) scale(1.1);
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        /* ==== LAPTOP 3D COMPLEXE ==== */
        .laptop-3d-complex {
            position: absolute;
            top: 15%;
            right: 8%;
            width: 280px;
            transform-style: preserve-3d;
            transform: rotateX(65deg) rotateZ(-40deg);
        }

        .laptop-screen-frame {
            width: 280px;
            height: 180px;
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border-radius: 12px 12px 4px 4px;
            border: 4px solid rgba(255, 152, 0, 0.3);
            transform: translateZ(8px);
            box-shadow: 
                0 20px 60px rgba(255, 152, 0, 0.2),
                inset 0 2px 15px rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        .screen-content {
            padding: 12px;
            background: rgba(255, 255, 255, 0.95);
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }

        .browser-bar {
            display: flex;
            gap: 6px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255, 152, 0, 0.2);
            margin-bottom: 8px;
        }

        .browser-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .code-editor {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .code-line {
            height: 5px;
            background: linear-gradient(90deg, var(--color) 0%, color-mix(in srgb, var(--color) 70%, transparent) 100%);
            border-radius: 3px;
            opacity: 0;
            animation: fadeInLine 0.6s ease-out var(--delay) forwards;
        }

        @keyframes fadeInLine {
            to { opacity: 0.7; }
        }

        .laptop-keyboard {
            width: 290px;
            height: 12px;
            background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
            border-radius: 0 0 8px 8px;
            transform: translateZ(0);
            position: absolute;
            bottom: -12px;
            left: -5px;
            box-shadow: 0 8px 20px rgba(255, 152, 0, 0.2);
        }

        .laptop-base-3d {
            width: 300px;
            height: 180px;
            background: linear-gradient(135deg, #ffcc80 0%, #ffb74d 100%);
            transform: translateZ(-8px) rotateX(90deg);
            position: absolute;
            top: 180px;
            left: -10px;
            border-radius: 8px;
            opacity: 0.4;
        }

        .laptop-shadow {
            width: 320px;
            height: 200px;
            background: radial-gradient(ellipse, rgba(255, 152, 0, 0.3) 0%, transparent 70%);
            position: absolute;
            bottom: -30px;
            left: -20px;
            transform: translateZ(-20px) rotateX(90deg);
            filter: blur(10px);
        }

        /* ==== SMARTPHONE 3D ==== */
        .smartphone-3d {
            position: absolute;
            perspective: 800px;
            animation: floatPhone 10s ease-in-out infinite;
        }

        .phone-frame {
            width: 70px;
            height: 130px;
            border-radius: 12px;
            padding: 4px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            transform: rotateY(var(--rotation)) rotateX(15deg);
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .phone-notch {
            width: 30%;
            height: 6px;
            background: rgba(255, 152, 0, 0.2);
            border-radius: 0 0 8px 8px;
            margin: 0 auto;
        }

        .phone-content {
            padding: 10px 8px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .phone-bar {
            height: 4px;
            background: linear-gradient(90deg, #ffcc80 0%, transparent 100%);
            border-radius: 2px;
            opacity: 0;
            animation: fadeInLine 0.5s ease-out var(--delay) forwards;
        }

        @keyframes floatPhone {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* ==== FENÊTRES DE CODE 3D ==== */
        .code-window-3d {
            position: absolute;
            width: 90px;
            perspective: 600px;
            animation: floatWindow 9s ease-in-out infinite;
            transform: scale(var(--scale, 1));
        }

        .window-header {
            padding: 6px;
            border-radius: 8px 8px 0 0;
            border: 2px solid rgba(255, 152, 0, 0.2);
        }

        .window-dots {
            display: flex;
            gap: 4px;
        }

        .window-dots span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
        }

        .window-body {
            background: rgba(255, 255, 255, 0.95);
            padding: 8px;
            border-radius: 0 0 8px 8px;
            border: 2px solid rgba(255, 152, 0, 0.2);
            border-top: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .window-line {
            height: 3px;
            background: linear-gradient(90deg, #ffcc80 0%, transparent 100%);
            border-radius: 2px;
            opacity: 0.6;
        }

        @keyframes floatWindow {
            0%, 100% { transform: translateY(0) rotateZ(var(--rotation)); }
            50% { transform: translateY(-18px) rotateZ(calc(var(--rotation) + 3deg)); }
        }

        /* ==== SYMBOLES DE CODE 3D ==== */
        .code-symbol-3d {
            position: absolute;
            width: var(--size);
            height: var(--size);
            perspective: 600px;
            animation: rotateSymbol 15s linear infinite;
        }

        .symbol-face {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            color: #e65100;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        @keyframes rotateSymbol {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

        /* ==== BADGES TECH 3D ==== */
        .tech-icon-3d {
            position: absolute;
            perspective: 500px;
            animation: floatTech 7s ease-in-out infinite;
        }

        .tech-badge {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: rotateY(var(--rotation));
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

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

        /* ==== PARTICULES ==== */
        .particle {
            position: absolute;
            width: var(--size);
            height: var(--size);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(233, 30, 99, 0.6) 0%, transparent 70%);
            animation: floatParticle 4s ease-in-out infinite var(--delay);
            box-shadow: 0 0 20px rgba(233, 30, 99, 0.4);
        }

        .particle-orange {
            background: radial-gradient(circle, rgba(255, 152, 0, 0.6) 0%, transparent 70%);
            box-shadow: 0 0 20px rgba(255, 152, 0, 0.4);
        }

        .particle-yellow {
            background: radial-gradient(circle, rgba(251, 192, 45, 0.6) 0%, transparent 70%);
            box-shadow: 0 0 20px rgba(251, 192, 45, 0.4);
        }

        .particle-blue {
            background: radial-gradient(circle, rgba(33, 150, 243, 0.6) 0%, transparent 70%);
            box-shadow: 0 0 20px rgba(33, 150, 243, 0.4);
        }

        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-40px) scale(1.3);
                opacity: 1;
            }
        }

        /* Positionnement des sections */
        #dev-web,
        #marketing {
            position: relative;
            overflow: hidden;
        }

/* ==================== DEV WEB PAGE CSS ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
            overflow-x: hidden;
            background: #ffffff;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.5px;
            text-decoration: none;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #1a1a1a;
        }

        .nav-contact {
            background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
            color: white !important;
            padding: 10px 24px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .nav-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
        }

        /* Hero Section */
        .hero-dev {
            padding: 160px 40px 100px;
            background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
            text-align: center;
        }

        .hero-dev h1 {
            font-size: 56px;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 24px;
            line-height: 1.2;
            letter-spacing: -1.5px;
        }

        .hero-dev h1 .highlight {
            font-weight: 700;
            background: linear-gradient(135deg, #ff9800 0%, #fb8c00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-dev p {
            font-size: 20px;
            color: #666;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Section */
        .section {
            padding: 100px 40px;
        }

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

        .mission-box {
            max-width: 1000px;
            margin: 0 auto 80px;
            background: white;
            padding: 48px;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .mission-box h2 {
            font-size: 32px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .mission-box p {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
        }

        .section-title {
            font-size: 42px;
            font-weight: 300;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .section-title .highlight {
            font-weight: 700;
            background: linear-gradient(135deg, #ff9800 0%, #fb8c00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 80px;
            line-height: 1.8;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .dev-card {
            background: white;
            padding: 48px 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.4s;
        }

        .dev-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .card-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .card-icon svg {
            width: 32px;
            height: 32px;
            stroke: #e65100;
            stroke-width: 2;
        }

        .dev-card h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .dev-card .card-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .dev-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .dev-card li {
            font-size: 15px;
            color: #666;
            padding-left: 24px;
            position: relative;
            line-height: 1.6;
        }

        .dev-card li::before {
            content: '•';
            position: absolute;
            left: 8px;
            color: #ff9800;
            font-weight: bold;
            font-size: 18px;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .benefit-card {
            background: linear-gradient(135deg, #fff8f0 0%, #ffe0b2 100%);
            padding: 40px 32px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 152, 0, 0.1);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            background: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            stroke: #ff9800;
            stroke-width: 2;
        }

        .benefit-card h4 {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .benefit-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Why Choose Section */
        .why-choose {
            background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
            padding: 100px 40px;
        }

        .checklist {
            max-width: 800px;
            margin: 60px auto 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .check-item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 18px;
            color: #666;
        }

        .check-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background: linear-gradient(135deg, #7c4dff 0%, #651fff 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .check-icon svg {
            width: 18px;
            height: 18px;
            stroke: white;
            stroke-width: 3;
        }

        /* Team Section */
        .team-section {
            background: white;
            padding: 100px 40px;
        }

        .team-card {
            max-width: 800px;
            margin: 60px auto 0;
            text-align: center;
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(255, 152, 0, 0.2);
        }

        .team-avatar svg {
            width: 60px;
            height: 60px;
            stroke: white;
            stroke-width: 2;
        }

        .team-card h3 {
            font-size: 32px;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .team-card h3 .highlight {
            font-weight: 700;
            background: linear-gradient(135deg, #ff9800 0%, #fb8c00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .team-card p {
            font-size: 17px;
            color: #666;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Footer */
        footer {
            padding: 80px 40px 40px;
            background: #fafafa;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .footer-section p {
            font-size: 15px;
            color: #666;
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-section a:hover {
            color: #e91e63;
        }

        .footer-desc {
            margin-top: 12px;
            max-width: 300px;
            line-height: 1.6;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            text-align: center;
        }

        .footer-bottom p {
            font-size: 14px;
            color: #999;
        }

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

            .hero-dev h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 32px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .mission-box {
                padding: 32px 24px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-section {
                text-align: center;
            }
            
            .footer-desc {
                margin-left: auto;
                margin-right: auto;
            }
        }

/* ==================== DESIGN PAGE CSS ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
            overflow-x: hidden;
            background: #ffffff;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.5px;
            text-decoration: none;
        }

        .nav-links {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            gap: 40px;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #1a1a1a;
        }

        .nav-contact {
            background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
            color: white !important;
            padding: 10px 24px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .nav-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
        }

        /* Hero Section */
        .hero-design {
            padding: 160px 40px 100px;
            background: linear-gradient(180deg, #fef5f8 0%, #ffffff 100%);
            text-align: center;
        }

        .hero-design h1 {
            font-size: 56px;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 24px;
            line-height: 1.2;
            letter-spacing: -1.5px;
        }

        .hero-design h1 .highlight {
            font-weight: 700;
            background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-design p {
            font-size: 20px;
            color: #666;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Section */
        .section {
            padding: 100px 40px;
        }

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

        .section-title {
            font-size: 42px;
            font-weight: 300;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .section-title .highlight {
            font-weight: 700;
            background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 80px;
            line-height: 1.8;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .design-card {
            background: white;
            padding: 48px 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.4s;
        }

        .design-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .card-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .card-icon svg {
            width: 32px;
            height: 32px;
            stroke: #c2185b;
            stroke-width: 2;
        }

        .design-card h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .design-card .card-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .design-card ul {
            list-style: none;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            flex-direction: column;
            gap: 12px;
        }

        .design-card li {
            font-size: 15px;
            color: #666;
            padding-left: 24px;
            position: relative;
            line-height: 1.6;
        }

        .design-card li::before {
            content: '•';
            position: absolute;
            left: 8px;
            color: #e91e63;
            font-weight: bold;
            font-size: 18px;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .benefit-card {
            background: linear-gradient(135deg, #fef5f8 0%, #fce4ec 100%);
            padding: 40px 32px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(233, 30, 99, 0.1);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            background: white;
            border-radius: 14px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            align-items: center;
            justify-content: center;
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            stroke: #e91e63;
            stroke-width: 2;
        }

        .benefit-card h4 {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .benefit-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Why Choose Section */
        .why-choose {
            background: linear-gradient(180deg, #fef5f8 0%, #ffffff 100%);
            padding: 100px 40px;
        }

        .checklist {
            max-width: 800px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            flex-direction: column;
            gap: 20px;
        }

        .check-item {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            align-items: center;
            gap: 16px;
            font-size: 18px;
            color: #666;
        }

        .check-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background: linear-gradient(135deg, #7c4dff 0%, #651fff 100%);
            border-radius: 8px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            align-items: center;
            justify-content: center;
        }

        .check-icon svg {
            width: 18px;
            height: 18px;
            stroke: white;
            stroke-width: 3;
        }

        /* Team Section */
        .team-section {
            background: white;
            padding: 100px 40px;
        }

        .team-card {
            max-width: 800px;
            margin: 60px auto 0;
            text-align: center;
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, #ff9472 0%, #f2709c 100%);
            border-radius: 50%;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(233, 30, 99, 0.2);
        }

        .team-avatar svg {
            width: 60px;
            height: 60px;
            stroke: white;
            stroke-width: 2;
        }

        .team-card h3 {
            font-size: 32px;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .team-card h3 .highlight {
            font-weight: 700;
            background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .team-card p {
            font-size: 17px;
            color: #666;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Footer */
        footer {
            padding: 80px 40px 40px;
            padding: 48px 40px;
            background: #fafafa;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .footer-text {
            color: #999;
            font-size: 14px;
        }

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

            .hero-design h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 32px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

/* ==================== MARKETING PAGE CSS ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
            overflow-x: hidden;
            background: #ffffff;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.5px;
            text-decoration: none;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #1a1a1a;
        }

        .nav-contact {
            background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
            color: white !important;
            padding: 10px 24px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .nav-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
        }

        /* Hero Section */
        .hero-marketing {
            padding: 160px 40px 100px;
            background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
            text-align: center;
        }

        .hero-marketing h1 {
            font-size: 56px;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 24px;
            line-height: 1.2;
            letter-spacing: -1.5px;
        }

        .hero-marketing h1 .highlight {
            font-weight: 700;
            background: linear-gradient(135deg, #f9a825 0%, #f57f17 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-marketing p {
            font-size: 20px;
            color: #666;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Section */
        .section {
            padding: 100px 40px;
        }

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

        .approach-box {
            max-width: 1100px;
            margin: 0 auto 80px;
            background: white;
            padding: 48px;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .approach-box h2 {
            font-size: 32px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .approach-box p {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
        }

        .section-title {
            font-size: 42px;
            font-weight: 300;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .section-title .highlight {
            font-weight: 700;
            background: linear-gradient(135deg, #f9a825 0%, #f57f17 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            max-width: 1100px;
            margin: 0 auto 80px;
            line-height: 1.8;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .marketing-card {
            background: white;
            padding: 48px 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.4s;
        }

        .marketing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .card-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, #fffde7 0%, #fff9c4 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .card-icon svg {
            width: 32px;
            height: 32px;
            stroke: #f57f17;
            stroke-width: 2;
        }

        .marketing-card h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .marketing-card .card-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .marketing-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .marketing-card li {
            font-size: 15px;
            color: #666;
            padding-left: 24px;
            position: relative;
            line-height: 1.6;
        }

        .marketing-card li::before {
            content: '•';
            position: absolute;
            left: 8px;
            color: #f9a825;
            font-weight: bold;
            font-size: 18px;
        }

        /* Benefits Section */
        .benefits-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 60px;
            margin-bottom: 40px;
        }

        .benefit-card {
            background: linear-gradient(135deg, #fffef5 0%, #fff9c4 100%);
            padding: 40px 32px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(249, 168, 37, 0.1);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            background: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            stroke: #f9a825;
            stroke-width: 2;
        }

        .benefit-card h4 {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .benefit-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        .benefits-bottom {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 24px;
        }

        .benefit-card-simple {
            background: white;
            padding: 32px;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            text-align: center;
        }

        .benefit-card-simple h4 {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .benefit-card-simple p {
            font-size: 15px;
            color: #666;
        }

        /* Why Choose Section */
        .why-choose {
            background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
            padding: 100px 40px;
        }

        .checklist {
            max-width: 800px;
            margin: 60px auto 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .check-item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 18px;
            color: #666;
        }

        .check-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background: linear-gradient(135deg, #7c4dff 0%, #651fff 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .check-icon svg {
            width: 18px;
            height: 18px;
            stroke: white;
            stroke-width: 3;
        }

        /* Footer */
        footer {
            padding: 48px 40px;
            background: #fafafa;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .footer-text {
            color: #999;
            font-size: 14px;
        }

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

            .hero-marketing h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 32px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .benefits-top,
            .benefits-bottom {
                grid-template-columns: 1fr;
            }

            .approach-box {
                padding: 32px 24px;
            }

            .footer-content {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
