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

        body {
            font-family: 'Inter', sans-serif;
            background-color: #06110d;
            color: #eef5ef;
            line-height: 1.5;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #0b1712;
        }

        ::-webkit-scrollbar-thumb {
            background: #6f8d7c;
            border-radius: 8px;
        }

        .rouge {
            font-family: 'Rouge Script', cursive;
            font-weight: normal;
            color: #cfdfd3;
            font-size: 2rem;
            line-height: 1;
            display: inline-block;
        }

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

        section {
            padding: 5rem 0;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.75rem;
            color: #9bc0a6;
            margin-bottom: 1rem;
        }

        .section-label::before {
            content: "";
            width: 36px;
            height: 1px;
            background: #7aa086;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-desc {
            color: #cbdcd0;
            max-width: 600px;
            margin-bottom: 2rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            border-radius: 999px;
            font-weight: 600;
            transition: 0.2s ease;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-primary {
            background: #e1ede3;
            color: #07120c;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
        }

        .btn-primary:hover {
            background: #f2f9f4;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(122, 160, 134, 0.5);
            color: #eef5ef;
        }

        .btn-secondary:hover {
            border-color: #9bc0a6;
            background: rgba(122, 160, 134, 0.15);
            transform: translateY(-2px);
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(6, 17, 13, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(122, 160, 134, 0.2);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 76px;
        }

        .logo-area img {
            height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

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

        .nav-links a:hover {
            color: white;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(122, 160, 134, 0.4);
            border-radius: 12px;
            padding: 0.6rem 0.9rem;
            color: white;
            font-size: 1.3rem;
            cursor: pointer;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 280px;
            height: 100vh;
            background: rgba(6, 17, 13, 0.98);
            backdrop-filter: blur(20px);
            transform: translateX(-100%);
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            z-index: 1000;
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            border-right: 1px solid rgba(122, 160, 134, 0.3);
            box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu a {
            padding: 0.8rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
            text-align: center;
            color: #eef5ef;
            text-decoration: none;
            font-weight: 500;
        }

        .menu-close-btn {
            align-self: flex-end;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            margin-bottom: 1rem;
        }

        .menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }

        .menu-overlay.active {
            display: block;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .portfolio-card {
            background: rgba(14, 26, 20, 0.85);
            backdrop-filter: blur(4px);
            border-radius: 28px;
            border: 1px solid rgba(122, 160, 134, 0.3);
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            border-color: #9bc0a6;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
        }

        .portfolio-img {
            width: 100%;
            height: fit-content;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-card:hover .portfolio-img {
            transform: scale(1.03);
        }

        .portfolio-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .portfolio-category {
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #9bc0a6;
            margin-bottom: 0.5rem;
        }

        .portfolio-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .portfolio-desc {
            color: #cbdcd0;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .portfolio-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0.75rem 0 1.25rem;
        }

        .portfolio-tags span {
            background: rgba(122, 160, 134, 0.2);
            border-radius: 40px;
            padding: 0.25rem 0.8rem;
            font-size: 0.7rem;
            font-weight: 500;
        }

        .portfolio-link {
            margin-top: auto;
            align-self: flex-start;
        }

        /* CTA section */
        .cta-bg {
            background: url('https://images.unsplash.com/photo-1522252234503-e356532cafd5?q=80&w=2025&auto=format') center/cover no-repeat;
            position: relative;
            border-radius: 32px;
        }

        .cta-bg::before {
            content: "";
            position: absolute;
            inset: 0;
            background: #07120cee;
            border-radius: 32px;
        }

        .cta-panel {
            position: relative;
            z-index: 2;
            padding: 3rem 2rem;
            text-align: center;
        }

        footer {
            text-align: center;
            padding: 2rem;
            color: #9bb5a8;
            font-size: 0.8rem;
            border-top: 1px solid rgba(122, 160, 134, 0.2);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #25D366;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            z-index: 99;
            text-decoration: none;
            color: white;
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            section {
                padding: 3rem 0;
            }
        }

        @media (max-width: 550px) {
            .container {
                padding: 0 18px;
            }

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