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

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: var(--white);
        }

        /* Editable content styling */
        .editable {
            position: relative;
            border: 2px dashed transparent;
            transition: all 0.3s ease;
        }

        .editable:hover {
            border-color: var(--bodhiot-orange);
            background: var(--accent-glow-2);
        }

        .editable::before {
            /*content: "✏️ Click to edit"; */
            position: absolute;
            top: -25px;
            left: 0;
            background: var(--bodhiot-orange);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 100;
        }

        .editable:hover::before {
            opacity: 1;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--nilai-green), var(--bodhiot-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--nilai-green);
            transition: width 0.3s ease;
        }

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

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, var(--accent-glow-1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, var(--accent-glow-2) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--nilai-green), var(--bodhiot-orange));
            color: white;
            box-shadow: 0 10px 30px var(--accent-glow-1);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px var(--accent-glow-1);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--dark);
        }

        /* Brand Section */
        .brands-section {
            padding: 6rem 2rem;
            background: var(--light-gray);
        }

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

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .brand-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--nilai-blue), var(--nilai-green));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .brand-card.bodhiot::before {
            background: linear-gradient(90deg, var(--bodhiot-blue), var(--bodhiot-orange));
        }

        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

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

        .brand-logo {
            width: 200px;
            height: auto;
            margin-bottom: 2rem;
        }

        .brand-tagline {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .brand-description {
            font-size: 1.05rem;
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .brand-features {
            list-style: none;
            margin: 1.5rem 0;
        }

        .brand-features li {
            padding: 0.7rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--gray);
        }

        .brand-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--nilai-green);
            font-weight: bold;
            font-size: 1.3rem;
        }

        .brand-card.bodhiot .brand-features li::before {
            color: var(--bodhiot-orange);
        }

        /* Services Section */
        .services-section {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            padding: 2.5rem;
            border-radius: 15px;
            background: var(--light-gray);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            background: var(--white);
            border-color: var(--nilai-blue);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .service-description {
            color: var(--gray);
            line-height: 1.7;
        }

        /* DSLM Spotlight Section */
        .dslm-spotlight {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .dslm-spotlight::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--accent-glow-1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .dslm-spotlight::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--accent-glow-2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .dslm-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }

        .dslm-badge {
            display: inline-block;
            background: var(--accent-glow-1);
            border: 2px solid var(--nilai-green);
            color: var(--nilai-green);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 2rem;
        }

        .dslm-spotlight .section-title {
            color: white;
            margin-bottom: 2rem;
        }

        .dslm-intro {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 4rem;
            opacity: 0.95;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .dslm-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            text-align: center;
        }

        .benefit-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            border-color: var(--nilai-green);
        }

        .benefit-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--nilai-green);
        }

        .benefit-card p {
            opacity: 0.9;
            line-height: 1.7;
        }

        .dslm-cta {
            text-align: center;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 2px solid var(--accent-glow-1);
        }

        .dslm-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        /* Industries Section */
        .industries-section {
			padding: 6rem 2rem;
			background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
			color: white;
		}

		.industries-section .section-title {
			color: white;
		}

		.industries-section .section-subtitle {
			color: rgba(255, 255, 255, 0.8);
		}

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .industry-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .industry-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .industry-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .industry-name {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .industry-description {
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Technology Section */
        .technology-section {
            padding: 6rem 2rem;
            background: var(--light-gray);
        }

        .tech-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 4rem;
        }

        .tech-image {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .tech-points {
            list-style: none;
        }

        .tech-points li {
            padding: 1.5rem;
            margin-bottom: 1rem;
            background: var(--white);
            border-radius: 10px;
            border-left: 4px solid var(--nilai-green);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            font-size: 1.05rem;
        }

        .tech-points li strong {
            color: var(--nilai-blue);
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        /* Case Studies Section */

        /* About Section */
        .about-section {
            padding: 6rem 2rem;
            background: var(--light-gray);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--gray);
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .stat-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--nilai-blue);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            color: var(--gray);
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
            text-align: center;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-section .section-title,
        .contact-section .section-subtitle {
            color: white;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            margin-top: 3rem;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            background: rgba(255,255,255,0.9);
            font-size: 1rem;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--nilai-green);
            background: var(--white);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--nilai-green);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

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

            .tech-content,
            .about-content {
                grid-template-columns: 1fr;
            }

            .nav-links {
                gap: 1.5rem;
            }
        }

        /* ── Mobile nav: must match JS breakpoint of 768px ── */
        @media (max-width: 768px) {
            nav {
                flex-direction: row;
                flex-wrap: nowrap;
                justify-content: space-between;
                align-items: center;
                padding: 0.8rem 1rem;
                position: relative;
            }

            .logo {
                font-size: 1.1rem !important;
                white-space: nowrap;
            }

            .logo img {
                height: 32px !important;
                margin-right: 6px !important;
            }

            /* Hide nav links — JS toggles mobile-open to show */
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--dark);
                padding: 1rem;
                gap: 0.5rem;
                box-shadow: 0 8px 20px rgba(0,0,0,0.15);
                z-index: 999;
            }

            .nav-links.mobile-open {
                display: flex;
            }

            .nav-links a {
                color: white !important;
                padding: 0.6rem 1rem;
                border-radius: 6px;
            }

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

        @media (max-width: 640px) {
            .hero {
                padding: 4rem 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            /* Font sizes */
            .section-title {
                font-size: 1.8rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            /* Contact form padding */
            .contact-form {
                padding: 1.5rem;
            }

            /* DSLM CTA padding */
            .dslm-cta {
                padding: 1.5rem;
            }

            /* Stat numbers */
            .stat-number {
                font-size: 2rem;
            }

            /* Section padding reduction */
            .brands-section,
            .services-section,
            .dslm-spotlight,
            .industries-section,
            .technology-section,
            .about-section,
            .contact-section {
                padding: 3rem 1.2rem;
            }

            /* Brand card padding */
            .brand-card {
                padding: 1.5rem;
            }
        }

        /* Admin Notice */
        .admin-notice {
            background: linear-gradient(135deg, var(--bodhiot-orange), #FF6B6B);
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
            position: relative;
        }

        .admin-notice::before {
            content: '⚠️';
            margin-right: 0.5rem;
        }


/* Section Separators for Better Visual Definition */
.brands-section,
.services-section,
.technology-section,
.about-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Enhance white sections with subtle shadow */
.services-section {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
