        :root {
            --bg-dark: #0a0a0a;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --accent-pink: #ff8da1; /* Original Bella Tech Pink */
            --glass-bg: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Ambient Background Glows */
        .glow {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 141, 161, 0.07) 0%, transparent 70%);
            z-index: -1;
            filter: blur(60px);
        }

        /* Navigation */
        header {
            padding: 1.5rem 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(15px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border);
            background: rgba(10, 10, 10, 0.8);
        }

		.logo-text {
			font-size: 1.4rem;
			font-weight: 800;
			letter-spacing: -1px;
			text-transform: uppercase;
			
			/* CRITICAL FIXES FOR ALIGNMENT: */
			line-height: 1;      /* Removes the "ghost" space around text */
			margin-top: 2px;     /* Manual fine-tuning: adjust this 1px or 2px up/down until it looks perfect to your eye */
			display: flex;
			align-items: center;
		}

        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            margin-left: 2rem;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .nav-links a:hover { color: var(--accent-pink); }

        /* Hero Section */
        .hero {
            padding: 140px 10%;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            line-height: 0.9;
            margin-bottom: 1.5rem;
            background: linear-gradient(180deg, #fff 0%, #666 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            color: var(--text-muted);
            letter-spacing: 4px;
            text-transform: uppercase;
            font-size: 0.8rem;
            margin-bottom: 2.5rem;
        }

        /* Promo Ticker */
        .promo-ticker {
            background: var(--accent-pink);
            color: #000;
            padding: 12px 0;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-content {
            display: inline-block;
            animation: ticker 30s linear infinite;
        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Services Cards */
        .container { padding: 100px 10%; }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--glass-bg);
            border: 1px solid var(--border);
            border-radius: 35px;
            padding: 3rem;
            position: relative;
            transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 141, 161, 0.4);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-pink);
            color: #000;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.6rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .tier-label {
            color: var(--accent-pink);
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .price {
            font-size: 2rem;
            font-weight: 800;
            margin: 20px 0;
        }

        /* Portfolio */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 50px;
        }

        .portfolio-item {
            border-radius: 20px;
            overflow: hidden;
            background: var(--glass-bg);
            border: 1px solid var(--border);
            text-decoration: none;
            transition: 0.3s;
        }

        .portfolio-item:hover { border-color: var(--accent-pink); }
		
		.portfolio-item p {
			color: #ffffff; /* Changed from pink to white */
			font-weight: 700;
			font-size: 0.7rem;
			letter-spacing: 2px;
			text-transform: uppercase;
			opacity: 0.8; /* Slightly muted until hover */
			transition: 0.3s;
		}

		.portfolio-item:hover p {
			opacity: 1; /* Brightens to pure white on hover */
		}

        .portfolio-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            opacity: 0.7;
            transition: 0.5s;
        }

        .portfolio-item:hover .portfolio-img { opacity: 1; transform: scale(1.05); }
		

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 2px;
            transition: 0.3s;
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-pink {
            background: var(--accent-pink);
            color: #000;
        }

        .btn-pink:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(255, 141, 161, 0.4);
        }

        /* Form */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        input, textarea {
            width: 100%;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border);
            padding: 1.2rem;
            border-radius: 15px;
            color: #fff;
            margin-bottom: 1rem;
            outline: none;
        }

        input:focus, textarea:focus { border-color: var(--accent-pink); }

        /* Mobile Adjustments */
        @media (max-width: 900px) {
            .contact-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero h1 { font-size: 3.5rem; }
            .nav-links { display: none; }
        }

        /* Confetti */
        .ribbon-confetti {
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            animation: flyUp 3s forwards ease-out;
        }
        @keyframes flyUp {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 1; }
            100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
        }
		.hero-tagline {
			color: var(--accent-pink);
			font-size: 0.75rem;
			font-weight: 800;
			text-transform: uppercase;
			letter-spacing: 4px;
			margin-bottom: 1.2rem;
			display: inline-block;
			/* Optional: adds a very faint glow to match the SaaS look */
			text-shadow: 0 0 15px rgba(255, 141, 161, 0.3);
		}
		.header-logo-img {
			height: 50px; /* Adjust size here */
			width: auto;
			display: block; /* Removes the tiny gap below images */
			transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
			filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
		}
		.logo-wrapper {
			display: flex;
			align-items: center; /* Vertically centers the logo and text */
			gap: 15px;
			cursor: pointer;
			/* Ensure the wrapper itself doesn't have weird heights */
			height: 100%; 
			display: inline-flex;
		}

		.logo-wrapper:hover .header-logo-img {
			transform: rotate(-12deg) scale(1.1);
		}
		
/* Footer Riibon */
		.footer-ribbon-btn {
			background: transparent;
			border: none;
			cursor: pointer;
			transition: all 0.4s ease;
			opacity: 0.3; 
			display: inline-block;
			filter: grayscale(1); 
		}

		.footer-ribbon-btn:hover {
			opacity: 1;
			filter: grayscale(0);
			transform: scale(1.1);
		}

		.footer-ribbon-icon {
			font-size: 1.1rem;
			color: var(--accent-pink);
			display: block;
		}
/* END  OF Footer Riibon */
		
		.social-icon-link {
			color: var(--accent-pink); /* Makes them your brand pink */
			font-size: 1.5rem; /* Adjust size */
			text-decoration: none;
			transition: all 0.3s ease;
			display: inline-block;
		}

		.social-icon-link:hover {
			transform: translateY(-5px) rotate(-8deg); /* Modern SaaS tilt */
			color: #ffffff; /* Turns white on hover */
			filter: drop-shadow(0 0 10px rgba(255, 141, 161, 0.6)); /* Pink glow effect */
		}
		
/* START OF BANNER CSS */
		.aesthetic-banner {
			padding: 60px 10%;
			position: relative;
			overflow: hidden;
		}

		.promo-container {
			background: rgba(255, 255, 255, 0.03);
			backdrop-filter: blur(25px);
			border: 1px solid rgba(255, 255, 255, 0.1);
			border-radius: 40px;
			padding: 40px 60px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			position: relative;
			z-index: 2;
			box-shadow: 0 20px 50px rgba(0,0,0,0.3);
		}

		/* The "Glow" behind the banner */
		.banner-aura {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 80%;
			height: 120%;
			background: radial-gradient(circle, rgba(255, 141, 161, 0.1) 0%, transparent 70%);
			filter: blur(40px);
			z-index: 1;
		}

		.promo-content h2 {
			font-size: 1.8rem;
			font-weight: 900;
			margin-bottom: 5px;
			letter-spacing: -1px;
		}

		.promo-content p {
			color: var(--text-muted);
			font-size: 0.85rem;
			text-transform: uppercase;
			letter-spacing: 3px;
		}

		.promo-badge {
			background: var(--accent-pink);
			color: #000;
			padding: 6px 16px;
			border-radius: 50px;
			font-size: 0.7rem;
			font-weight: 900;
			text-transform: uppercase;
			margin-bottom: 15px;
			display: inline-block;
		}

		/* Mobile Responsiveness for Banner */
		@media (max-width: 800px) {
			.promo-container {
				flex-direction: column;
				text-align: center;
				padding: 40px 30px;
				gap: 30px;
			}
		}
/* END OF BANNER CSS */